/* ------------------------------
    메인비주얼
------------------------------ */

/* 메인비주얼 높이 */
#dn_main-visual {
    width: 100%;
    position: relative;
    overflow: hidden;
    background-color: #999;
}

#dn_m-main-youtube {
    display: none;
}
#dn_main-visual .dn_mainSwiper,
#dn_main-visual .swiper-wrapper,
#dn_main-visual .swiper-slide {
    width: 100%;
}

#dn_main-visual .swiper-slide .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2); /* 검정색 + 반투명 */
    z-index: 1;
}
.video_banner .main_video,
.dn_mainSwiper .pc_visual img {
    aspect-ratio: 1920 / 900;
    display: block;
    width: 100%;
    object-fit: cover;
}
.video_banner .hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    color: white;
}
.video_banner .hero-content p {
    font-size: 40px;
    font-weight: 400;
    font-family: "GH";
    margin-bottom: 20px;
}
.video_banner .hero-content img {
    max-width: 620px;
    width: calc(100% - 80px);
    margin: 0 auto;
}

/* 화살표 흰색 */
.dn_mainSwiper .swiper-button-next,
.dn_mainSwiper .swiper-button-prev {
    color: #fff;
}
.dn_mainSwiper .mo_visual {
    display: none;
}


@media (max-width: 768px) {
    .dn_mainSwiper .pc_visual {
        display: none;
    }
    .dn_mainSwiper .mo_visual {
        display: block;
    }
    .video_banner .main_video, .dn_mainSwiper .mo_visual img {
        aspect-ratio: 768 / 900;
    }
}

/* ------------------------------
    브랜드 소개 (고기 이미지 + 슬라이드)
------------------------------ */
#dn_brand {
  background: url('../img/sc2_bg.png') center center / cover no-repeat;
  text-align: center;
  position: relative;
  padding: 120px 0;
}
#dn_brand .meat-circle-wrap {
  position: relative;
  width: 100%;
  height: 640px;
}
#dn_brand .meat-circle-wrap > img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  max-width: 744px;
  /* width: calc(100% - 80px); */
}

/* 모바일 330이하 반응형 */
.mobile_s {
    display: none;
}

.meat-banner-text {
  margin: 40px auto 0;
  max-width: 1280px;
  width: calc(100% - 80px);
  word-break: keep-all;
}

.meat-banner-text .slogan {
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: -1px;
  font-family: 'GH';
}

.meat-banner-text .desc {
  margin-top: 24px;
  color: #000;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -0.4px;
}

.highlight-red {
  color: #d83a3a;
}

.highlight-green {
  color: #008a4c;
}
#rolling_meat_banner {
  overflow: hidden;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  z-index: 2;
}

#rolling_meat_banner .rolling-track {
  display: flex;
  width: 200%;
  animation: scroll-left 30s linear infinite;
}

#rolling_meat_banner .rolling-list {
  display: flex;
  gap: 30px;
}

#rolling_meat_banner .rolling-list img {
  width: 300px;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ------------------------------
    성공포인트 섹션
------------------------------ */

.ms_success_full {
    width: 100%;
    background: #1d472f;
    color: #fff;
    font-family: "GH";
    position: relative;
}

.success_title {
    position: absolute;
    z-index: 3;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    pointer-events: none;
}
.success_title p {
    font-size: 50px;
}
.success_title h4 {
    font-size: 70px;
    color: #FFEBA8;
    position: relative;
    margin: -18px;
}
.success_title h4::after {
    content: "성공포인트";
    display: block;
    filter: drop-shadow(0 2px 8px #fff2c8);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    animation: blink 2s linear infinite;
}
@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: .3; }
    100% { opacity: 1; }
}

.ms_success__inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3열 */
    grid-template-rows: repeat(2, auto);   /* 2줄 */
    margin: 0 auto;
    box-sizing: border-box;
}


/* 아이템 박스 */
.ms_success__item {
    text-align: center;
    background: #17181b;
    position: relative;
    overflow: hidden;
    transition: background .3s ease;
    aspect-ratio: 1 / 0.75;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: url("../img/point1.png") center center / cover no-repeat;
}
.ms_success__item:nth-child(2) {background-image: url("../img/point2.png");} 
.ms_success__item:nth-child(3) {background-image: url("../img/point3.png");} 
.ms_success__item:nth-child(4) {background-image: url("../img/point4.png");} 
.ms_success__item:nth-child(5) {background-image: url("../img/point5.png");} 
.ms_success__item:nth-child(6) {background-image: url("../img/point6.png");}

