@charset "UTF-8";
/* V-Web 공통 애니메이션 라이브러리(vweb-anim.css)는 head 에서 style.css 앞에 <link> 로 병렬 로드 (@import 워터폴 제거) */
:root {
  /* === rem 단위 기반 (1rem = 10 design px @ canvas 1905) === */
  --canvas: 1905;
  /* 레거시 호환 브리지: calc(var(--px) * N) === (N/10)rem.
     0.1rem = (1000/1905 vw)*0.1 = W/1905 px → footer.js의 winW/1905 와 동일.
     기존 calc(var(--px)*N) 코드는 한 줄도 안 고치고 그대로 rem 기반으로 동작한다. */
  --px: 0.1rem;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: unset;
}

p {
  word-break: break-all;
  overflow-wrap: break-word;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

section {
  overflow: hidden;
  width: 100%;
}

/* section 전역 flex 제거(block 복귀) → 정렬을 각 섹션 클래스로 명시 이관 (기존 렌더 보존) */
.main,
.mv,
.con01,
.con02,
.con03,
.con04,
.con05,
.con06,
.con07,
.con08,
.con1011,
.con12 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.pc-mobile {
  display: flex;
}

.mobile-pc {
  display: none;
}

.pc {
  display: flex;
}

.pc-inline {
  display: inline;
}

.tablet {
  display: none;
}

.mobile {
  display: none;
}

.flowhid {
  overflow: hidden;
}

.hide {
  display: none !important;
}

.hideopa {
  opacity: 0 !important;
}

.show {
  opacity: 1 !important;
}

.absol {
  position: absolute;
}

.rltv {
  position: relative;
}

.flexrow {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}

.flexcol {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}


.smoke {
  animation: smoke 8s infinite linear;
}


.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 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%;
  object-fit: cover;
}

.swiper-button-lock {
  display: none !important;
}

.swiper {
  margin: 0;
  z-index: 0;
}

b {
  font-weight: 700;
}

.obj > img {
  height: 100%;
  object-fit: cover;
}

/* 마커디자인 */
.map_marker {
  position: relative;
  display: inline-block;
}