.ms_success__item::after {
    content: "";
    display: block;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    position: absolute;
    z-index: 1;
    animation: spotlight 12s linear infinite;
    transition: background-color 0.5s ease-in;
    inset: 0; 
    border: 1px solid rgba(255,255,255,0.3);
}

.ms_success__item:hover::after {
    background-color: rgba(0, 0, 0, 0.3);
}

/* 번호 */
.ms_success__item .no {
    font-weight: 700;
    font-size: 30px;
    color: #F6BD00;
    position: relative;
    z-index: 2;
}

/* 제목 */
.ms_success__item .head {
    font-size: 40px;
    font-weight: 700;
    position: relative;
    z-index: 2;
    line-height: 130%;
}

/* 설명 */
.ms_success__item .desc {
    font-size: 18px;
    color: #c9cbd3;
    margin: 0;
}

/* 반응형 */
@media (max-width: 1200px) {
    .ms_success__item .no {font-size: 14px;}
    .ms_success__item .head { font-size: 18px; }
    .success_title p {font-size: 16px; }
    .success_title h4 {
        font-size: 24px;
        margin: -5px;
    }
}
@media (max-width: 768px) {
    .ms_success__inner { grid-template-columns: repeat(2, 1fr); }
    .success_title {
        position: relative;
        padding: 80px 0 30px;
    }
    .ms_success__item::after {
        width: 100%;
        background-color: rgba(0, 0, 0, 0.5);
    }
    
    .ms_success__item:hover::after {
        background-color: rgba(0, 0, 0, 0.5);
    }
}
@media (max-width: 480px) {
    .ms_success__inner { grid-template-columns: 1fr; }
}

/* ------------------------------
    .dn_brand2 섹션
------------------------------ */

.dn_brand2 {
  width: 100%;
  overflow: hidden;
}

.brand2-inner {
  display: flex;
}
.brand2-left {
  width: 55%;
  height: 95vh;
  background: url('../img/sc3_bg_L.png') center bottom / cover no-repeat;
}

.brand2-right {
    position: relative;
    width: 45%;
    height: 95vh;
    background: url('../img/sc3_bg_R.png') center center / cover no-repeat;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    font-family: 'GH';
    font-size: 42px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: -0.84px;
    word-break: keep-all;
    white-space: nowrap;
}

.block-reveal {
  display: flex;
}
.green {
  color: #01492d;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.green .text_bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #f9c439;
  z-index: -1;
}

/* 화면에 나타났을 때 애니메이션 실행 */
.green.active .text_bg {
  animation: block-reveal calc(var(--reveal-speed, 0.5) * 1.5s)
    calc(var(--delay) * 1s) both;
}

@keyframes block-reveal {
  0% {
    transform: translateX(-110%);
  }
  45%,
  65% {
    transform: translateX(0%);
    width: 0%;
  }
  65.01% {
    transform: translateX(-110%);
    opacity: 1;
    width: 100%;
  }
  100% {
    transform: translateX(0%);
  }
}

/* ------------------------------
    dn_startup(창업) 섹션
------------------------------ */
.dn_startup_section {
  background-color: #fff;
  text-align: center;
}

.dn_startup_title {
  font-family: GH;
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: -1px;
  word-break: keep-all;
}

.dn_color_green {
  color: #006400;
}

.dn_color_red {
  color: #cc0000;
}

.dn_startup_desc {
  margin-top: 24px;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -0.4px;
}
.dn_startup_desc br {
  display: none;
}

.dn_store_gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 80px;
}

.dn_store_item {
  position: relative;
  overflow: hidden;
}

.dn_store_item img {
  width: 100%;
  display: block;
  transition: transform 0.3s ease;
}

.dn_store_item:hover img {
  transform: scale(1.05);
}

.dn_startup_section .dn_store_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.55);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 10px;
  line-height: 1.6;
  font-size: 22px;
  font-weight: 600;
  line-height: 150%;
  letter-spacing: -0.44px;
}

.dn_startup_section .dn_store_item:hover .dn_store_overlay {
  opacity: 1;
}

/* ------------------------------
    메뉴1
------------------------------ */

.dn_menu1 {
  width: 100%;
  height: 100vh;
  background: url('../img/sc5_bg.png') center center / cover no-repeat;
  display: flex;
  align-items: end;
  justify-content: center;
}
.dn_menu1 .textbox {
  background: url('../img/sc5_textbox.png') center center / cover no-repeat;
  width: 1064px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 70px;

  font-family: 'GH';
  font-size: 42px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: -0.84px;
  text-align: center;
}
.dn_menu1 .textbox .wrap {
    width: calc(100% - 80px);
    display: flex;
    flex-direction: column;
}
.dn_menu1 .textbox .dn_color_red {
  font-size: 29px;
  letter-spacing: -0.58px;
}
.dn_menu1 .textbox p {
  font-family: 'Pretendard';
  font-size: 20px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -0.4px;
  margin: 12px 0 10px;
}

/* ------------------------------
    메뉴2
------------------------------ */

.dn_menu2 {
  background: url('../img/sc6_bg.png') center center / cover no-repeat;
}
.dn_menu_title {
  text-align: center;
  font-family: 'GH';
  font-size: 50px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: -1px;
  margin-bottom: 24px;
}

.dn_menu_desc {
  text-align: center;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: -0.4px;
  margin-bottom: 40px;
}
.dn_menu_tabs {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 80px;
}

.dn_menu_tab_btn {
  padding: 10px 20px;
  border: none;
  background: transparent;
  cursor: pointer;
  color: #121212;
  border: 1px solid #121212;
  border-radius: 25px;
  opacity: 0.5;
  transition: 0.2s;
  font-size: 20px;
}

.dn_menu_tab_btn.dn_active {
  border: 1px solid #121212;
  font-weight: 700;
  opacity: 1;
}

.dn_menu_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  justify-items: center;
  margin: 0 auto;
  max-width: 1280px;
}
.dn_menu_item {
  text-align: center;
  display: none;
}
.dn_menu_item img {
  width: 100%;
  border-radius: 10px;
}
.dn_menu_item.dn_show {
  display: block;
}

/* ------------------------------
    메뉴3
------------------------------ */

.dn_menu3 {
  width: 100%;
  /* height: 900px; */
  /* height: 90vh; */
  max-width: 100%;
  padding: 60px 0;
  position: relative;
}
.dn_menu3_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.dn_menu3_overlay {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}
.dn_menu3 .inner_box {
    position: relative;
    z-index: 1;
    margin: 0 auto;
    display: flex;
    border: 5px solid #f6bd00;
    max-width: 1800px;
    width: calc(100% - 80px);
    height: 780px;
    flex-shrink: 0;
}
.dn_menu3 .inner_box .text_box {
    margin-left: 258px;
    max-width: 617px;
    margin-right: 26px;
    align-content: center;
    padding: 165px 0;
}
.dn_menu3 .inner_box .text_box span {
    font-weight: 700;
    font-family: 'GH';
    font-size: 24px;
    color: #fff;
    line-height: 150%; /* 36px */
    letter-spacing: -0.48px;
    background-color: #cc1919;
    padding: 10px 20px;
    white-space: nowrap;
}
.dn_menu3 .inner_box .text_box h2 {
    font-weight: 700;
    font-family: 'GH';
    font-size: 60px;
    color: #fff;
    line-height: 150%; /* 36px */
    letter-spacing: -0.48px;
    margin-top: 10px;
    margin-bottom: 24px;
}
.dn_menu3 .inner_box .text_box p {
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    line-height: 150%; /* 30px */
    letter-spacing: -0.4px;
}
.dn_menu3 .img_box {
    /* transform: translateY(150px); */
    display: flex;
    align-items: end;
}
.dn_menu3 .img_box img {
    /* position: absolute;
    z-index: 99; */
    max-width: 858px;
    width: 45vw;
    /* min-width: 500px; */
    transform: translateY(150px);
}

/* ------------------------------
    경쟁력1 - 매출
------------------------------ */

.sales_slide_wrap {
  position: relative;
  background: url('../img/sc8_bg.png') center center / cover no-repeat;
  width: 100%;
  max-width: 100%;
  padding: 120px 0;
}
.sales_title {
    color: #fff;
    text-align: center;
    width: calc(100% - 80px);
    margin: 0 auto;
}
.sales_title h2 {
  text-align: center;
  font-family: 'GH';
  font-size: 50px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: -1px;
  margin-bottom: 24px;
}