/* 말풍선 텍스트 박스 */
.map_marker_text {
  background: #000;
  border: 1px solid #fff;
  padding: 9px 19px;
  border-radius: 100px;
  font-size: var(--bodyXS);
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

/* 말풍선 꼬리 (삼각형 테두리) */
.map_marker_tail {
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #fff;
}

/* 말풍선 꼬리 내부 (흰색 채우기) */
.map_marker_tail::after {
  content: "";
  position: absolute;
  top: -9px;
  left: -7px;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 7px solid #000;
}

/* 퍼블시작 */

/* ===== MAIN (MV) ===== */
.mv {
    height: 107.5rem;
    background: url('/images/main_13.webp') center / cover no-repeat #000;
    overflow: hidden;
}

/* 좌/우 라인+뱃지 그룹 (absol 1개 + 내부 flex) */
.mv__badge-group {
    top: 31.5rem;
    gap: 6rem;
    z-index: 2;
}
.mv__badge-group--left {
    left: 0;
}
.mv__badge-group--right {
    right: 0;
}

.mv__deco img { width: 29.7rem; }
.mv__badge-group--right .mv__deco img { transform: scaleX(-1); }

.mv__badge-item img { width: 8.7rem; }
.mv__badge-item:nth-child(2) {
  margin-top: -1rem;
}

/* 중앙 카피 */
.mv__inner {
  top: 24.7rem;
  left: 0;
  width: 100%;
  z-index: 3;
}
.mv__eyebrow {
  font-family: 'Isamanru', sans-serif;
  font-weight: 300;
  font-size: var(--headL);
  color: #efece0;
  letter-spacing: -0.025em;
  margin-bottom: 1.2rem;
}
.mv__title {
  font-family: 'Isamanru', sans-serif;
  font-weight: 700;
  font-size: var(--size-85);
  line-height: 1.06;
  letter-spacing: -0.025em;

  & .mv__title--white { color: #efece0; }
  & .mv__title--red { color: #d8251d; }
}
.mv__desc {
  font-size: var(--subheadM);
  color: #efece0;
  letter-spacing: -0.06em;
  margin-top: 3rem;
}

/* 빨간 슬라이드 박스 */
.mv__slide {
  left: 35.9rem;
  top: 76.7rem;
  width: 120.3rem;
  height: 31.6rem;
  background: #e72119 url('/images/main_11.webp') center / cover no-repeat;
  border-radius: 3rem;
  z-index: 4;
}
/* 그릇이 박스 위로 넘치도록 overflow 해제 */
.mv__swiper {
  overflow: visible;

  & .swiper-slide { position: relative; overflow: visible; }
}
.mv__bowl {
  left: 23.8rem;
  top: -18.5rem;
  width: 75.2rem;
}
.mv__menu {
  right: 6rem;
  top: 1rem;
  height: 13rem;
  width: auto;

  & img { display: block; width: auto; height: 100%; object-fit: contain; }
}
.mv__smoke {
  left: 16rem;
  top: -42.7rem;
  width: 87.9rem;
  z-index: 5;
  opacity: 0.85;
}
.mv__arrow {
  top: 13.2rem; /* (박스 31.6 - 5.2) / 2 */
  width: 5rem;
  height: 5.2rem;
  background-color: #000;
  border-radius: 1rem;
  z-index: 6;

  & img { width: 2.2rem; }
}
.mv__arrow--prev {
  left: 1.5rem;
  & img { transform: scaleX(-1); }
}
.mv__arrow--next { right: 1.5rem; }
@media (hover: hover) {
  .mv__arrow:hover { filter: brightness(1.4); }
}

/* 플로팅 퀵메뉴 (둘 다 빨강 원 + 흰 테두리) */
.floating {
  right: 5.9rem;
  bottom: 6rem;
  z-index: 1000;
  gap: 1.2rem;
}
.floating__btn {
  width: 11.2rem;
  height: 11.2rem;
  border-radius: 50%;
  font-family: 'Isamanru', sans-serif;
  font-weight: 700;
  font-size: var(--subheadM);
  line-height: 1.04;
  letter-spacing: -0.06em;
  color: #fff;
  background-color: #cf231c;
  outline: 3px solid #fff;
  transition: transform 0.3s;
  outline-offset: -6px;
}
@media (hover: hover) {
  .floating__btn:hover { transform: translateY(-0.5rem); }
}
.floating__btn--top {
  background-color: transparent;
  outline: none;
  width: auto;
  height: auto;
}
.floating__btn--top img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}


/* ==================== CON01: 브랜드 경쟁력 요약 ==================== */
.con01 {
  position: relative;
  width: 100%;
  height: 104.0rem;
  overflow: hidden;
  background-color: #ffffff;
}

.con01__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.con01__bg-glow {
  position: absolute;
  top: -42.4rem;
  left: -0.3rem;
  width: 192.2rem;
  height: 192.2rem;
  opacity: 1;
  z-index: 2;
}

.con01__bg-glow img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.con01__bg-texture {
  position: absolute;
  top: 0;
  left: -0.1rem;
  width: 192.2rem;
  height: 104.0rem;
  z-index: 1;
}

.con01__bg-texture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.con01__container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
}

.con01__title-wrap {
  margin-top: 11.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.con01__brand-logo {
  width: 18.8rem;
  height: 5.3rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.con01__brand-logo img {
  width: 100%;
  height: auto;
}

.con01__main-title {
  margin-top: 4.2rem;
  font-size: var(--titleXL);
  font-family: "Isamanru", sans-serif;
  font-weight: 700;
  color: #000000;
  letter-spacing: -0.025em;
  line-height: 1.12;
}

.con01__highlight {
  color: #e72119;
}

.con01__sub-title {
  margin-top: 2.9rem;
  font-size: var(--headS);
  font-family: "Pretendard", sans-serif;
  font-weight: 500;
  color: #000000;
  letter-spacing: -0.06em;
  line-height: 1.32;
}

.con01__list {
  margin-top: 3.1rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 5.3rem;
}

.con01__card {
  position: relative;
  width: 44.6rem;
  height: 39.0rem;
  background-color: #ffffff;
  border-radius: 3.0rem;
  box-sizing: border-box;
  padding-top: 6.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 2.7rem 2.7rem rgba(162, 160, 151, 0.15);
  outline: 3px solid #ffffff;
  outline-offset: -8px;
  transition: outline-color .3s ease;
}

.con01__card.active {
  outline-color: #e71619;
}

.con01__card--1 {
  margin-top: 7.5rem;
}

.con01__card--2 {
  margin-top: 0rem;
}

.con01__card--3 {
  margin-top: 8.9rem;
}

.con01__card-icon-wrap {
  width: 12.7rem;
  height: 12.6rem;
  border-radius: 50%;
  background-color: #151515;
  display: flex;
  justify-content: center;
  align-items: center;
}

.con01__card--1 .con01__card-icon-wrap {
  background-color: #e72119;
}

.con01__card-icon-wrap img {
  width: auto;
  max-width: 100%;
  height: auto;
}

.con01__card-title {
  margin-top: 3.6rem;
  font-size: var(--headM);
  font-family: "Paperlogy", sans-serif;
  font-weight: 800;
  color: #000000;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.con01__card-desc {
  margin-top: 2.4rem;
  font-size: var(--bodyL);
  font-family: "Pretendard", sans-serif;
  font-weight: 500;
  color: #000000;
  letter-spacing: -0.06em;
  line-height: 1.5;
}

.con01__deco-text {
  position: absolute;
  top: 78.5rem;
  width: 104.3rem;
  height: 15.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: -1;
  pointer-events: none;
}

.con01__deco-text img {
  width: 100%;
  height: auto;
}

.con01__divider-line {
  position: absolute;
  top: 54.0rem;
  left: 50%;
  transform: translateX(-50%);
  width: 143.8rem;
  height: 1px;
  background-color: #191919;
  opacity: 0.1;
  pointer-events: none;
}


/* ==================== CON02: 단순히 가맹점 수를 늘리는 브랜드가 아닙니다 ==================== */
.main > .con02 {
  position: relative;
  width: 100%;
  height: 88.4rem;
  overflow: visible;
  background: #000000 url(/images/con02_04.webp) center / cover no-repeat;
}

/* ===== 우측 비주얼 (그릇 기준 + 연기 겹침, 상단/우측 bleed) ===== */
/* 구조: .con02__visual(absol, 그릇 좌표) > .con02__dish(static 기준) + .con02__smoke(absol 겹침) */
.con02__visual {
  top: -12rem;
  right: 0;
  width: 93.5rem;
  pointer-events: none;
}

.con02__dish img {
  width: 100%;
  height: auto;
  display: block;
}

.con02__smoke {
  /* top: 3.0rem; */
  /* left: -22.3rem; */
  /* width: 87.9rem; */
}

.con02__smoke img {
  width: 100%;
  height: auto;
}

/* ===== 좌측 카피 (흐름 column) ===== */
.con02__text {
  top: 20.0rem;
  left: 24.2rem;
  align-items: flex-start;
  text-align: left;
  z-index: 3;
}

.con02__eyebrow {
  width: 12.0rem;
}

.con02__eyebrow img {
  width: 100%;
  height: auto;
}

.con02__title {
  margin-top: 2.6rem;
  font-size: var(--titleXL);
  font-family: "Isamanru", sans-serif;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.con02__title--red {
  color: #e71619;
}

.con02__desc {
  margin-top: 1.6rem;
  font-size: var(--bodyXL);
  font-family: "Pretendard Variable", sans-serif;
  font-weight: 200;
  color: #ffffff;
  letter-spacing: -0.06em;
  line-height: 1.571;
}

.con02__desc:first-of-type {
  margin-top: 4.3rem;
}

/* ===== 하단 빨강 띠 (full-bleed) ===== */
.con02__bar {
  background: #fff;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 5.1rem;
}

.con02__bar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}



/* ===== CON01-CON02 사이 캐릭터 (경계 중앙) ===== */
.character__wrap {
  position: relative;
  z-index: 10;
  height: 0;
  overflow: visible;

  & .con01_07 {
    /* width: 46.8rem; */
    transform: translateY(-12rem);
  }
}


/* CON03: 억대 매출의 기회 (플립 카운터 + 매출카드 롤링) */
.con03 {
  position: relative;
  height: 98rem;
  background-color: #fff;
  overflow: hidden;
  justify-content: flex-start;
}

/* 헤드 */
.con03__head {
  margin-top: 10.1rem;
}
.con03__eyebrow {
  font-family: 'Isamanru', sans-serif;
  font-weight: 300;
  font-size: var(--headL);
  color: #000;
  letter-spacing: -0.025em;
}
.con03__title {
  font-family: 'Isamanru', sans-serif;
  font-weight: 700;
  font-size: var(--titleL);
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-top: 0.5rem;

  & .c-red { color: #e72119; }
}
.con03__desc {
  font-size: var(--headS);
  font-weight: 500;
  color: #000;
  letter-spacing: -0.04em;
  margin-top: 1.5rem;
}

/* 빨간 보드 */
.con03__board {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  width: 120.4rem;
  height: 30.2rem;
  margin-top: 2.8rem;
  background: #e71619 url('/images/con03_01.webp') center / cover no-repeat;
  border-radius: 4rem;
}
.con03__board-label {
  font-family: 'Isamanru', sans-serif;
  font-weight: 500;
  font-size: var(--headS);
  color: #fff;
  letter-spacing: -0.02em;
}

/* 플립(카운트업) 숫자 */
.con03__counter {
  align-items: flex-end;
  gap: 0.8rem;
}
.con03__digit {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 8.3rem;
  height: 11.4rem;
  background-color: #111;
  border-radius: 1rem;
  font-family: 'Anton', sans-serif;
  font-size: 7.8rem;
  color: #fff;
  line-height: 1;
}
.con03__comma {
  font-family: 'Anton', sans-serif;
  font-size: 7.8rem;
  color: #1a0606;
  line-height: 1;
  padding: 0 0.2rem;
}
.con03__won {
  font-family: 'Isamanru', sans-serif;
  font-weight: 700;
  font-size: var(--titleXL);
  color: #1a0606;
  margin-left: 0.8rem;
  line-height: 1.4;
}

/* 하단 매출 카드 슬라이드 */
.con03__slide {
  width: 100%;
  margin-top: 3.9rem;
}
.con03__swiper {
  width: 100%;
}
.con03__card {
  width: 38.3rem;
  height: 24.9rem;

  & img { width: 100%; height: 100%; object-fit: contain; }
}

/* CON04: 매출은 결국 회전율에서 결정됩니다 (마라탕 그릇 + 수치 카운트업) */
.con04 {
  position: relative;
  width: 100%;
  height: 95.5rem;
  background-color: #050505;
  overflow: hidden;
}

/* 검은 박스 무대 + 불 영상 (섹션 풀) */
.con04__bg {
  inset: 0;
  overflow: hidden;
}
.con04__bg-video {
  object-fit: cover;
  opacity: 0.302;
  mix-blend-mode: difference; /* PSD: 불 영상 30% + difference */
}

/* 상단 타이틀군 */
.con04__head {
  top: 16.8rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}
.con04__eyebrow {
  font-family: 'Isamanru', sans-serif;
  font-weight: 300;
  font-size: var(--headL);
  color: #fff;
  letter-spacing: -0.025em;
}
.con04__title {
  font-family: 'Isamanru', sans-serif;
  font-weight: 700;
  font-size: var(--titleXL);
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: #fff;
  margin-top: 0.6rem;

  & .con04__accent { color: #f7f1c1; }
}
.con04__desc {
  font-family: 'Pretendard', sans-serif;
  font-weight: 500;
  font-size: var(--headS);
  line-height: 1.5;
  letter-spacing: -0.06em;
  color: #fff;
  margin-top: 1.2rem;
}

/* 중앙 마라탕 그릇 (img 크기는 script.js 자동) */
.con04__dish {
  left: 52.5rem;
  top: 41.2rem;
}

/* 좌우 원형 배지 — 좌우 그룹 flex.justify-sb (컨테이너 폭으로 좌우 col 위치 역산)
   좌측 col left=49.3rem, 우측 col right edge=142.8rem → width 93.5rem, justify-sb 가 우측 col을 133.8rem 에 정렬 */
.con04__badges {
  top: 62.9rem;
  left: 49.3rem;
  width: 93.5rem;
}
.con04__badge { width: 9rem; }
.con04__badge-col--left { margin-top: 0.9rem; } /* 우측 col(62.9) 대비 좌측 col top 63.8 */
.con04__badge--2 { margin-top: -1.2rem; }       /* 그룹 내 세로 겹침 (badge 9rem, 간격 7.8rem) */
.con04__badge--4 { margin-top: -1.1rem; }       /* 간격 7.9rem */

/* 그릇 주변 가격 텍스트 (데코) */
.con04__prices { inset: 0; }
.con04__price {
  position: absolute;
  font-family: 'Anton', sans-serif;
  font-size: var(--titleL);
  line-height: 1;
  color: #e72119;
  white-space: nowrap;
}
.con04__price--1 { left: 24.9rem; top: 33.7rem; }
.con04__price--2 { left: 44.5rem; top: 39.2rem; }
.con04__price--3 { left: 130.2rem; top: 35.5rem; }
.con04__price--4 { left: 152.1rem; top: 36.7rem; }

/* 하단 좌/우 수치 */
.con04__stat--left { left: 22.1rem; top: 66.6rem; }
.con04__stat--right { left: 150.2rem; top: 66.6rem; }
.con04__stat--left .con04__stat-num { margin-left: 6rem; }
.con04__stat-label {
  font-family: 'SfHambakneun', sans-serif;
  font-size: var(--headL);
  color: #fff;
  letter-spacing: -0.025em;
}
.con04__stat-num {
  gap: 0.4rem;
  margin-top: 0.4rem;
  font-family: 'Isamanru', sans-serif;
  font-weight: 700;
  font-size: 6.5rem;
  line-height: 1;
  color: #f7f1c1;

  & .con04__count {
    font-family: 'Anton', sans-serif;
    font-weight: 400;
    font-size: 10.2rem;
    line-height: 0.88;
  }
}
.con04__stat-note {
  font-family: 'Pretendard', sans-serif;
  font-weight: 300;
  font-size: var(--bodyL);
  color: #fff;
  letter-spacing: -0.025em;
  margin-top: 1.2rem;
}

/* ===== CON05 — 처음이어도, 어렵지 않습니다! (조리 4단계) ===== */
.con05 {
  width: 100%;
  height: 98.9rem; /* 빨간 배경 실측(989px). 캐릭터·볶음밥은 하단 overflow로 잘림(시안 동일) */
  background: #e72119 url(/images/con05_08.webp) center / cover no-repeat;
  overflow: hidden;

  & .con05__head {
    margin-top: 12.5rem;
  }

  & .con05__title {
    font-size: var(--titleXL);
    line-height: 1.121;
    letter-spacing: -0.025em;
    color: #fff;
  }

  & .con05__title--cream {
    color: #f7f1c1;
  }

  & .con05__desc {
    margin-top: 2.4rem;
    font-size: var(--headS);
    line-height: 1.318;
    letter-spacing: -0.06em;
    color: #fff;
  }

  /* 어두운 라운드 영상 카드 */
  & .con05__stage {
    margin-top: 4.6rem;
    width: 156.6rem;
    height: 55.5rem;
    border-radius: 4rem;
    background: #000;
    overflow: hidden;
    z-index: 1;
  }

  & .con05__video {
    object-fit: cover;
    opacity: 0.35;
  }

  /* STEP 카드 리스트 (영상 카드 위 오버레이) */
  & .con05__steps {
    width: 116.8rem;
    gap: 2.5rem;
  }

  & .con05__step {
    box-sizing: border-box;
    width: 27.3rem;
    height: 20.9rem;
    padding: 0 0;
    border-radius: 4rem;
    background: #fff;
    outline: 3px solid #fff;
    outline-offset: -1rem;
    transition: background .4s ease;
    justify-content: center;
    gap: 1.2rem;

    &.is-active {
      background: #e72119;
    }
  }

  /* 신호등 순환 하이라이트 — active 카드 = 빨강 + 큰 흰 숫자 (height/opacity 전환) (Nesting depth 2) */
  & .con05__step.is-active .con05__step-num {
    height: auto;
    opacity: 1;
  }

  & .con05__step.is-active .con05__step-label {
    height: 0;
    opacity: 0;
  }

  & .con05__step.is-active .con05__step-divider {
    height: 0;
    margin: 0;
    opacity: 0;
  }

  & .con05__step.is-active .con05__step-text {
    color: #fff;
  }

  & .con05__step-num {
    position: absolute;
    top: -5.5rem;
    height: 0;
    overflow: hidden;
    font-family: 'Anton', sans-serif;
    font-size: 12.477rem;
    line-height: 1;
    letter-spacing: -0.025em;
    color: #fff;
    opacity: 0;
    transition: opacity .4s ease, height .4s ease;
  }

  & .con05__step-label {
    height: auto;
    overflow: hidden;
    font-family: 'Anton', sans-serif;
    font-size: var(--subheadL);
    letter-spacing: -0.025em;
    text-transform: uppercase;
    color: #000;
    transition: opacity .4s ease, height .4s ease;
  }

  & .con05__step-divider {
    width: 19.8rem;
    height: 1px;
    margin: 1.2rem 0;
    border-top: 1px dashed rgba(0, 0, 0, .3);
    overflow: hidden;
    transition: height .4s ease, margin .4s ease, opacity .4s ease;
  }

  & .con05__step-text {
    font-size: var(--headS);
    line-height: 1.139;
    letter-spacing: -0.025em;
    color: #000;
    transition: color .4s ease;
  }

  /* 데코: 한복 캐릭터(좌하단) / 볶음밥(우측) */
  & .con05__char {
    left: 1.8rem;
    top: 56.8rem;
    width: 38.1rem;
    z-index: 1;
  }

  & .con05__dish {
    left: 128.5rem;
    top: 25.2rem;
    width: 88.4rem;
  }


}

/* ===== con08 스타일 정의 (PC & 모바일 반응형) ===== */
.con08 {
  position: relative;
  width: 100%;
  height: 110.7rem;
  background-color: #efece0;
  overflow: hidden;

  & .con08__container {
    padding-top: 4.3rem; /* (1107 - 1020) / 2 = 43.5px -> 약 4.3rem */
    padding-bottom: 4.3rem; /* 상하 대칭 — 미적용 시 섹션 flex-center가 board를 ~21px 아래로 밀어냄 */
  }

  & .con08__board {
    width: 180.5rem;
    height: 102rem;
    background-color: #ffffff;
    border-radius: 4rem;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.02);
    overflow: hidden;
  }

  /* 상단 타이틀 */
  & .con08__title-wrap {
    margin-top: 9.3rem;
    z-index: 10;
  }

  & .con08__badge-wrap {
    width: 10.9rem;
    height: 4.4rem;
    margin-bottom: 2rem;
  }

  & .con08__badge-bg {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }


  & .con08__title {
    font-size: var(--headL);
    line-height: 1.3;
    letter-spacing: -0.025em;
    color: #000000;
  }

  & .con08__title .light {
    font-weight: 300;
  }

  & .con08__title .bold {
    font-size: var(--titleXL);
    font-weight: 700;
    line-height: 1.2;
  }

  & .con08__title .color-red {
    color: #e72119;
  }

  & .con08__center-visual {
    width: 108.2rem;
    height: 72.1rem;
    position: absolute;
    left: calc(50% - 54.1rem);
    top: 20.8rem; /* 타이틀↔원 간격을 시안(88px)에 맞춤 (14.5 → 20.8rem, 원 6.3rem 아래로) */
  }

  & .con08__circle-wrap {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 8; /* .rltv 유틸로 이미 relative — 원 그룹을 marquee(6)/swiper(7) 위로 */
  }

  & .con08__circle {
    border-radius: 50%;
  }

  & .con08__circle img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  & .con08__circle--1 {
    width: 63.4rem;
    height: 63.4rem;
    z-index: 5;
  }

  & .con08__circle--2 {
    width: 51.4rem;
    height: 51.4rem;
    z-index: 7;
  }

  & .con08__circle--3 {
    width: 45.2rem;
    height: 45.2rem;
    z-index: 8;
  }

  & .con08__visual-img {
    width: 41.1rem;
    height: 35.4rem;
    z-index: 9;
    bottom: 6vw;
    left: 19vw;
  }

  & .con08__visual-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  /* 무한 롤링 마퀴 슬라이더 (흐름 배치, .rltv 유틸로 positioned) */
  & .con08__marquee-wrap {
    margin-top: 10.8rem; /* 흐름 기준 title-wrap bottom(306) → 목표 top 414 */
    width: 100%;
    height: 39.4rem;
    background-color: #efece0;
    z-index: 6;
  }

  & .con08__swiper {
    top: 6.4rem;
    height: 26.6rem;
    z-index: 7;
    overflow: hidden;
  }

  /* 좌우로 더 길게 뻗어 중앙 원과 깊게 겹침. 안쪽(원 쪽) 끝은 mask-gradient 로 페이드아웃 */
  & .con08__swiper--left {
    left: -18.8rem;
    width: 95rem;
    -webkit-mask-image: linear-gradient(to right, #000 70%, transparent 85%);
    mask-image: linear-gradient(to right, #000 70%, transparent 85%);
  }

  & .con08__swiper--right {
    left: 104.3rem;
    width: 95rem;
    -webkit-mask-image: linear-gradient(to left, #000 70%, transparent 85%);
    mask-image: linear-gradient(to left, #000 70%, transparent 85%);
  }

  /* 모바일 전용 통합 스와이퍼 — PC 숨김 */
  & .con08__swiper--mobile {
    display: none;
  }

  /* Swiper 등속 롤링 구현용 transition-timing-function 강제 */
  & .con08__swiper .swiper-wrapper {
    transition-timing-function: linear !important;
  }

  & .swiper-slide {
    width: 32.4rem;
    height: 26.6rem;
    margin-right: 2rem;
    flex-shrink: 0;
  }

  & .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  /* 하단 설명 (흐름 배치, .rltv 유틸로 positioned) */
  & .con08__desc {
    margin-top: 10.2rem;
    font-size: var(--bodyXL);
    line-height: 1.4;
    letter-spacing: -0.05em;
    color: #000000;
    font-weight: 400;
    z-index: 10;
  }
}

@keyframes marquee_con08 {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

/* ===== CON07 ===== */
.con07 {
  width: 100%;
  background: #f7f0d6;
  overflow: hidden;

  & .con07__inner {
    height: 134.5rem;
  }

  & .con07__title-wrap {
    left: 12.8%;
    top: 18.2%;
  }

  & .con07__title {
    font-size: var(--titleXL);
    line-height: 1.121;
    letter-spacing: -0.025em;
    color: #000;
  }

  & .con07__title--red {
    color: #e72119;
  }

  & .con07__sub {
    font-size: var(--headS);
    line-height: 1.318;
    letter-spacing: -0.06em;
    color: #000;
  }

  & .con07__center {
    left: 48.5%;
    top: 15.5%;
  }

  & .con07__badge {
    width: 7.3rem;
    z-index: 6;
  }

  & .con07__center-line {
    left: 50.3%;
    top: 19.0%;
    width: 1px;
    height: 74.6%;
    background: #151515;
    opacity: 0.1;
    z-index: 1;
  }

  & .con07__center-dot {
    left: 50.3%;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background: #151515;
    transform: translateX(-50%);
    z-index: 2;
  }

  & .con07__center-dot--1 {
    top: 35.0%;
  }

  & .con07__center-dot--2 {
    top: 51.0%;
  }

  /* 카드 묶음 wrapper — PC 는 display:contents 로 레이아웃 무영향(카드 absol 좌표 inner 기준 유지).
     모바일에서만 flex-col 흐름으로 전환 */
  & .con07__cards {
    display: contents;
  }

  & .con07__card {
    width: 41.3%;
    height: 35.5rem;
    background: #fff;
    border-radius: 4rem;
    overflow: hidden;
    z-index: 5;
  }

  & .con07__card--1 {
    left: 52.3%;
    top: 22.4%;
    overflow: visible; /* logo 가 카드 위로 떠야 함 → clip 은 card-inner 가 담당 */
  }

  /* card--1 전용 clip 래퍼: phone 을 카드 경계에서 자름(기존 card overflow:hidden 역할 이관) */
  & .con07__card-inner {
    position: absolute;
    inset: 0;
    border-radius: 4rem;
    overflow: hidden;
  }

  & .con07__card--2 {
    left: 7.1%;
    top: 38.4%;
  }

  & .con07__card--3 {
    left: 52.3%;
    top: 54.3%;
  }

  & .con07__phone {
    left: -10.9%;
    top: 19.7%;
    width: 53.7%;
    z-index: 6;
  }

  /* logo 묶음 wrapper — PC 는 display:contents 로 무영향(개별 logo 좌표 card--1 기준 유지),
     모바일에서만 flex 로 묶어 정렬 */
  & .con07__logos {
    display: contents;
  }

  & .con07__logo {
    z-index: 6;
  }

  /* 로고 상하 부유 — GSAP(div 등장 트윈)과 충돌 안 나게 keyframe 은 img 에 직접 적용.
     3개 시차 delay 로 따로 떠다님 (floating keyframe = animation.css 공통) */
  & .con07__logo img {
    animation: floating 2.6s ease-in-out infinite alternate;
  }
  & .con07__logo--coupang img {
    animation-delay: 0.6s;
  }
  & .con07__logo--baemin img {
    animation-delay: 1.2s;
  }

  /* logo 3개 — card--1 안으로 이동(구조 개선), 좌표를 card--1 기준으로 재계산.
     기존 inner 기준 → card--1(left52.3% top22.4% w41.3% h35.5rem) 기준 환산 */
  & .con07__logo--yogiyo {
    left: 6.05%;
    top: -6.44%;
  }

  & .con07__logo--coupang {
    left: 24.94%;
    top: -29.17%;
  }

  & .con07__logo--baemin {
    left: 36.32%;
    top: -9.47%;
  }

  & .con07__bubble {
    left: 8.2%;
    width: 37.4%;
    z-index: 6;
  }

  & .con07__bubble--1 {
    top: 15.8%;
  }

  & .con07__bubble--2 {
    top: 51.8%;
  }

  & .con07__emoji {
    left: 38.8%;
    top: 39.2%;
    width: 8.4rem;
    z-index: 6;
  }

  & .con07__photo {
    left: 10.4%;
    top: 14.9%;
    width: 32.1%;
    height: 69.6%;
    /* background: #000; */
    /* border-radius: 4rem; */
    overflow: hidden;
    z-index: 6;
  }

  & .con07__card-text {
    left: 53.6%;
    top: 31.3%;
  }

  & .con07__card--2 .con07__card-text {
    left: 53.4%;
  }

  & .con07__card-title {
    font-size: var(--headM);
    line-height: 1.018;
    letter-spacing: -0.025em;
    color: #000;
  }

  & .con07__card-label {
    margin-top: 0.4rem;
    font-size: var(--bodyL);
    line-height: 1.4;
    letter-spacing: -0.025em;
    color: #000;
  }

  & .con07__card-desc {
    margin-top: 1.8rem;
    font-size: var(--bodyL);
    line-height: 1.579;
    letter-spacing: -0.05em;
    color: #000;
  }

  & .con07__dish {
    left: 22.9%;
    top: 58.9%;
    width: 54.9%;
    z-index: 2;
  }

  & .con07__marquee {
    bottom: 0;
    width: 100%;
    height: 9.1%;
    background: #e72119;
    overflow: hidden;
    display: flex;
    align-items: center;
    z-index: 1;
  }

  & .con07__marquee-track {
    width: max-content;
    align-items: center;
    animation: marquee_con07 30s linear infinite;
  }

  & .con07__marquee-item {
    margin-right: 4rem;
    font-size: var(--titleL);
    line-height: 1;
    letter-spacing: 0em;
    color: #fff;
    white-space: nowrap;
  }
}

@keyframes marquee_con07 {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

/* ===== CON06 ===== */
.con06 {
  flex-direction: row;
  align-items: stretch;
  justify-content: flex-start;
  width: 100%;
  height: 100vh;
  overflow: hidden;

  & .con06__copy {
    box-sizing: border-box;
    width: 50%;
    background: #111111 url(/images/con06_03.webp) center / cover no-repeat;
    overflow: hidden;
    padding-left: 24rem;
    padding-top: 17rem;
  }

  & .con06__logo {
    align-self: flex-start;
  }

  & .con06__title {
    margin-top: 2.5rem;
    font-size: var(--titleXL);
    line-height: 1.2;
    letter-spacing: -0.025em;
    color: #ffffff;
  }

  & .con06__title--red {
    color: #e72119;
  }

  & .con06__desc {
    margin-top: 2rem;
    font-size: var(--bodyXL);
    line-height: 1.5;
    letter-spacing: -0.04em;
    color: #cccccc;
  }

  & .con06__bowl-wrap {
    left: 0;
    bottom: -59rem;
    z-index: 2;
  }

  & .con06__bowl {
    position: relative;
    z-index: 2;
  }

  & .con06__smoke {
    top: -37rem;
    z-index: 5;
    animation: smoke 8s infinite linear;
  }

  & .con06__slider {
    box-sizing: border-box;
    width: 50%;
    background: #ffffff;
    padding: 9rem 0 8rem 0;
    justify-content: center;
    align-items: stretch;
  }

  & .con06__indicator {
    gap: 2.4rem;
    justify-content: flex-start;
    padding-left: 12rem;
    box-sizing: border-box;
  }

  & .con06__track {
    width: 72.5rem;
    z-index: 1;
  }

  & .con06__pager {
    position: relative;
    z-index: 2;
    width: 71.5rem;
    height: 6.4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
    bottom: auto;
  }

  & .con06__bullet {
    width: 2.3rem;
    height: 2.3rem;
    border-radius: 50%;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: transparent;
    font-size: 0;
    cursor: pointer;
    flex-shrink: 0;
    transition: width 0.3s, height 0.3s, background 0.3s, color 0.3s, font-size 0.3s;
  }

  & .con06__bullet--active {
    width: 6.4rem;
    height: 6.4rem;
    /* margin: 0 -2.05rem; */
    /* transform: translateX(1.9rem); */
    background: #e72119;
    color: #ffffff;
    font-size: var(--headS);
    letter-spacing: -0.02em;
  }

  /* PC: 섹션 pin 후 GSAP 가 .con06__list 를 transform x 로 이동 → overflow 숨김 */
  & .con06__scroll {
    width: 100%;
    margin-top: 5rem;
    overflow: hidden;
  }

  & .con06__list {
    flex-direction: row;
    align-items: flex-start;
    gap: 9rem;
    width: max-content;
    padding-left: 12rem;
    padding-right: 12rem;
    will-change: transform;
  }

  & .con06__card {
    flex-shrink: 0;
    width: 72.1rem;
    align-items: flex-start;
  }

  & .con06__card-img {
    border-radius: 2rem;
  }

  & .con06__card-img img {
    border-radius: 2rem;
  }

  & .con06__badge {
    right: -3rem;
    bottom: -2rem;
    z-index: 3;
  }

  & .con06__card-title {
    margin-top: 6rem;
    font-size: var(--subheadL);
    line-height: 1.3;
    letter-spacing: -0.03em;
    color: #111111;
    text-align: left;
  }

  & .con06__card-desc {
    margin-top: 1.4rem;
    font-size: var(--bodyL);
    line-height: 1.55;
    letter-spacing: -0.03em;
    color: #555555;
    text-align: left;
  }

  & .con06__note {
    display: block;
    margin-top: 1rem;
    font-size: var(--bodyS);
    line-height: 1.5;
    letter-spacing: -0.02em;
    color: #888888;
  }
}

/* ===================== CON1011 (con10 매장안내 + con11 K-마라탕 비주얼) ===================== */
/* con10 = 흰 배경, con11 = 빨강 배경(아래 .con11 블록에서 처리) */
.con1011 {
  background: #ffffff;
  overflow: visible;
}

/* ----- con10 파트: 흰 배경 매장안내 ----- */
.con10 {
  height: 88.5rem;
  z-index: 6;
  background: url("/images/con10_05.webp") no-repeat top center / 100% auto;
  overflow: visible;

  /* 우상단 오토바이 일러스트 (con09~con10 경계, 위로 걸침) */
  & .con10__moto {
    right: 11rem;
    top: -11rem;
    z-index: 6;
  }


  & .con10__head {
    margin-top: 13.4rem;
  }

  & .con10__title {
    font-size: var(--titleXL);
    letter-spacing: -0.025em;
    line-height: 1.2;
    color: #000000;

    & .con10__title--red {
      color: #e72119;
    }
  }

  & .con10__sub {
    margin-top: 0.4rem;
    font-size: var(--headS);
    letter-spacing: -0.06em;
    line-height: 1.32;
    color: #555555;
  }

  /* 매장안내 컨테이너 (검색 + 지도/리스트) */
  & .map__container {
    position: relative;
    width: 148.8rem;
    height: 57.6rem;
    margin: 7rem auto 0;
  }

  /* 검색바 (지도 위 걸침 — map__wrap 밖이라 안 잘림) */
  & .search {
    position: absolute;
    left: 45.2rem;
    top: -3.4rem;
    z-index: 3;
    border: 1px solid #222;
    border-radius: 2rem;
    overflow: hidden;
  }

  & .search__tab {
    box-sizing: border-box;
    flex-shrink: 0;
    align-self: stretch;
    appearance: none;
    -webkit-appearance: none;
    width: 15.1rem;
    border: none;
    border-radius: 0;
    background: #000 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9'%3E%3Cpath d='M1 1l6 6 6-6' fill='none' stroke='white' stroke-width='2'/%3E%3C/svg%3E") no-repeat right 1.4rem center;
    background-size: 1.3rem auto;
    color: #ffffff;
    font-size: var(--bodyL);
    letter-spacing: -0.05em;
    line-height: 1.39;
    font-weight: 600;
    text-align: center;
    text-align-last: center;
    cursor: pointer;
  }

  & .search__bar {
    box-sizing: border-box;
    flex-shrink: 0;
    width: 49rem;
    height: 6.9rem;
    background: #ffffff;
  }

  & .search__input {
    padding: 0 3rem;
    flex-grow: 1;
    min-width: 0;
    height: 100%;
    border: none;
    background: transparent;
    outline: none;
    font-size: var(--bodyL);
    letter-spacing: -0.05em;
    line-height: 1.39;
    color: #000000;
    font-weight: 400;
  }

  & .search__btn {
    width: 6.8rem;
    height: 100%;
    aspect-ratio: 1;
    flex-shrink: 0;
    background: #e72119;
  }

  /* 지도 + 매장 리스트 묶음 (둥근 카드) */
  & .map__wrap {
    display: flex;
    width: 100%;
    height: 100%;
    border-radius: 3rem;
    overflow: hidden;
    border: 1px solid #222;
    z-index: 1;
  }

  & #map {
    flex-grow: 1;
    min-width: 0;
  }

  /* 매장 리스트 (좌측, 세로 스크롤) */
  & .map__list {
    flex-shrink: 0;
    order: -1;
    width: 40.5rem;
    height: 100%;
    overflow-y: auto;
    background: #ffffff;
    z-index: 2;
    border-right: 1px solid #222;
  }

  & .list__item {
    padding: 3.7rem 4rem;
    cursor: pointer;
    border-bottom: 1px solid #ddd;
  }

  /* 긴 텍스트 예방: info 는 줄어들 수 있게(min-width:0) → 화살표 밀림 방지 */
  & .list__info {
    min-width: 0;
    flex: 1;
  }

  & .list__name {
    max-width: 100%;
    font-size: var(--bodyXL);
    letter-spacing: -0.05em;
    line-height: 1.19;
    color: #000000;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  & .list__addr {
    margin-top: 0.8rem;
    font-size: var(--bodyM);
    letter-spacing: -0.05em;
    line-height: 1.56;
    color: #000000;
    font-weight: 400;
    overflow-wrap: anywhere;
  }

  & .list__call {
    margin-top: 0.4rem;
    font-size: var(--bodyM);
    letter-spacing: -0.05em;
    line-height: 1.56;
    color: #e72119;
    font-weight: 600;
    overflow-wrap: anywhere;
  }

  & .list__arrow {
    flex-shrink: 0;
  }
}

/* 지도 마커 CustomOverlay (map.js 생성) */
.con10__marker {
  width: 6rem;
  height: 6rem;
  cursor: pointer;

  & img {
    width: 100%;
    height: auto;
  }
}

/* 매장 상세정보 모달 (map.js — position:fixed + 딤/블러 배경) */
.con10__pop-dim {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(0.8rem);
  -webkit-backdrop-filter: blur(0.8rem);
}

.con10__pop {
  position: relative;
  width: 56rem;
  max-width: 90vw;
  padding: 5rem 5rem 4.5rem;
  border-radius: 2.4rem;
  background: #ffffff;
  box-shadow: 0 1.2rem 4rem rgba(0, 0, 0, 0.28);

  & .con10__pop-close {
    position: absolute;
    right: 2rem;
    top: 1.4rem;
    font-size: var(--subheadL);
    line-height: 1;
    color: #999;
    cursor: pointer;
  }

  & .con10__pop-body {
    gap: 3.6rem;
  }

  & .con10__pop-logo {
    width: 14rem;
    flex-shrink: 0;

    & img {
      width: 100%;
      height: auto;
    }
  }

  & .con10__pop-name {
    font-size: var(--headM);
    letter-spacing: -0.05em;
    line-height: 1.2;
    color: #000000;
    font-weight: 700;
  }

  & .con10__pop-addr {
    margin-top: 1.2rem;
    font-size: var(--bodyL);
    letter-spacing: -0.05em;
    line-height: 1.5;
    color: #555555;
  }

  & .con10__pop-tel {
    display: inline-block;
    margin-top: 1rem;
    font-size: var(--bodyL);
    letter-spacing: -0.05em;
    color: #e72119;
    font-weight: 600;
  }

  & .con10__pop-hours {
    margin-top: 1.2rem;
    font-size: var(--bodyM);
    letter-spacing: -0.05em;
    line-height: 1.5;
    color: #555555;
    white-space: pre-line;
  }

  & .con10__pop-naver {
    margin-top: 2rem;
    width: 100%;
    height: 5.6rem;
    gap: 0.6rem;
    border-radius: 1.2rem;
    background: #03c75a;
    font-size: var(--bodyL);
    letter-spacing: -0.05em;
    color: #ffffff;
    font-weight: 700;
    cursor: pointer;

    & .con10__pop-naver-chev {
      width: 2.4rem;
      min-width: 24px;
      height: auto;
      flex-shrink: 0;
    }
  }
}

/* ----- con11 파트: K-마라탕 메인비주얼 (빨강 배경 + 배경 영상) ----- */
.con11 {
  margin-top: -13.7rem;
  padding-top: 13.7rem;
  height: 114.4rem;
  overflow: hidden;
  z-index: 5;
  background: #ce1912;

  /* z0 배경 풀 영상 (poster=con11_07, src 비어있으면 poster 표시) */
  & .con11__video {
    left: 0;
    top: 0;
    z-index: 0;
    object-fit: cover;
    opacity: 0.302;
    mix-blend-mode: hard-light;
  }

  /* 상단 경계 띠 (con11_08, 풀폭) */
  & .con11__top-deco {
    left: 0;
    top: 4rem;
    width: 100%;
    z-index: 1;
  }

  /* z1 텍스트 마퀴 (con11_06 좌→ 흐름, 그릇 뒤) */
  & .con11__marquee {
    left: 0;
    top: 59.3rem;
    z-index: 1;
  }

  & .con11__marquee .flow_sd_img img {
    width: auto; /* 전역 section img{width:100%} 무력화 — con11_06 자연크기(3343×48) 유지 */
  }

  /* 마퀴 속도 (con11_06이 길어 기본 20s는 빠름 → 느리게) */
  & .con11__marquee .flow_sd_move {
    animation-duration: 45s;
  }

  & .con11__eyebrow {
    margin-top: 14.2rem;
    font-size: 6.5rem; /* 시안 65px — titleXL(60) 5px차 초과 → raw 유지 */
    letter-spacing: -0.025em;
    line-height: 1.2;
    color: #ffffff;
    z-index: 4; /* 그릇(stage z2)보다 위 — 상단 타이틀이 그릇에 안 가리게 */
  }

  /* 그릇 + 토핑 겹침 무대 (overflow 제거 — 토핑이 밖으로 나오도록) */
  & .con11__stage {
    margin-top: 1.1rem;
    width: 112.3rem;
    height: 54.8rem; /* logo 흐름 위치를 시안(top 819)에 맞춤 */
    z-index: 2;
  }

  & .con11__food--lt {
    left: 0;
    top: 6.3rem;
    z-index: 3;
  }

  & .con11__food--lb {
    left: 8.8rem;
    top: 45.2rem;
    z-index: 3;
  }

  & .con11__food--r {
    right: 0;
    top: 13.1rem;
    z-index: 3;
  }

  /* 로고 텍스트 */
  & .con11__logo {
    position: relative;
    margin-top: 4rem;
    z-index: 3;
  }

  & .con11__title {
    font-size: 11.2rem; /* 시안 112px — 토큰 범위 초과 → raw (현재 HTML 미사용 dead) */
    letter-spacing: -0.025em;
    line-height: 1.2;
    color: #ffffff;
  }

  & .con11__desc {
    position: relative;
    margin-top: 2rem;
    font-size: var(--bodyXL);
    letter-spacing: -0.05em;
    line-height: 1.4;
    color: #ffffff;
    z-index: 2;
  }
}

/* con11__eyebrow 흐름 텍스트도 영상 위로 */
.con11 .con11__eyebrow {
  position: relative;
}


/* ===== CON12 (초선마라 메뉴 — 탭 + 카드 슬라이드) ===== */
.con12 {
  height: 84.9rem;
  background: #f7f0d6 url(/images/con12_03.webp) center / cover no-repeat;

  & .con12__inner {
    padding-top: 14.3rem;
  }

  & .con12__title {
    font-size: var(--titleXL);
    letter-spacing: -0.025em;
    line-height: 1.2;
    color: #000000;
  }

  & .con12__title--red {
    color: #e72119;
  }

  & .con12__tabs {
    gap: 6.1rem;
    margin-top: 2.7rem;
  }

  & .con12__tab {
    font-size: var(--headM);
    letter-spacing: -0.025em;
    line-height: 1.2;
    color: #000000;
    transition: color 0.35s ease;

    /* 대괄호는 항상 자리 차지(opacity 토글) → 탭 전환 시 들썩임 없이 자연스럽게 fade */
    &::before {
      content: "[ ";
      opacity: 0;
      transition: opacity 0.35s ease;
    }

    &::after {
      content: " ]";
      opacity: 0;
      transition: opacity 0.35s ease;
    }
  }

  & .con12__tab.is-active {
    color: #e72119;

    &::before,
    &::after {
      opacity: 1;
    }
  }

  & .con12__slider {
    margin-top: 3.4rem;
  }

  & .con12__panels {
    width: 65.35%;
  }

  & .con12__panel {
    display: none;
    width: 100%;
  }

  & .con12__panel.is-active {
    display: block;
  }

  & .con12__card {
    height: 40.4rem;
    border-radius: 2rem;
    background: rgba(255, 255, 255, 0.8);
    overflow: hidden;
  }

  & .con12__card-img {
    aspect-ratio: 397 / 271;
    border-radius: 2rem;
    overflow: hidden;
  }

  & .con12__card-body {
    height: 13.3rem;
  }

  & .con12__card-title {
    width: 100%;
    box-sizing: border-box;
    padding: 0 2rem;
    margin-top: 3.5rem;
    font-size: var(--headS);
    letter-spacing: -0.04em;
    line-height: 1.3;
    color: #000000;
    max-width: 39rem;
  }

  & .con12__card-desc {
    max-width: 39rem;
    width: 100%;
    box-sizing: border-box;
    padding: 0 2rem;
    margin-top: 0.5rem;
    font-size: var(--bodyM);
    letter-spacing: -0.05em;
    line-height: 1.4;
    color: #777;
  }

  & .con12__arrow {
    top: 50%;
    transform: translateY(-50%);
  }

  & .con12__arrow--prev {
    left: 12.55%;
    transform: translateY(-50%) scaleX(-1);
  }

  & .con12__arrow--next {
    right: 11.76%;
  }
}

/* ===== CON09 (배달의민족 리뷰 + Swiper 마퀴) ===== */
.con09 {
  width: 100%;
  background: #ffffff;
  overflow: hidden;

  /* 음식 실사 배경 보드 (con09_05 = back_img) */
  & .con09__board {
    height: 98.7rem;
    background-image: url(/images/con09_05.webp);
  }

  /* 좌측 텍스트 묶음 (흐름, board 기준 margin) */
  & .con09__title-wrap {
    margin-left: 24.2rem;
    margin-top: 22.5rem;
    width: auto;
    z-index: 6;
  }
  & .con09__badge {
    font-size: var(--subheadL);
    letter-spacing: -0.025em;
    line-height: 2.3;
    color: #ffffff;
  }
  & .con09__title {
    font-size: var(--titleXL);
    letter-spacing: -0.025em;
    line-height: 1.1;
    color: #ffffff;
    font-weight: 700;
  }
  & .con09__title .highlight {
    color: #f7f1c1;
  }
  & .con09__desc {
    margin-top: 2.4rem;
    font-size: var(--headS);
    letter-spacing: -0.06em;
    line-height: 1.3;
    color: #ffffff;
    font-weight: 500;
  }

  /* 우측 빨간 패널 (wrap=flex-cc / red-panel 단색+opacity / line 데코 / con09_02 세로줄 하단) */
  & .con09__panel__wrap {
    left: 128.8rem;
    top: 0;
    width: 64.8rem;
    height: 98.7rem;
    z-index: 1;
  }
  & .con09__red-panel {
    width: 100%;
    height: 100%;
    background: #e72018;
    opacity: 0.5;
  }
  & .con09__panel__wrap .line {
    left: 29.1rem;
    top: 0;
    z-index: 2;
  }
  & .con09_02 {
    left: 0;
    bottom: 0;
    z-index: 1;
  }

  /* 핸드폰 (프레임 + 화면 안 리뷰 fade 스와이퍼) */
  & .con09__phone {
    right: 1.2rem;
    top: 26rem;
    width: 59rem;
    height: 77.5rem;
    z-index: 4;
  }
  & .con09__phone-frame {
    inset: 0;
    z-index: 2;
    pointer-events: none;
  }
  & .con09__phone-frame img {
    width: 100%;
  }
  & .con09__phone-screen {
    top: 2rem;
    left: 6.7rem;
    right: 6.7rem;
    bottom: 2rem;
    overflow: hidden;
    border-radius: 4rem;
    z-index: 1;
  }
  & .con09__review .swiper-slide {
    background: #fff;
    align-items: flex-start;
  }

  & .con09__review .swiper-slide img {
    width: 100% !important;
    /* height: 100% !important; */
    object-fit: contain;
  }

  /* 최근 리뷰수 배지 (con09_01 완성형 + 숫자 카운터) */
  & .con09__badge-review {
    left: 127.4rem;
    top: 22.3rem;
    width: 18.3rem;
    height: 20.7rem;
    z-index: 5;
  }
  & .con09__badge-review-bg {
    inset: 0;
    width: 100%;
  }
  & .con09__badge-count {
    font-size: var(--titleS);
    line-height: 1;
    color: #F7F0D6;
    z-index: 1;
    margin-top: 5rem;
  }

  /* 하단 리뷰 카드 롤링 스와이퍼 (축소) */
  & .con09__sd {
    left: 0;
    top: 48.3rem;
    width: 139rem;
    height: 36.4rem;
    overflow: hidden;
    z-index: 3;
  }
  & .con09__sd .swiper-wrapper {
    transition-timing-function: linear !important;
    pointer-events: none;
  }
  & .con09__sd .swiper-slide {
    width: auto !important;
    margin-right: 0.8vw;
    flex-shrink: 0;
    border-radius: 1.6rem;
    overflow: hidden;
  }
  & .con09__sd-img {
    height: 36.4rem;
    display: flex;
  }
  & .con09__sd-img img {
    height: 36.4rem;
    width: auto;
    object-fit: contain;
  }
}


/* ===== CON13 (창업비용) ===== */
.con13 {
  height: 166.5rem;
  background: #0e0e0e url(/images/con13_07.webp) center / cover no-repeat;
  overflow: visible;

  & .con13__inner {
    padding-top: 1rem;
  }

  /* 로고 (위 섹션과 겹침) */
  & .con13__logo {
    position: relative;
    top: -4.7rem;
    z-index: 4;
  }

  /* 타이틀 */
  & .con13__head {
    margin-top: 7.4rem;
  }

  & .con13__head-sub {
    font-size: var(--headL);
    font-weight: 300;
    letter-spacing: -0.025em;
    line-height: 1.6;
    color: #ffffff;
  }

  & .con13__head-main {
    margin-top: 0.5rem;
    font-size: var(--titleXL);
    letter-spacing: -0.025em;
    line-height: 1.2;
    color: #ffffff;
  }

  & .con13__head-main--red {
    color: #e72119;
  }

  /* 카드 4개 + 캐릭터 */
  & .con13__cards {
    margin-top: 4.1rem;
    gap: 41.2rem;
  }

  & .con13__cards-side {
    gap: 2.3rem;
  }

  & .con13__card {
    box-sizing: border-box;
    width: 24.7rem;
    height: 23.7rem;
    border-radius: 4rem;
    background: #e71619;
    padding-top: 5.7rem;
  }

  & .con13__card-name {
    font-size: var(--headM);
    font-weight: 300;
    letter-spacing: -0.025em;
    line-height: 1.2;
    color: #ffffff;
  }

  & .con13__card-price {
    margin-top: 1.5rem;
    font-size: var(--bodyXL);
    font-weight: 300;
    letter-spacing: -0.025em;
    line-height: 1.2;
    color: #ffffff;
  }

  /* 취소선 — line-through 대신 span 선(두께/색 자유) */
  & .con13__card-line {
    left: 0;
    top: 50%;
    width: 100%;
    height: 2px;
    background: #ffffff;
    transform: translateY(-50%);
  }

  & .con13__card-free {
    margin-top: 0.3rem;
    font-size: var(--titleS);
    letter-spacing: -0.025em;
    line-height: 1.2;
    color: #ffffff;
  }

  & .con13__char {
    left: 50%;
    top: -2.8rem;
    transform: translateX(-50%);
    z-index: 2;
  }

  /* 가격표 영역 */
  & .con13__board {
    margin-top: 6rem;
  }

  & .con13__table {
    box-sizing: border-box;
    width: 144rem;
    height: 89.1rem;
    border-radius: 4rem;
    border: 0.3rem solid #e71619;
    background: #ffffff;
    z-index: 2;
  }

  /* 0원 배지 (금액칸, visual-verify 보정) */
  & .con13__badge--zero1 { top: 15.8rem; left: 67.8rem; }
  & .con13__badge--zero2 { top: 20.6rem; left: 67.8rem; }
  & .con13__badge--zero3 { top: 25.4rem; left: 67.8rem; }
  & .con13__badge--zero4 { top: 30.2rem; left: 67.8rem; }

  /* 한시적 면제 배지 (내용칸, visual-verify 보정) */
  & .con13__badge--free1 { top: 15.8rem; left: 95.5rem; }
  & .con13__badge--free2 { top: 20.6rem; left: 95.5rem; }
  & .con13__badge--free3 { top: 25.4rem; left: 95.5rem; }
  & .con13__badge--free4 { top: 30.2rem; left: 95.5rem; }

  /* 문의박스 (표 위 overlay, visual-verify 보정) */
  & .con13__contact {
    box-sizing: border-box;
    top: 39.1rem;
    left: 54.1rem;
    width: 48rem;
    padding: 3rem 3.5rem;
    border-radius: 3rem;
    background: #fdf9ed;
    border: 1px solid #f0cac5;
    box-shadow: 0 0.6rem 2rem rgba(0, 0, 0, 0.08);
    z-index: 2;
  }

  & .con13__contact-text {
    margin-top: 1.4rem;
    font-size: var(--headS);
    letter-spacing: -0.025em;
    line-height: 1.45;
    color: #222222;
  }

  & .con13__contact-tel {
    margin-top: 1.2rem;
    font-size: var(--titleS);
    letter-spacing: -0.025em;
    line-height: 1.2;
    color: #e72119;
  }

  & .con13__contact-call {
    margin-top: 0.4rem;
    font-size: var(--bodyS);
    letter-spacing: -0.025em;
    line-height: 1.2;
    color: #888888;
  }

  /* 마라탕 그릇 (섹션 우하단 overflow 잘림) */
  & .con13__bowl {
    right: 0;
    bottom: -6rem;
    z-index: 3;

    & img { width: 78rem; }
  }
}


/* ===== CON14 (가맹절차 — 6스텝 프로세스) ===== */
.con14 {
  height: 92rem;
  background: #ffffff;

  /* 타이틀 */
  & .con14__head {
    margin-top: 12.9rem;
  }

  & .con14__title {
    font-size: var(--titleXL);
    letter-spacing: -0.025em;
    line-height: 1.2;
    color: #000000;
  }

  & .con14__title--red {
    color: #e72119;
  }

  & .con14__desc {
    margin-top: 0.6rem;
    font-size: var(--headS);
    font-weight: 500;
    letter-spacing: -0.06em;
    line-height: 1.3;
    color: #000000;
  }

  /* 6스텝 카드 (2열×3행) + 화살표 */
  & .con14__steps {
    margin-top: 4.6rem;
  }

  & .con14__row {
    gap: 3.5rem;

    & + .con14__row {
      margin-top: 2.5rem;
    }
  }

  /* 새우 (6번 카드 우측상단 overflow overlay) */
  & .con14__shrimp {
    top: auto;
    right: 9vw;
    bottom: 5.7vw;
    z-index: 2;
  }
}


/* ===== CON15 (창업문의 — 문의 폼) ===== */
.con15 {
  height: 108rem;
  background: url(/images/con15_05.webp) center / cover no-repeat;
  overflow: hidden;

  /* 데코 (overflow 잘림) — 크기는 script.js 이미지 함수 자동, 위치만 지정 */
  & .con15__deco {
    z-index: 1;
  }
  & .con15__deco--top {
    left: 50.1rem;
    top: -30rem;
    z-index: 3;
  }
  & .con15__deco--bottom {
    left: 12.8rem;
    top: 65.2rem;
  }

  & .con15__inner {
    box-sizing: border-box;
    padding: 0 3.1rem 0 23.8rem;
    position: relative;
    z-index: 2;
  }

  /* ---- 좌측 ---- */
  & .con15__left {
    color: #ffffff;
  }
  & .con15__title {
    font-size: var(--titleXL);
    line-height: 1.12;
    letter-spacing: -0.025em;
    color: #ffffff;
  }
  & .con15__title--cream {
    color: #f7f1c1;
  }
  & .con15__desc {
    margin-top: 4.5rem;
    font-size: var(--headS);
    font-weight: 400;
    letter-spacing: -0.06em;
    line-height: 1.45;
  }
  & .con15__tel {
    margin-top: 7rem;
  }
  & .con15__tel-icon {
    width: 6.4rem;
  }
  & .con15__tel-num {
    font-size: var(--titleXL);
    letter-spacing: 0.02em;
    line-height: 1;
  }

  /* ---- 우측 폼 패널 ---- */
  & .con15__form {
    box-sizing: border-box;
    width: 89.4rem;
    height: 102.3rem;
    padding: 13.8rem 16rem 10rem;
    background: #ffffff;
    outline: 3px solid #e11d1e;
    outline-offset: -7px;
    border-radius: 4rem;
  }

  & .con15__row {
    height: 7.5rem;
    border-bottom: 0.1rem solid rgba(0, 0, 0, 0.2);
  }
  & .con15__label {
    flex-shrink: 0;
    width: 23.2rem;
    font-size: var(--headS);
    font-weight: 500;
    letter-spacing: -0.025em;
    color: #000000;
  }
  & .con15__field {
    flex: 1;
    height: 100%;
    font-family: inherit;
    font-size: var(--bodyL);
    font-weight: 500;
    letter-spacing: inherit;
    color: #000000;
    background: transparent;
    border: none;

    &:focus {
      outline: none;
    }
    &::placeholder {
      color: #999999;
    }
  }
  & .con15__select {
    appearance: none;
    -webkit-appearance: none;
    background: url(/images/con15_04.webp) no-repeat right center / 1.5rem auto;
    color: #999999;
    cursor: pointer;

    /* 옵션 선택 시(첫 빈옵션 벗어남) 회색 → 검정 */
    &:valid {
      color: #000000;
    }
  }
  & .con15__textarea {
    box-sizing: border-box;
    height: 100%;
    padding-top: 2rem;
    line-height: 1.4;
    resize: none;
  }
  & .con15__row--msg {
    height: 13.4rem;
    align-items: flex-start;

    & .con15__label {
      margin-top: 1.8rem;
    }
  }

  /* 유/무 버튼형 라디오 */
  & .con15__radio-wrap {
    flex: 1;
  }
  & .con15__radio-input {
    display: none;
  }
  & .con15__radio {
    width: 16.7rem;
    height: 5.3rem;
    border-radius: 1rem;
    font-size: var(--bodyL);
    font-weight: 500;
    letter-spacing: inherit;
    color: #ffffff;
    background: #000000;
    cursor: pointer;
    transition: background 0.15s;
  }
  & .con15__radio-input:checked + .con15__radio {
    background: #e71619;
  }

  /* 개인정보 동의 */
  & .con15__agree {
    margin-top: 2rem;

    & span {
      font-size: var(--bodyL);
      font-weight: 500;
      letter-spacing: -0.06em;
      color: #000000;
    }

    /* 동의 체크박스 — 검정 테두리 원, 체크 시 검정테두리 > 흰 테두리 > 검정 원 (동심원) */
    & input[type="checkbox"] {
      --input-border: #000000;   /* 평상시·체크 테두리 = 검정 */
      --input-stroke: #ffffff;   /* 체크 시 안쪽 흰 테두리 */
      --checked-bg: #000000;     /* 체크 시 가운데 검정 원 */
      --border-width: 2px;
      --stroke-width: 2px;
    }

    /* [보기] — 개인정보처리방침 모달 트리거 (label 내 button, 체크 토글 안 함) */
    & .con15__agree-view {
      flex-shrink: 0;
      padding: 0.5rem 1rem;
      font-size: var(--bodyS);
      font-weight: 500;
      letter-spacing: -0.04em;
      color: #ffffff;
      background: #000000;
      border: 1px solid #000000;
      border-radius: 0.6rem;
      cursor: pointer;
      transition: background 0.2s, border-color 0.2s;
    }

    & .con15__agree-view:hover {
      background: #222222;
      border-color: #222222;
    }
  }

  /* 상담 신청 버튼 */
  & .con15__submit {
    width: 57.5rem;
    height: 6.5rem;
    margin-top: 2.1rem;
    background: #e71619;
    border-radius: 1rem;
    font-size: var(--headS);
    font-weight: 500;
    letter-spacing: -0.025em;
    color: #ffffff;
    cursor: pointer;
  }
}