.nowrap {
    white-space: nowrap;
}

.flicker {
    animation: flicker1 0.5s infinite;
}
@keyframes flicker1 {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

.sales_title p {
  text-align: center;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: -0.4px;
  font-family: 'Pretendard';
  word-break: keep-all;
}

.sales_title .sales_desc {
    font-size: 20px;
    display: block;
    margin: 60px 0 70px;
}

#rolling_sales_banner {
  overflow: hidden;
}

#rolling_sales_banner .rolling-track {
  display: flex;
  width: 200%;
  animation: scroll-left2 20s linear infinite;
}

#rolling_sales_banner .rolling-list {
  display: flex;
  gap: 30px;
}

#rolling_sales_banner .rolling-list img {
  width: 300px;
}

@keyframes scroll-left2 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ------------------------------
    경쟁력2 - 마진률
------------------------------ */

.versus {
    position: relative;
    background: url('../img/sc9_bg.png') center center / cover no-repeat;
    width: 100%;
    /* height: 1412px; */
    max-width: 100%;
    word-break: keep-all;
    overflow: hidden;
}
.versus_title h2 {
    text-align: center;
    font-family: 'GH';
    font-size: 50px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: -1px;
    margin-bottom: 24px;
}
.versus_title p {
    text-align: center;
    font-size: 20px;
    line-height: 150%;
    letter-spacing: -0.4px;
    margin-bottom: 160px;
    font-family: 'Pretendard';
}
.versus_title p .flicker {
    color: #cc1919;
}
.versus .img_box {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 1280px;
    width: calc(100% - 100px);
    margin: 0 auto;
}
.versus .img_box .img_L {
    height: 100%;
    width: 44%;
    align-self: center;
}
.versus .img_box .img_R {
    width: 54%;
    animation: flicker2 0.5s infinite;
}
.versus .img_box .img_vs {
    position: absolute;
    width: 9vw;
    top: 50%;
    left: 45%;
    transform: translate(-50%, -50%);
}
.versus .img_box .img_tag {
    position: absolute;
    width: 14vw;
    top: -5vw;
    right: -5vw;
    animation: flicker2 0.5s infinite;
}
@keyframes flicker2 {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* ------------------------------
    인테리어
------------------------------ */

.interior {
  background: url('../img/sc10_bg.png') center center / cover no-repeat;
  width: 100%;
  max-width: 100%;
  padding: 120px 0;
  position: relative;
}
.interior_title {
    width: calc(100% - 80px);
    margin: 0 auto;
}
.interior h2 {
  text-align: center;
  font-family: 'GH';
  font-size: 50px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: -1px;
  margin-bottom: 24px;
  color: #fff;
}
.interior p {
  text-align: center;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: -0.4px;
  margin-bottom: 80px;
  color: #fff;
  font-family: 'Pretendard';
}
.interior_title strong {
    filter: drop-shadow(0px 0px 5px rgba(255, 255, 255, 0.3));
}
.interior_slide_wrap .fixed_image {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  min-width: 300px;
}
.interior_slide_wrap .fixed_image img {
  width: 100%;
  height: 100%;
}
.interior_slide_wrap .swiper-slide {
  width: 25vw;
  max-width: 480px;
  min-width: 284px;
}
.interior_slide_wrap .swiper-slide img {
  width: 100%;
  display: block;
  margin: 0;
  padding: 0;
  margin-top: 30vw;
}

/* ------------------------------
    상권선정
------------------------------ */

.location {
    background: #fff;
    padding: 120px 0;
    overflow: hidden;
}
.location_title {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    width: calc(100% - 80px);
    margin: 0 auto;
}
.location_title h2 {
    text-align: center;
    font-family: 'GH';
    font-size: 50px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: -1px;
    margin-bottom: 24px;
}
.location_title p {
    text-align: center;
    font-size: 20px;
    line-height: 150%;
    letter-spacing: -0.4px;
    margin-bottom: 80px;
    font-family: 'Pretendard';
}
.location_stamp {
    display: flex;
    justify-content: end;
    position: absolute;
    top: -70px;
    right: 0;
    opacity: 0;
    transform: scale(3) rotate(-30deg);
    transition: all 0.3s ease-out;
    pointer-events: none;
    z-index: -1;
}
.location_stamp.active {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.dn_store_slider {
    position: relative;
    max-width: 1280px;
    width: calc(100% - 80px);
}

.dn_swiper_store .swiper-slide {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: 0.3s;
}

.dn_store_item img {
    width: 100%;
    display: block;
    transition: transform 0.3s;
}
/* 4번째 슬라이드부터 클래스명으로 블러 */
.dn_store_item.blur img {
    filter: blur(6px);
}

.dn_store_slider .dn_store_overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Pretendard';
    font-size: 18px;
    /* opacity: 0; */
    transition: 0.3s;
    text-align: center;
    line-height: 1.4;
}


/* ------------------------------
    매장찾기
------------------------------ */

#dn_store-locator {
    height: auto;
    position: relative;
    background-color: var(--main-green);
}

#dn_store-locator h3 {
    color: #fff;
    text-align: center;
    margin-bottom: 24px;
    font-size: 50px;
    font-family: 'GH';
    font-weight: 700;
}

#dn_store-locator .dn_store-wrapper > p {
    text-align: center;
    font-size: 20px;
    line-height: 150%;
    letter-spacing: -0.4px;
    margin-bottom: 80px;
    font-family: 'Pretendard';
    color: #fff;
}
/* 지도와 리스트 전체 */
/* .dn_store-wrapper {
    width: 100%;
} */

.dn_store-wrapper .dn_list {
    position: relative;
    width: 100%;
    height: 630px;
}
/* 지도 */
#dn_map {
    width: 100%;
    height: 100%;
    border-radius: 0;
    position: relative;
    z-index: 1;
}

/* 매장 목록 오버레이 */
.dn_store-list-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 320px;
    /* height: 90%; */
    background: #fff;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--main-green);
}

/* 검색창 */
.dn_store-list-overlay input[type='text'] {
    padding: 12px 14px;
    font-size: 14px;
    border: none;
    border-bottom: 1px solid #eee;
    height: 50px;
}

/* 매장 목록 토글 */
.dn_store-toggle-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    border-bottom: 1px solid #eee;
}

.dn_btn-toggle-list {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    transition: transform 0.3s ease;
    color: var(--main-green);
}

.dn_btn-toggle-list.active {
    transform: rotate(180deg);
}

.store-list-collapsible {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease;
}

.store-list-collapsible.active {
    max-height: 480px; /* 매장 목록 높이 */
}

/* 매장 목록 스타일 */
#dn_store-items {
    overflow-y: auto;
    background-color: #fff;
    border-radius: 8px;
    overflow-y: auto;
    max-height: 480px;
}

.dn_store-item {
    padding: 12px 20px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: background 0.2s;
}
.dn_store-item:hover {
    background-color: #f9f9f9;
}
.dn_store-item.active {
    background-color: #f9f9f9;
}

.store-name {
    font-weight: bold;
    font-size: 16px;
    color: #222;
}

.store-address {
    font-size: 14px;
    color: #666;
    margin-top: 4px;
}

.store-phone {
    font-size: 14px;
    color: rgb(218, 187, 50);
    margin-top: 4px;
}

.clickable-overlay {
    width: 60px;
    height: 80px;
    transform: translateX(-50%);
    cursor: pointer;
    position: relative;
    top: 50%;
    left: 50%;
}

/* 네이버 플레이스 바로가기 버튼 */
.store-link-button {
    display: inline-block;
    margin-top: 8px;
    padding: 6px 12px;
    background-color: var(--main-green);
    color: white;
    font-size: 14px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: 0.2s;
}
.store-link-button:hover {
    background-color: #276642;
}

.dn_customoverlay {
    position: relative;
    bottom: 78px;
    background: rgba(255, 255, 255, 0.8);
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: bold;
    color: #222;
    white-space: nowrap;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.2);
    border: 1px solid #ccc;
}

/* ------------------------------
    가맹비용
------------------------------ */

.cost {
    background: url('../img/sc13_bg.png') center center / cover no-repeat;
    padding: 120px 0;
}
.cost_title h2 {
    text-align: center;
    font-family: 'GH';
    font-size: 50px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: -1px;
    margin-bottom: 24px;
}
.cost_title p {
    text-align: center;
    font-size: 20px;
    line-height: 150%;
    letter-spacing: -0.4px;
    font-family: 'Pretendard';
    width: calc(100% - 80px);
    margin: 0 auto 36px;
}

.cost table {
    width: 100%;
    border-collapse: collapse;
}
.cost table th {
    font-family: 'Pretendard';
    font-size: 25px;
    font-weight: 700;
    text-align: left;
    padding-left: 20px;
    padding-top: 28px;
    padding-bottom: 28px;
}
.cost table tr .price {
    font-family: 'Pretendard';
    font-size: 25px;
    font-weight: 700;
    text-align: right;
    padding-right: 20px !important;
}
.cost table td {
    font-family: 'Pretendard';
    font-size: 16px;
    font-weight: 500;
    text-align: left;
    padding: 28px 20px;
}
.cost table th,
.cost table td {
    border-bottom: 1px solid #666;
}

/* ------------------------------
    컨택
------------------------------ */

.contact {
    background-color: #01492d;
}

.contact_wrap {
    text-align: center;
}
.contact_wrap img {
    width: 197px;
    display: inline-block;
}
.contact_wrap h1 {
    font-size: 70px;
    font-family: 'GH';
    font-weight: 700;
    color: #fff;
    /* margin: 10px 20px 0 0; */
    margin-top: 10px;
    line-height: 150%; /* 105px */
    letter-spacing: -1.4px;
}
.contact_wrap a {
    font-size: 70px;
    font-family: 'GH';
    font-weight: 700;
    color: #f6bd00;
    /* margin: 10px 20px 0 0; */
    margin-top: 10px;
    line-height: 150%; /* 105px */
    letter-spacing: -1.4px;
    cursor: pointer;
}
.contact_wrap p {
    font-family: 'Pretendard';
    font-size: 20px;
    color: #fff;
    font-weight: 400;
    line-height: 150%; /* 30px */
    letter-spacing: -0.4px;
    margin-top: 20px;
}

/* ------------------------------
    기사섹션
------------------------------ */
.dn_press {
    background:#D9D9D9; 
}
.press_title { 
    font-family: GH;
    font-size: 50px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: -1px;
    text-align: center;
    padding-bottom: 80px;
}

.press_card { 
    display:block; 
    overflow:hidden; 
    transition:.2s; 
}

.press_thumb { 
    position:relative; 
    padding-top:75%; 
    overflow:hidden; 
}
.press_thumb img { 
    position:absolute; 
    inset:0; 
    width:100%; 
    height:100%; 
    object-fit:cover; 
    object-position: top center;
    transition:.35s; 
}
.press_card:hover .press_thumb img { 
    transform:scale(1.04); 
}

.press_body {
    padding-top: 15px;
}
.press_title_sm {
    font-size:18px;
    font-weight: 700;
    line-height:1.5;
    color:#222;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
    min-height:auto;
}
.press_meta { 
    margin-top:8px; 
    font-size:12px; 
    color:#666666; 
}
.press_swiper { 
    position:relative; 
}


/******* 반응형 ******/

@media (max-width: 1920px) {
    .dn_menu3 .inner_box .text_box {
        margin-left: 13.43vw;
    }
    .dn_menu3 .inner_box {
        height: auto;
    }
}
@media (max-width: 1500px) {
    .brand2-right {
        font-size: 32px;
    }
    .dn_menu3 .inner_box .text_box span {
        font-size: 24px;
    }
    .dn_menu3 .inner_box .text_box h2 {
        font-size: 40px;
    }
}
@media (max-width: 1200px) {

    /* 메인비주얼 */
    .video_banner .hero-content p {
        font-size: 24px;
    }

    
    .brand2-inner {
        flex-direction: column;
    }
    .brand2-left {
        width: 100%;
    }
    .brand2-right {
        width: 100%;
    }

    .dn_menu_list {
        gap: 20px;
    }

    .dn_menu3 .inner_box {
        flex-direction: column;
    }
    .dn_menu3 .inner_box .text_box {
        padding: 80px 15px 0;
        margin: 0 auto;
    }
    .dn_menu3 .inner_box .text_box span {
        font-size: 17px;
    }
    .dn_menu3 .img_box {
        height: 400px;
        justify-content: end;
    }
    .dn_menu3 .img_box img {
        transform: translateY(110px) scaleX(-1);
        min-width: 500px;
    }

    .dn_startup_desc br {
        display: block;
    }
    .dn_store_gallery {
        grid-template-columns: repeat(3, 1fr);
    }

    /* 줄서는 고깃집 */
    #rolling_sales_banner .rolling-track {
        animation: scroll-left2 10s linear infinite;
    }

    /* 상권 */
    .location_stamp img {
        width: 55%;
    }

    /* 가맹문의 */
    .contact_wrap img {
        width: 100px;
    }
    .contact_wrap h1 {
        font-size: 50px;
    }
    .contact_wrap a {
        font-size: 50px;
    }
    .contact_wrap p {
        font-size: 16px;
    }
}

@media (max-width: 980px) {

    /* 메인비주얼 */
    .video_banner .hero-content p {
        font-size: 16px;
    }
    .video_banner .hero-content img {
        min-width: 230px;
    }
    
    /* 큰 타이틀 */
    .dn_menu1 .textbox .dn_color_red {
        font-size: 24px;
    }
    .meat-banner-text .slogan,
    .dn_startup_title,
    .dn_menu1 .textbox,
    .dn_menu_title,
    .sales_title h2,
    .versus_title h2,
    .interior h2,
    .location_title h2,
    #dn_store-locator h3,
    .cost_title h2 {
        font-size: 40px;
    }

    .dn_store-wrapper .dn_list {
        height: auto;
    }


    .dn_menu3 .inner_box .text_box h2 {
        font-size: 30px;
    }

    /* 지도 */
    #dn_map {
        height: 50vh;
    }
    /* 매장 목록 오버레이 */
    .dn_store-list-overlay {
        position: unset;
        width: 100%;
        border: none;
    }
    /* 매장 목록 스타일 */
    #dn_store-items {
        max-height: 40vh;
    }
    .store-list-collapsible.active,
    #dn_store-items {
        max-height: 40vh; /* 매장 목록 높이 */
    }
}
@media (max-width: 768px) {
    /* sc2 */
    /* #dn_brand,
    .location {
        padding: 80px 0;
    } */
    .meat-banner-text .slogan {
        font-size: 24px;
    }
    .meat-banner-text .desc {
        font-size: 15px;
    }
    #dn_brand .meat-circle-wrap {
        height: 75vw;
    }
    #dn_brand .meat-circle-wrap > img {
        width: calc(100% - 50px);
    }
    .location_title,
    .dn_menu1 .textbox .wrap,
    .dn_menu3 .inner_box,
    .sales_title,
    .cost_title p,
    .interior_title {
        width: calc(100% - 30px);
    }
    .dn_menu3 {
        padding: 15px 0;
    }

    #rolling_meat_banner .rolling-track {
        animation: scroll-left 10s linear infinite;
    }
    #rolling_meat_banner .rolling-list img {
        width: 180px;
    }


    .brand2-right {
        font-size: 22px;
        height: 60vh;
    }

    /* 큰 타이틀 */
    .dn_menu1 .textbox .dn_color_red {
        font-size: 18px;
    }
    .meat-banner-text .slogan,
    .dn_startup_title,
    .dn_menu1 .textbox,
    .dn_menu_title,
    .sales_title h2,
    .versus_title h2,
    .interior h2,
    .location_title h2,
    #dn_store-locator h3,
    .cost_title h2,
    .press_title {
        font-size: 28px;
    }

    .press_title {
        padding-bottom: 40px;
    }

    /* 큰 타이틀 설명 24 */
    /* .dn_startup_desc,
    .dn_menu_desc {
        font-size: 17px;
    } */
    /* 큰 타이틀 설명 20 */
    .dn_startup_desc,
    .dn_menu1 .textbox p,
    .dn_menu_desc,
    .dn_menu3 .inner_box .text_box p,
    .sales_title p,
    .versus_title p,
    .interior p,
    .location_title p,
    #dn_store-locator .dn_store-wrapper > p,
    .cost_title p,
    .dn_startup_section .dn_store_overlay,
    .dn_store_slider .dn_store_overlay,
    .press_title_sm {
        font-size: 16px;
    }

    /* 메뉴 섹션 */
    .dn_menu1 {
        height: 80vh;
    }
    .dn_menu1 .textbox {
        height: 250px;
    }
    .dn_menu_tab_btn {
        font-size: 13px;
    }
    .dn_menu_list {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        row-gap: 20px;
        transform: translateX(8px);
    }

    .dn_menu3 .img_box {
        min-height: 270px;
        height: 55vw;
    }
    .dn_menu3 .img_box img {
        width: 60vw;
        min-width: 330px;
        transform: translateY(60px) scaleX(-1);
    }

    /* 줄서는 고깃집 */
    /* .sales_title .sales_desc {
        margin-bottom: 50px;
    } */
    #rolling_sales_banner .rolling-list img {
        width: 230px;
    }
    #rolling_sales_banner .rolling-track {
        animation: scroll-left2 5s linear infinite;
    }

    /* vs섹션 */
    .versus_title h2 {
        font-size: 36px;
        margin-bottom: 20px;
    }
    .versus_title p {
        margin-bottom: 80px;
    }
    .versus .img_box {
        display: flex;
        flex-direction: column;
        align-items: center;
        row-gap: 20px;
        width: calc(100% - 30px);
    }
    .versus .img_box .img_L {
        width: 80%;
        align-self: center;
    }
    .versus .img_box .img_R {
        width: 100%;
    }
    .versus .img_box .img_vs {
        position: absolute;
        min-width: 80px;
        top: 43%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    .versus .img_box .img_tag {
        position: absolute;
        min-width: 80px;
        top: 45%;
        right: -5vw;
        transform: translateY(-50%);
    }


    /* 상권 */
    .location_stamp {
        top: -90px;
    }
    .location_stamp img {
        width: 70%;
    }

    /* 가맹비용 */
    .cost table th {
        font-size: 18px;
    }
    .cost table td {
        font-size: 15px;
    }
    .cost table tr .price {
        font-size: 16px;
    }
}
@media (max-width: 500px) {
    /* 메인비주얼 */
    .video_banner .hero-content p {
        font-size: 14px;
    }
    .dn_mainSwiper .swiper-button-next:after, 
    .dn_mainSwiper .swiper-button-prev:after {
        font-size: 25px;
    }

    /* 큰 타이틀 */
    .dn_menu1 .textbox .dn_color_red {
        font-size: 18px;
    }
    /* .meat-banner-text .slogan,
    .dn_startup_title,
    .dn_menu1 .textbox,
    .dn_menu_title,
    .sales_title h2,
    .versus_title h2,
    .interior h2,
    .location_title h2,
    #dn_store-locator h3,
    .cost_title h2 {
        font-size: 20px;
    } */

    .dn_menu3 .inner_box .text_box span {
        font-size: 15px;
        padding: 10px;
    }


    .brand2-left {
        height: 70vh;
    }

    .dn_store_gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .sales_title .sales_desc {
        font-size: 18px;
    }


    /* vs섹션 */
    .versus_title h2 {
        font-size: 26px;
        margin-bottom: 20px;
    }
    .versus_title p {
        font-size: 15px;
        margin-bottom: 60px;
    }

    .interior_slide_wrap .swiper-slide img {
        margin-top: 200px;
    }

    /* 상권 */
    .location_stamp img {
        width: 45%;
    }
    .dn_store_slider {
        max-width: auto;
        width: 100%;
    }

    /* 가맹비용 */
    .cost table th {
        font-size: 16px;
        padding-left: 10px;
        padding-top: 15px;
        padding-bottom: 15px;
    }
    .cost table tr .price {
        padding-right: 10px !important;
    }
    .cost table td {
        padding: 15px 10px;
    }

    /* 가맹문의 */
    .contact_wrap img {
        width: 70px;
    }
    .contact_wrap h1 {
        font-size: 38px;
    }
    .contact_wrap a {
        font-size: 38px;
    }
    .contact_wrap p {
        font-size: 15px;
    }
}

@media (max-width: 390px) {
    .mobile_s {
        display: block;
    }
    .dn_mobile.mobile_s {
        display: none;
    }
    .dn_store_gallery {
        gap: 10px;
    }
    .dn_menu_list {
        gap: 0;
        row-gap: 20px;
    }
    .location_stamp img {
        width: 38%;
    }
}
/* 아주 작은 모바일 기기 */
@media (max-width: 330px) {
    /* .dn_page-content .dn_mobile {
        display: none;
    } */
    .dn_brand1 .dn_mobile,
    .cost_title .dn_mobile {
        display: none;
    }
    .dn_menu1 .textbox {
        height: 330px;
    }
    .dn_menu3 .img_box img {
        min-width: 280px;
    }
    .cost table td {
        font-size: 14px;
    }
}