/* ==============================
    메인비주얼
============================== */

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

#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%;
  height: 100%;
  object-fit: cover;
}
.video_banner {
  overflow: hidden;
  position: relative;
}
.video_banner .main_video {
  transform: scale(1.22);
  pointer-events: none;
}
.video_banner .video_cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 2;
  pointer-events: none;
  transition: opacity 0.6s;
  /* opacity: 0; */
}
.video_banner .video_cover.hidden {
  opacity: 0;
}
.video_banner .hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  text-align: center;
  color: white;
}
.video_banner .hero-content p {
  font-size: 40px;
  font-weight: 400;
  font-family: "Museum";
  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: 1100px) {
  #dn_main-visual {
    margin-top: 59px;
  }
}

@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;
  }
  .video_banner .main_video {
    transform: scale(2.1);
  }
}

/* ==============================
    2,200원 균일가 섹션
============================== */
#dn_con1.price {
  /* background: url("../img/interior1.png") center / cover no-repeat;
  background-color: var(--color-deep-brown); */
  position: relative;
  background:
    linear-gradient(rgba(36, 25, 15, 0.86), rgba(36, 25, 15, 0.86)),
    url("../img/interior1.png") center / cover no-repeat;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  height: auto;
  padding: clamp(100px, 15vw, 300px) 40px;
}

/* 세로_흘러가는 초밥 */
/* 레일 세트 (2열) */
.price_rail_set {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  gap: 10px;
  align-self: auto;
  height: 100%;
  overflow: hidden;
  flex-shrink: 0;
  pointer-events: none;
}

#dn_con1.price > .price_rail_set:first-of-type {
  left: clamp(-46px, 2vw, 62px);
}

#dn_con1.price > .price_content + .price_rail_set {
  right: clamp(-46px, 2vw, 62px);
}

/* 단일 레일 열 */
.price_rail {
  width: 200px;
  height: 100%;
  overflow: hidden;
}

.price_rail_track {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 0;
}

.price_rail_item {
  width: 180px;
  height: auto;
  overflow: hidden;
  margin: 0 auto;
  flex-shrink: 0;
}

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

@keyframes rail-scroll-down {
  from {
    transform: translateY(-50%);
  }
  to {
    transform: translateY(0%);
  }
}

@keyframes rail-scroll-up {
  from {
    transform: translateY(0%);
  }
  to {
    transform: translateY(-50%);
  }
}

.price_rail--down .price_rail_track {
  animation: rail-scroll-down 30s linear infinite;
}

.price_rail--up .price_rail_track {
  animation: rail-scroll-up 30s linear infinite;
}

/* 가로_흘러가는 초밥 */

.price_rail_set2 {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0px;
  display: none;
}

.price_rail2 {
  width: 100%;
  /* height: 160px; */
  overflow: hidden;
}

.price_rail_track2 {
  display: flex;
  flex-direction: row;
  gap: 40px;
  padding: 30px 0;
  width: max-content;
}

.price_rail_item2 {
  width: 180px;
  height: auto;
  display: flex;
  align-items: center;
  overflow: hidden;
  flex-shrink: 0;
}

.price_rail_item2 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* 왼쪽 이동 */
@keyframes rail-scroll-left2 {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-50%);
  }
}

/* 오른쪽 이동 */
@keyframes rail-scroll-right2 {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0%);
  }
}

.price_rail2--left .price_rail_track2 {
  animation: rail-scroll-left2 18s linear infinite;
}

.price_rail2--right .price_rail_track2 {
  animation: rail-scroll-right2 18s linear infinite;
}
/* 중앙 텍스트 */
.price_content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  flex: 0 1 auto;
  max-width: 920px;
  width: min(920px, 100%);
}

.price_heading {
  font-family: "Pretendard", sans-serif;
  font-size: clamp(32px, 2.65vw, 50px);
  font-weight: 700;
  background: var(--gradient-gold1);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 22px;
  line-height: 1.3;
}

.price_price_row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  margin-bottom: 18px;
  white-space: nowrap;
}

.price_uniform {
  font-family: "Museum", sans-serif;
  font-size: clamp(72px, 6.1vw, 118px);
  font-weight: 400;
  color: #fff;
  line-height: 1.05;
}

.price_amount {
  position: relative;
  display: inline-block;
  font-family: "Museum", sans-serif;
  font-size: clamp(100px, 7.9vw, 152px);
  font-weight: 700;
  color: transparent;
  line-height: 1.25;
  letter-spacing: -7px;
}

.price_amount::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  background: var(--gradient-gold3);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: price-gold-blink 1s ease-in-out infinite;
  letter-spacing: -7px;
}

@keyframes price-gold-blink {
  0%,
  100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}

.price_slogan {
  font-family: "Museum", sans-serif;
  font-size: clamp(42px, 3.65vw, 70px);
  font-weight: 300;
  color: #fff;
  line-height: 1.35;
}

.price_sub {
  font-family: "Pretendard", sans-serif;
  font-size: clamp(20px, 1.65vw, 32px);
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
  /* padding-top: 50px; */
  padding-top: clamp(34px, 4vw, 76px);
}

/* ==============================
   price 섹션 반응형
============================== */

@media (max-width: 1580px) {
  /* #dn_con1.price {
    padding: 150px 40px;
  } */
  .price_heading {
    margin-bottom: 20px;
  }
  .price_slogan {
    margin-bottom: 14px;
  }
  /* .price_sub {
    font-size: 24px;
  } */
}

/* 중간 폭에서는 글자 크기와 간격만 줄임 */
@media (max-width: 1600px) {
  /* #dn_con1.price {
    padding: 130px 30px;
  } */

  .price_heading {
    font-size: clamp(26px, 2.2vw, 40px);
  }

  .price_amount {
    font-size: clamp(68px, 7vw, 112px);
    letter-spacing: -5px;
  }

  .price_amount::after {
    letter-spacing: -5px;
  }

  .price_uniform {
    font-size: clamp(48px, 5vw, 82px);
  }

  .price_slogan {
    font-size: clamp(30px, 3.1vw, 52px);
  }

  .price_sub {
    font-size: clamp(18px, 1.45vw, 24px);
  }
}

/* 레일 세트당 1열만 남김 */
@media (max-width: 1200px) {
  /* #dn_con1.price {
    padding: 100px 30px;
  } */

  .price_rail_set .rail_tablet {
    display: none;
  }

  #dn_con1.price > .price_rail_set:first-of-type {
    left: clamp(-46px, 4vw, 62px);
  }

  #dn_con1.price > .price_content + .price_rail_set {
    right: clamp(-46px, 4vw, 62px);
  }
}

/* 레일 위아래 배치 */
@media (max-width: 768px) {
  #dn_con1.price {
    flex-direction: column;
    padding: 10px 0;
    gap: 16px;
  }

  .price_rail_set {
    display: none;
  }

  .price_rail_set2 {
    display: block;
  }

  .price_content {
    max-width: 100%;
    padding: 0 20px;
  }

  .price_price_row {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .price_heading {
    font-size: 28px;
    margin-bottom: 16px;
  }
  .price_uniform {
    font-size: 60px;
  }
  .price_amount {
    font-size: 76px;
  }
  .price_slogan {
    font-size: 40px;
    margin-bottom: 10px;
  }
  .price_sub {
    font-size: 18px;
  }
}

/* ~480px: 모바일 최소화 */
@media (max-width: 480px) {
  #dn_con1.price {
    gap: 8px;
  }
  .price_rail {
    width: 90px;
  }
  .price_rail_item {
    width: 76px;
    height: 76px;
  }
  .price_heading {
    font-size: 20px;
    margin-bottom: 16px;
  }
  .price_rail_track2 {
    padding: 20px 0;
    gap: 20px;
  }

  .price_uniform {
    font-size: 32px;
  }
  .price_amount {
    font-size: 50px;
  }
  .price_slogan {
    font-size: 26px;
  }
  .price_sub {
    font-size: 14px;
  }

  .price_rail_item2 {
    width: 150px;
  }
}

/* ==============================
    매출 섹션
============================== */
#dn_con2.sales {
  position: relative;
  min-height: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  background:
    radial-gradient(
      circle at 50% -12%,
      rgba(255, 242, 211, 0.2),
      transparent 38%
    ),
    var(--color-deep-brown);
  color: #fff;
  text-align: center;
  padding: 150px 0 300px;
}

.sales_light {
  position: absolute;
  top: -360px;
  left: 50%;
  width: min(1280px, 105vw);
  max-width: none;
  transform: translateX(-50%);
  pointer-events: none;
  mix-blend-mode: screen;
  animation: sales-light-flicker 2.1s ease-in-out infinite;
}

@keyframes sales-light-flicker {
  0%,
  100% {
    opacity: 0.58;
    filter: blur(0px) brightness(1);
  }
  24% {
    opacity: 0.92;
    filter: blur(1px) brightness(1.75);
  }
  38% {
    opacity: 0.66;
    filter: blur(0px) brightness(1.12);
  }
  58% {
    opacity: 1;
    filter: blur(1.4px) brightness(2.05);
  }
  76% {
    opacity: 0.7;
    filter: blur(0.4px) brightness(1.2);
  }
}

.sales_inner {
  position: relative;
  z-index: 2;
  width: 100%;
}

.sales_eyebrow {
  /* font-size: clamp(28px, 2.2vw, 40px);
  font-weight: 400;
  line-height: 1.3;*/
  letter-spacing: -2.4px;
  color: #fff;
}
.sales_eyebrow br {
  display: none;
}

.sales_headline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  color: #fff;
  /* font-size: clamp(58px, 4.2vw, 80px); */
  font-weight: 400;
  line-height: 1;
  letter-spacing: -4.8px;
  white-space: nowrap;
  padding: 40px 0;
}

.sales_badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(150px, 10vw, 250px);
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
}

.sales_sushimg_wrap {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.sales_sushi_clip {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
  clip-path: none;
  z-index: 1;
}

.sales_sushi {
  position: absolute;
  bottom: 10%;
  left: 50%;
  width: 95%;
  z-index: 1;
  opacity: 0;
  transform: translateX(-50%) rotate(-14deg) scale(0.92);
  transform-origin: 50% 62%;
  filter: drop-shadow(0 6px 8px rgba(0, 0, 0, 0.28));
  animation: sales-sushi-rotate 3.6s ease-in-out infinite;
}

.sales_sushi:nth-child(2) {
  animation-delay: 1.2s;
}

.sales_sushi:nth-child(3) {
  animation-delay: 2.4s;
}

.sales_dish {
  position: absolute;
  left: 50%;
  bottom: 7%;
  width: 100%;
  z-index: 2;
  max-width: none;
  transform: translateX(-50%);
  filter: drop-shadow(0 7px 10px rgba(0, 0, 0, 0.22));
}

@keyframes sales-sushi-rotate {
  0% {
    opacity: 0;
    transform: translateX(-50%) rotate(-14deg) scale(0.92);
  }
  12%,
  30% {
    opacity: 1;
    transform: translateX(-50%) rotate(0deg) scale(1);
  }
  42%,
  100% {
    opacity: 0;
    transform: translateX(-50%) rotate(14deg) scale(0.96);
  }
}

.sales_count {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.05em;
  max-width: 100%;
  white-space: nowrap;
  font-family: "Museum", sans-serif;
  font-size: clamp(60px, 7.3vw, 140px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -6px;
  color: #fff;
  text-shadow:
    0 0 10px rgba(255, 223, 139, 0.75),
    0 0 24px rgba(255, 213, 99, 0.58),
    0 0 42px rgba(255, 198, 56, 0.38);
  padding-bottom: 70px;
}

.sales_count span:first-child {
  font-family: "Pretendard", sans-serif;
  font-size: 0.64em;
  font-weight: 600;
  letter-spacing: -1.8px;
  margin-right: 0.04em;
}

.sales_count span:last-child {
  font-size: clamp(60px, 7vw, 130px);
  margin-left: 0.02em;
}

.sales_rail {
  position: absolute;
  z-index: 3;
  left: 0;
  bottom: 0;
  width: 100%;
  overflow: hidden;
}

.sales_rail_track {
  display: flex;
  width: max-content;
  animation: sales-rail-flow 60s linear infinite;
  /* width: 1008px; */
  padding-bottom: 30px;
}

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

@keyframes sales-rail-flow {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

@media (max-width: 1200px) {
  #dn_con2.sales {
    padding: 120px 0 250px;
  }

  .sales_light {
    top: -320px;
  }

  .sales_headline {
    gap: 24px;
    letter-spacing: -3px;
  }

  .sales_rail_track img {
    width: 80%;
  }
}

@media (max-width: 768px) {
  #dn_con2.sales {
    padding: 82px 0 190px;
  }

  .sales_light {
    top: -210px;
    width: 112vw;
  }

  .sales_eyebrow {
    letter-spacing: -1px;
  }

  .sales_badge {
    order: 2;
    width: clamp(260px, 65vw, 480px);
  }

  .sales_headline {
    flex-direction: column;
    gap: clamp(30px, 5vw, 40px);
  }
  .sales_headline span:last-child {
    order: 3;
  }

  .sales_sushimg_wrap {
    transform: translateY(3vw);
  }

  .sales_count {
    letter-spacing: -4px;
    font-size: clamp(42px, 10vw, 76px);
  }

  .sales_count span:last-child {
    font-size: 0.92em;
  }

  .sales_rail_track img {
    width: 25%;
  }
}

@media (max-width: 480px) {
  #dn_con2.sales {
    padding: 66px 0 150px;
  }

  .sales_eyebrow br {
    display: block;
  }

  .sales_sushimg_wrap {
    transform: translateY(4vw);
  }

  .sales_count {
    font-size: clamp(34px, 11vw, 48px);
    letter-spacing: -2px;
  }

  .sales_count span:first-child {
    letter-spacing: -1px;
    margin-right: 0;
  }

  .sales_count span:last-child {
    font-size: 0.9em;
    margin-left: 0;
  }

  .sales_rail_track img {
    height: 160px;
    width: auto;
  }
  .sales_headline {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 50px 0;
  }
}

/* =========================
  롤링 텍스트 섹션
========================= */

.section--rolling {
  width: 100%;
  overflow: hidden;
  background: #fff;
  padding: 10px 0;
  border-top: 1px solid var(--main-black);
  border-bottom: 1px solid var(--main-black);
}

.rolling {
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
  border-top: 1px solid var(--main-black);
  border-bottom: 1px solid var(--main-black);
}

.rolling__track {
  display: flex;
  width: max-content;
  gap: 30px;
  white-space: nowrap;

  animation: rolling 20s linear infinite;
}

.rolling__track span {
  font-family: "Museum", sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--main-black);
}

/* 애니메이션 */
@keyframes rolling {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .section--rolling {
    padding: 6px 0;
  }

  .rolling {
    padding: 12px 0;
  }

  .rolling__track {
    gap: 20px;
  }

  .rolling__track span {
    font-size: 16px;
  }
}

/* =========================
  시그니처 섹션
========================= */

.section--signature {
  position: relative;
  overflow: hidden;
  background: var(--color-deep-brown);
}

/* 좌/우 세로 텍스트 박스 */
.signature__side-title {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 180px;
  background: #fff;
  border-left: 3px solid var(--color-deep-brown);
  border-right: 3px solid var(--color-deep-brown);
  box-shadow:
    /* 1번째 라인 */
    inset 8px 0 0 #fff,
    inset 10px 0 0 var(--color-deep-brown),
    /* 2번째 라인 */ inset 18px 0 0 #fff,
    inset 19px 0 0 var(--color-deep-brown),
    /* 오른쪽도 동일 */ inset -8px 0 0 #fff,
    inset -10px 0 0 var(--color-deep-brown),
    inset -18px 0 0 #fff,
    inset -19px 0 0 var(--color-deep-brown);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
}

.signature__side-title--left {
  left: 70px;
}

.signature__side-title--right {
  right: 70px;
}

.signature__side-title span {
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-family: "Museum", sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.06em;
  color: var(--color-deep-brown);
}

.signature__plate {
  position: absolute;
  z-index: 10;
  width: clamp(260px, 28vw, 520px);
  pointer-events: none;
  transition: transform 0.4s ease;
}

.signature__plate--top {
  top: 110px;
  left: 180px;
}

.signature__plate--bottom {
  bottom: 110px;
  right: 180px;
}

.section--signature:has(.signature--top:hover) .signature__plate--top,
.section--signature:has(.signature--bottom:hover) .signature__plate--bottom {
  transform: translateY(-6px) scale(1.05);
}

.signature__content-wrap {
  position: relative;
  z-index: 2;
}

.signature {
  position: relative;
  height: 520px;
  overflow: hidden;
}

.signature__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  transition:
    transform 0.6s ease,
    filter 0.6s ease;
}

.signature--top .signature__bg {
  background: url("../img/signature1_bg.png") center center / cover no-repeat;
}

.signature--bottom .signature__bg {
  background: url("../img/signature2_bg.png") center center / cover no-repeat;
}

.signature::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(36, 25, 15, 0.95);
  z-index: 1;
  transition: background 0.4s ease;
}

.signature:hover::before {
  background: rgba(36, 25, 15, 0.3);
}

.signature:hover .signature__bg {
  transform: scale(1.05);
  filter: brightness(1.1);
}

/* 대각선 */
.signature--top {
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
  z-index: 2;
}

.signature--bottom {
  margin-top: -80px;
  z-index: 1;
}

/* 텍스트 */
.signature__content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 80px 180px;
}

.signature--top .signature__content {
  padding-left: clamp(300px, 45vw, 780px);
}

.signature--bottom .signature__content {
  justify-content: end;
  padding-right: clamp(300px, 45vw, 780px);
}

.signature__text {
  position: relative;
  z-index: 3;
  color: #fff;
  text-align: Start;
}
.signature--bottom .signature__text {
  text-align: end;
}

.signature__title {
  font-family: "Museum", sans-serif;
  font-size: clamp(28px, 3vw, 60px);
  font-weight: 700;
  margin-bottom: 16px;
}

.signature__desc {
  font-size: clamp(14px, 1.3vw, 24px);
  font-weight: 400;
}

/* ===== 시그니처 반응형 ===== */

@media (max-width: 1280px) {
  .signature__side-title {
    width: 140px;
  }

  .signature__side-title--left {
    left: 40px;
  }

  .signature__side-title--right {
    right: 40px;
  }

  .signature__side-title span {
    font-size: 32px;
  }

  .signature__plate--top {
    left: 120px;
  }

  .signature__plate--bottom {
    right: 120px;
  }

  .signature__content {
    padding: 80px 120px;
  }
}

@media (max-width: 1024px) {
  .signature {
    height: 480px;
  }

  .signature__side-title {
    width: 100px;
  }

  .signature__side-title--left {
    left: 20px;
  }

  .signature__side-title--right {
    right: 20px;
  }

  .signature__side-title span {
    font-size: 22px;
  }

  .signature__plate--top {
    top: 100px;
    left: 60px;
  }

  .signature__plate--bottom {
    bottom: 80px;
    right: 60px;
  }

  .signature__content {
    padding: 60px 80px;
  }
}

@media (max-width: 768px) {
  .section--signature {
    overflow: hidden;
  }

  .signature {
    height: 680px;
    min-height: 680px;
    clip-path: none;
  }

  .signature--bottom {
    margin-top: 0;
  }

  .signature__side-title {
    display: flex;
    top: auto;
    bottom: auto;
    width: 100px;
    height: 100%;
    z-index: 4;
  }

  .signature__side-title span {
    writing-mode: vertical-rl;
    text-orientation: upright;
    font-size: 28px;
    line-height: 1.7;
    letter-spacing: 0.06em;
  }

  .signature__side-title--left {
    top: 0;
    right: 20px;
    left: auto;
    height: 680px;
  }

  .signature__side-title--right {
    top: 680px;
    left: 20px;
    right: auto;
    height: 680px;
  }

  .signature__plate {
    width: clamp(300px, 72vw, 460px);
    z-index: 10;
    transform: none;
  }

  .signature__plate--top {
    top: 300px;
    left: 0px;
    right: auto;
  }

  .signature__plate--bottom {
    top: auto;
    bottom: 70px;
    right: 0px;
    left: auto;
  }

  .signature__content {
    min-height: 680px;
    padding: 0;
  }

  .signature--top .signature__text {
    position: absolute;
    top: 70px;
    left: 20px;
    right: 150px;
    text-align: left;
  }

  .signature--bottom .signature__text {
    position: absolute;
    top: 80px;
    left: auto;
    right: 20px;
    text-align: right;
  }

  .signature__title {
    margin-bottom: 12px;
  }

  .section--signature:has(.signature--top:hover) .signature__plate--top,
  .section--signature:has(.signature--bottom:hover) .signature__plate--bottom {
    transform: translateY(-6px) scale(1.04);
  }
}

@media (max-width: 480px) {
  .signature__plate {
    width: clamp(400px, 50vw, 500px);
  }
  .signature__plate--top {
    top: 300px;
    left: -24vw;
    right: auto;
  }

  .signature__plate--bottom {
    top: auto;
    bottom: 70px;
    right: -24vw;
    left: auto;
  }

    .signature__side-title--left {
    right: -3px;
  }

  .signature__side-title--right {
    left: -3px;
  }
}
/* @media (max-width: 380px) {
  .signature__side-title--left {
    right: -3px;
  }

  .signature__side-title--right {
    left: -3px;
  }
} */

/* =========================
  프리미엄 스시 섹션
========================= */

.section--premium {
  position: relative;
  overflow: hidden;
  background: var(--main-ivory);
  color: var(--color-deep-brown);
}

.premium__inner {
  width: 100%;
  padding: clamp(80px, 8vw, 140px) 0;
}

/* ===== 타이틀 영역 ===== */

.premium__header {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(80px, 1fr) auto minmax(80px, 1fr);
  align-items: start;
  gap: clamp(24px, 3vw, 48px);
  text-align: center;
}

.premium__heading {
  min-width: 0;
}

.premium__title {
  font-family: "Museum", sans-serif;
  font-size: clamp(34px, 4vw, 70px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-deep-brown);
  margin-bottom: 18px;
  white-space: nowrap;
}

.premium__sub {
  font-size: clamp(14px, 1.3vw, 24px);
  font-weight: 400;
  color: var(--color-deep-brown);
}

/* 타이틀 좌우 3줄 라인 */
.premium__line {
  display: block;
  height: 32px;
  margin-top: clamp(16px, 2vw, 28px);
  background-image: linear-gradient(
    to bottom,
    var(--color-deep-brown) 0,
    var(--color-deep-brown) 3px,
    transparent 3px,
    transparent 13px,
    var(--color-deep-brown) 13px,
    var(--color-deep-brown) 15px,
    transparent 15px,
    transparent 25px,
    rgba(36, 25, 15, 0.45) 25px,
    rgba(36, 25, 15, 0.45) 26px,
    transparent 26px
  );
}

/* ===== 메인 비주얼 영역 ===== */

.premium__visual {
  --premium-circle: clamp(220px, 20vw, 420px);

  position: relative;
  width: 100%;
  margin-top: clamp(60px, 6vw, 100px);
  overflow: visible;
}

.premium__track {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  padding: 30px 0;
}

.premium__item {
  width: var(--premium-circle);
  flex: 0 0 var(--premium-circle);
  display: grid;
  place-items: center;
  overflow: visible;
}

.premium__photo,
.premium__point,
.premium__center {
  width: 100%;
  aspect-ratio: 1 / 1;
}

/* ===== 좌우 음식 원 ===== */

.premium__photo {
  position: relative;
  border-radius: 50%;
  overflow: hidden;
  z-index: 1;
}

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

/* ===== 텍스트 원 ===== */

.premium__point {
  position: relative;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  background: #fff;
  border: 1px solid rgba(227, 173, 61, 0.9);
  color: var(--color-deep-brown);
  isolation: isolate;
  z-index: 2;
}

/* 퍼져나가는 원 라인 */
.premium__point::before,
.premium__point::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(227, 173, 61, 0.9);
  z-index: 1;
  animation: premiumRing 2.6s ease-out infinite;
}

.premium__point::after {
  animation-delay: 1.3s;
}

.premium__point-inner {
  position: relative;
  z-index: 2;
  padding: clamp(16px, 2vw, 34px);
}

.premium__point p {
  font-family: "Museum", sans-serif;
  font-size: clamp(18px, 1.8vw, 32px);
  font-weight: 300;
  line-height: 1.35;
  color: var(--color-deep-brown);
}

.premium__point strong {
  font-weight: 700;
}

/* ===== 중앙 새우초밥 원 ===== */

.premium__center {
  position: relative;
  display: grid;
  place-items: center;
  overflow: visible;
  z-index: 5;
}

.premium__center-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 1;
}

.premium__center-img {
  position: relative;
  z-index: 4;
  width: 120%;
  max-width: none;
  transform: translateY(-3%);
}

/* ===== 원 라인 애니메이션 ===== */

@keyframes premiumRing {
  0% {
    transform: scale(0.96);
    opacity: 0.9;
  }

  70% {
    opacity: 0.35;
  }

  100% {
    transform: scale(1.17);
    opacity: 0;
  }
}

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

@media (max-width: 1440px) {
  .premium__visual {
    --premium-circle: clamp(200px, 20vw, 320px);
  }

  .premium__point p {
    font-size: clamp(18px, 1.8vw, 28px);
  }
}

@media (max-width: 1200px) {
  .premium__visual {
    --premium-circle: clamp(170px, 20vw, 280px);
  }

  .premium__point p {
    font-size: clamp(16px, 1.8vw, 24px);
  }
}

@media (max-width: 900px) {
  .premium__inner {
    padding: 80px 0;
  }

  .premium__header {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 0 24px;
  }

  .premium__title {
    white-space: normal;
    font-size: clamp(32px, 7vw, 48px);
  }

  .premium__sub {
    font-size: 14px;
  }

  .premium__visual {
    --premium-circle: min(160px, calc((100vw - 32px) / 5));
    margin-top: 56px;
  }

  .premium__point-inner {
    padding: 10px;
  }

  .premium__point p {
    font-size: clamp(12px, 2.6vw, 20px);
    line-height: 1.3;
  }
}

/* ===== 모바일 Swiper 모드 ===== */
@media (max-width: 768px) {
  .premium__inner {
    padding: 70px 0;
  }

  .premium__visual {
    --premium-circle: auto;

    width: 100%;
    margin-top: 44px;
    overflow: hidden;

    padding: clamp(30px, 9vw, 70px) 0 !important;
  }

  .premium__track {
    justify-content: flex-start;
    align-items: center;
    gap: 0;
  }

  /*  PC용 flex-basis 초기화 */
  .premium__item {
    width: auto;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    overflow: visible;
  }

  .premium__photo,
  .premium__point,
  .premium__center {
    width: 100%;
    aspect-ratio: 1 / 1;
  }

  .premium__point-inner {
    padding: 0;
  }

  .premium__point p {
    font-size: clamp(16px, 4.6vw, 20px);
    line-height: 1.35;
  }
  .premium__visual .swiper-slide {
    transition: 0.2s;
  }
  .premium__visual .swiper-slide-active {
    z-index: 5;
    transform: scale(1.3) !important;
  }
}

@media (max-width: 360px) {
  .premium__title {
    font-size: 30px;
  }

  .premium__sub {
    font-size: 13px;
  }

  .premium__point p {
    font-size: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .premium__point::before,
  .premium__point::after {
    animation: none;
  }
}

/* ------------------------------
    라인디자인 unique
------------------------------ */

.unique {
  background-color: var(--main-ivory);
  overflow: hidden;
  padding: 150px 0;
}

.unique__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
}

.unique__row {
  display: flex;
  align-items: center;
  justify-content: center;
}

.unique__headline {
  color: var(--color-brown-text);
  text-align: center;
  cursor: default;
  will-change: clip-path, opacity;
  position: relative;
}

/* shimmer hover overlay */
.unique__headline::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--accent, #c9a96e) 50%,
    transparent 100%
  );
  background-size: 200% auto;
  background-position: 200% center;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  pointer-events: none;
}
.unique__headline.is-shimmer::after {
  animation: uniqueShimmer 1.1s cubic-bezier(0.4, 0, 0.2, 1) 1 forwards;
}

.unique__divider {
  position: relative;
  height: 2px;
  width: 100%;
}
.unique .h1 {
  font-size: clamp(40px, 4.5vw, 80px) !important;
  width: 100%;
}

.unique__divider-line {
  display: block;
  position: absolute;
  inset: 0;
  background: rgb(35, 25, 15);
  transform-origin: left;
  transform: scaleX(0);
}

.unique__tag {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) scale(0.7);
  background: #fee3af;
  border: 2px solid var(--color-brown-text);
  border-radius: 999px;
  padding: 20px clamp(20px, 4vw, 60px);
  font-family: "Museum", sans-serif;
  font-size: clamp(24px, 2.5vw, 40px);
  font-weight: 300;
  color: var(--color-brown-text);
  white-space: nowrap;
  opacity: 0;
  z-index: 2;
  cursor: default;
}

.unique__tag--left {
  left: clamp(20px, 9vw, 173px);
}
.unique__tag--right {
  right: clamp(20px, 9.7vw, 187px);
}

.unique__tag--float-lr {
  animation: uniqueFloatLR 5s ease-in-out infinite;
}
.unique__tag--float-rl {
  animation: uniqueFloatRL 4.5s ease-in-out infinite;
}

@keyframes uniqueFloatLR {
  0%,
  100% {
    transform: translateY(-50%) translateX(0);
  }
  50% {
    transform: translateY(-50%) translateX(10px);
  }
}
@keyframes uniqueFloatRL {
  0%,
  100% {
    transform: translateY(-50%) translateX(0);
  }
  50% {
    transform: translateY(-50%) translateX(-10px);
  }
}

@keyframes uniqueShimmer {
  0% {
    opacity: 0;
    background-position: 200% center;
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    background-position: -200% center;
  }
}

@media (max-width: 1024px) {
  .unique {
    padding: 100px 0;
  }
  .unique__tag {
    padding: 14px 20px;
  }
}

@media (max-width: 768px) {
  .unique {
    padding: 64px 0;
  }

  .unique__inner {
    gap: 28px;
  }
  .unique__tag {
    padding: 10px 16px;
    letter-spacing: -1px;
  }
}

@media (max-width: 768px) {
  .unique__row {
    padding: 24px 0;
  }
  .unique__tag {
    padding: 7px 14px;
  }
}

/* =========================
  사계절 All Season
========================= */

.section--all-season {
  position: relative;
  width: 100vw;
  overflow: hidden;
  background: #2a1b10;
  color: #fff;
}

.section--all-season *,
.section--all-season *::before,
.section--all-season *::after {
  box-sizing: border-box;
}

.section--all-season .price_rail_set2 {
  display: block;
}

.section--all-season .all-season__content {
  position: relative;
  z-index: 3;
  width: 100%;
  margin: 0 auto;
  padding: clamp(40px, 4vw, 70px) 0;
  text-align: center;
}

.section--all-season .all-season__eyebrow {
  margin: 0 0 clamp(10px, 1vw, 18px);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.04em;
  color: #fff;
  font-family: "Museum", "Noto Serif KR", serif;
}

.section--all-season .all-season__title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 2vw, 30px);
  width: 100%;
}

.section--all-season .all-season__line {
  display: block;
  flex: 1 1 auto;
  height: 1px;
  background: rgba(255, 255, 255, 0.34);
}

.section--all-season .all-season__symbol {
  display: block;
  width: clamp(60px, 5vw, 120px);
  height: auto;
  flex: 0 0 auto;
  user-select: none;
  pointer-events: none;
  -webkit-user-drag: none;
}

.section--all-season .all-season__title {
  margin: 0;
  font-family: "Museum", "Noto Serif KR", serif;
  font-size: clamp(38px, 5vw, 80px);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.055em;
  white-space: nowrap;
}

.section--all-season .all-season__title-gold {
  display: inline-block;
  background: linear-gradient(90deg, #eaddb5 0%, #ffd87b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.section--all-season .all-season__title-white {
  display: inline-block;
  margin-left: 0.18em;
  color: #fff;
  -webkit-text-fill-color: #fff;
}

@media (max-width: 1024px) {
  .section--all-season {
    width: 100%;
  }

  .section--all-season .all-season__content {
    padding: 44px 0;
  }

  .section--all-season .all-season__title-row {
    gap: 10px;
  }

  .section--all-season .price_rail_item2 {
    width: clamp(72px, 11vw, 118px);
  }

  .section--all-season .price_rail2--left .price_rail_track2,
  .section--all-season .price_rail2--right .price_rail_track2 {
    padding: 20px 0;
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .section--all-season .all-season__content {
    padding: 36px 0;
  }

  .section--all-season .all-season__eyebrow {
    margin-bottom: 10px;
    font-size: 14px;
  }

  .section--all-season .all-season__title-row {
    gap: 8px;
  }

  .section--all-season .all-season__symbol {
    display: none;
  }

  .section--all-season .all-season__title {
    font-size: clamp(40px, 5.2vw, 48px);
    display: flex;
    flex-direction: column;
  }

  .section--all-season .price_rail_item2 {
    width: 68px;
  }

  .section--all-season .price_rail2--left .price_rail_track2,
  .section--all-season .price_rail2--right .price_rail_track2 {
    padding: 15px 0;
    gap: 15px;
  }
}

/* ==============================
    유튜브 섹션
============================== */

#dn_con7.youtube {
  background-color: var(--main-ivory);
  padding: clamp(80px, 8vw, 150px) 0;
}

.youtube_header {
  text-align: center;
  padding-bottom: clamp(40px, 4vw, 72px);
}

.h3 {
  padding-bottom: 20px;
}

.youtube_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: clamp(32px, 3vw, 60px);
}

.youtube_item {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 8px;
  background-color: #000;
}

.youtube_item iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.youtube_cta {
  text-align: center;
}

.youtube_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 30px;
  font-family: "Museum", sans-serif;
  font-size: clamp(16px, 1.5vw, 24px);
  font-weight: 500;
  letter-spacing: -1.44px;
  color: var(--main-black);
  background-color: #fff;
  border: 1px solid var(--color-deep-brown);
  border-radius: 999px;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.2s ease,
    color 0.2s ease;
}

.youtube_btn:hover {
  background-color: var(--color-deep-brown);
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

@media (max-width: 1024px) {
  .youtube_grid {
    gap: 14px;
  }
}

@media (max-width: 768px) {
  .youtube_grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .youtube_grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .youtube_item:nth-child(n + 4) {
    display: none;
  }
}

/* ==============================
  주변에 회전초밥 : 블루오션
============================== */

.section--near {
  --near-bar-width: clamp(86px, 6.45vw, 122px);
  --near-gold: #f4d98c;
  --near-gold-text: #111;
  --near-duration: 0.72s;
  --near-ease: cubic-bezier(0.22, 1, 0.36, 1);

  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  background: #fff;
}

.section--near *,
.section--near *::before,
.section--near *::after {
  box-sizing: border-box;
}

/* PC */
.section--near {
  --near-bar-width: clamp(86px, 6.45vw, 122px);
  --near-pc-panel-height: calc(
    (100vw - (var(--near-bar-width) * 4)) * 0.5994358
  );
}

.section--near .near__track {
  display: flex;
  width: 100%;
  height: max(420px, var(--near-pc-panel-height));
  overflow: hidden;
  background: #fff;
}

/* 닫힌 상태 */
.section--near .near__item {
  position: relative;
  display: flex;
  flex: 0 0 var(--near-bar-width);
  min-width: var(--near-bar-width);
  height: 100%;
  overflow: hidden;
  transition: flex-basis var(--near-duration) var(--near-ease);
  will-change: flex-basis;
}

/* 열린 상태 */
.section--near .near__item.is-active {
  flex-basis: calc(
    100% - var(--near-bar-width) - var(--near-bar-width) - var(--near-bar-width)
  );
}

/* 바 */
.section--near .near__bar {
  position: relative;
  z-index: 5;
  flex: 0 0 var(--near-bar-width);
  width: var(--near-bar-width);
  height: 100%;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: var(--color-brown-text);
  color: #fff;
  font: inherit;
  cursor: pointer;
  transition:
    background 0.35s ease,
    color 0.35s ease,
    filter 0.35s ease;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.section--near .near__item--04 .near__bar {
  background: var(--near-gold);
  color: var(--main-black);
}

.section--near .near__bar span {
  position: absolute;
  bottom: 60px;
  left: 50%;
  display: block;
  white-space: nowrap;
  writing-mode: vertical-rl;
  text-orientation: mixed;

  transform: translateX(-50%);

  font-family: "Museum", "Noto Serif KR", serif;
  font-size: clamp(22px, 1.7vw, 34px);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.04em;
}

.section--near .near__item.is-active .near__bar {
  filter: brightness(1.04);
}

.section--near .near__bar:focus-visible {
  outline: 3px solid rgba(211, 159, 64, 0.9);
  outline-offset: -6px;
}

/* 이미지 */
.section--near .near__content {
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
  height: 100%;
  overflow: hidden;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-16px);
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease,
    transform 0.45s ease;
}

.section--near .near__item.is-active .near__content {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition-delay: 0.12s;
}

.section--near .near__content {
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
  height: 100%;
  overflow: hidden;
  background: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  visibility: hidden;
  clip-path: inset(0 100% 0 0);

  transition:
    clip-path var(--near-duration) var(--near-ease),
    opacity 0.28s ease,
    visibility 0.28s ease;
  will-change: clip-path;
}

.section--near .near__item.is-active .near__content {
  opacity: 1;
  visibility: visible;
  clip-path: inset(0 0 0 0);
  transition-delay: 0.05s;
}

/* PC 이미지 비율 고정 */
.section--near .near__content picture {
  display: block;
  width: 100%;
  aspect-ratio: 1418 / 850;
  height: auto;
  overflow: hidden;
}

.section--near .near__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  user-select: none;
  pointer-events: none;
  -webkit-user-drag: none;
}

/* 반응형*/
@media (max-width: 1024px) {
  .section--near {
    width: 100%;
    margin-left: 0;

    --near-mobile-bar-height: 68px;
    --near-mobile-panel-height: 110.677083vw;
  }

  .section--near .near__track {
    display: grid;
    grid-template-columns: 1fr;
    height: calc(
      (var(--near-mobile-bar-height) * 4) + var(--near-mobile-panel-height)
    );
    overflow: hidden;
    background: #fff;
    transition: grid-template-rows 0.65s var(--near-ease);
  }

  .section--near[data-active="1"] .near__track {
    grid-template-rows:
      var(--near-mobile-bar-height)
      var(--near-mobile-panel-height)
      var(--near-mobile-bar-height)
      0px
      var(--near-mobile-bar-height)
      0px
      var(--near-mobile-bar-height)
      0px;
  }

  .section--near[data-active="2"] .near__track {
    grid-template-rows:
      var(--near-mobile-bar-height)
      0px
      var(--near-mobile-bar-height)
      var(--near-mobile-panel-height)
      var(--near-mobile-bar-height)
      0px
      var(--near-mobile-bar-height)
      0px;
  }

  .section--near[data-active="3"] .near__track {
    grid-template-rows:
      var(--near-mobile-bar-height)
      0px
      var(--near-mobile-bar-height)
      0px
      var(--near-mobile-bar-height)
      var(--near-mobile-panel-height)
      var(--near-mobile-bar-height)
      0px;
  }

  .section--near[data-active="4"] .near__track {
    grid-template-rows:
      var(--near-mobile-bar-height)
      0px
      var(--near-mobile-bar-height)
      0px
      var(--near-mobile-bar-height)
      0px
      var(--near-mobile-bar-height)
      var(--near-mobile-panel-height);
  }

  .section--near .near__item,
  .section--near .near__item.is-active {
    display: contents;
  }

  .section--near .near__bar {
    position: relative;
    z-index: 5;
    width: 100%;
    height: 100%;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .section--near .near__bar span {
    position: static;
    transform: none;
    writing-mode: horizontal-tb;
    text-orientation: initial;
    white-space: normal;
    text-align: center;
    font-size: clamp(18px, 4.5vw, 26px);
  }

  .section--near .near__content {
    position: relative;
    display: block;
    min-height: 0;
    height: auto;
    max-height: none;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    transform: none;
    clip-path: none;
    background: #fff;
    transition: none;
  }

  .section--near .near__content picture {
    display: block;
    width: 100%;
    aspect-ratio: 768 / 850;
    height: auto;
    min-height: 0;
    overflow: hidden;
  }

  .section--near .near__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    user-select: none;
    pointer-events: none;
    -webkit-user-drag: none;
  }
}

@media (max-width: 480px) {
  .section--near {
    --near-mobile-bar-height: 60px;
  }

  .section--near .near__bar {
    padding: 0 18px;
  }

  .section--near .near__bar span {
    font-size: 17px;
  }
}

/* ==============================
  VS 비교 섹션
============================== */

.section--compare {
  --compare-gold: #edbd4a;
  --compare-gold-deep: #d7a337;
  --compare-cream: #f5eee3;

  position: relative;
  width: 100vw;
  overflow: hidden;
  background: var(--main-black);
  color: #fff;
}

.section--compare *,
.section--compare *::before,
.section--compare *::after {
  box-sizing: border-box;
}

.section--compare .compare__inner {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: clamp(520px, 50vw, 960px);
}

.section--compare .compare__panel {
  position: relative;
  min-height: clamp(520px, 50vw, 960px);
  overflow: hidden;
}

.section--compare .compare__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  pointer-events: none;
  -webkit-user-drag: none;
}

.section--compare .compare__panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

/* 좌측 딤 */
.section--compare .compare__panel--normal::after {
  background: rgba(0, 0, 0, 0.7);
}

/* 우측 딤 */
.section--compare .compare__panel--brand {
  --compare-border-size: clamp(5px, 0.5vw, 10px);

  position: relative;
  border: 0;
}
.section--compare .compare__panel--brand::after {
  background: rgba(0, 0, 0, 0.7);
}

/* 골드 테두리 */
.section--compare .compare__panel--brand::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 5;
  display: block;
  padding: var(--compare-border-size);
  pointer-events: none;
  background: var(--gradient-gold1);

  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;

  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;

  animation: compareBorderBlink 1.5s ease-in-out infinite;
}

@keyframes compareBorderBlink {
  0%,
  100% {
    opacity: 0;
    filter: saturate(0.95) drop-shadow(0 0 0 rgba(242, 195, 119, 0));
  }

  50% {
    opacity: 1;
    filter: saturate(1.25) drop-shadow(0 0 14px rgba(242, 195, 119, 0.75));
  }
}

.section--compare .compare__vs {
  position: absolute;
  top: 20.6%;
  left: 50%;
  z-index: 10;
  transform: translate(-50%, -50%);
  font-family: "Museum", sans-serif;
  font-size: clamp(34px, 4vw, 76px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.08em;
  color: #fff;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
}

/* 뱃지 */
.section--compare .compare__badge {
  position: absolute;
  top: 15.8%;
  left: 50%;
  z-index: 3;
  min-width: clamp(220px, 22vw, 420px);
  padding: clamp(12px, 1.25vw, 28px) clamp(24px, 3vw, 58px);
  transform: translateX(-50%);
  border-radius: 999px;
  background: var(--compare-cream);
  color: #2a1a0e;
  font-family: "Museum", sans-serif;
  font-size: clamp(17px, 1.8vw, 34px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.05em;
  text-align: center;
  white-space: nowrap;
}

.section--compare .compare__badge--brand {
  min-width: clamp(250px, 24vw, 460px);
}

/* 좌측 */
.section--compare .compare__normal-stats {
  position: absolute;
  top: 56%;
  left: 50%;
  z-index: 3;
  width: min(82%, 640px);
  transform: translate(-50%, -50%);
}

.section--compare .compare__normal-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1.2vw, 24px);
  color: rgba(255, 255, 255, 0.62);
  font-size: clamp(13px, 1.25vw, 24px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.section--compare .compare__normal-row + .compare__normal-row {
  margin-top: clamp(18px, 3vw, 58px);
}

.section--compare .compare__normal-row strong {
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.78);
  font-family: "Museum", sans-serif;
  font-size: clamp(54px, 6.4vw, 122px);
  font-weight: 900;
  line-height: 0.8;
  letter-spacing: -0.05em;
}

.section--compare .compare__normal-row em {
  margin-left: 0.06em;
  font-size: 0.48em;
  font-style: normal;
  font-weight: 700;
  letter-spacing: -0.05em;
}

/* 우측 */
.section--compare .compare__brand-stats {
  position: absolute;
  top: 55%;
  left: 50%;
  z-index: 3;
  width: min(86%, 720px);
  margin: 0;
  transform: translate(-50%, -50%);
}

.section--compare .compare__brand-row {
  display: grid;
  grid-template-columns: minmax(92px, 0.78fr) auto minmax(150px, 1fr);
  align-items: center;
  gap: clamp(12px, 1.4vw, 28px);
}

.section--compare .compare__brand-row + .compare__brand-row {
  margin-top: clamp(18px, 2.5vw, 46px);
}

.section--compare .compare__brand-row dt {
  color: #fff;
  font-size: clamp(13px, 1.18vw, 23px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.05em;
  text-align: right;
  white-space: nowrap;
}

.section--compare .compare__value {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  white-space: nowrap;
  gap: 10px;
}

.section--compare .compare__value strong {
  font-family: "Museum", sans-serif;
  font-size: clamp(60px, 6.7vw, 128px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.05em;
  background: var(--gradient-gold1);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section--compare .compare__value em {
  margin-left: 0.08em;
  color: #fff;
  font-size: clamp(22px, 2vw, 38px);
  font-style: normal;
  font-weight: 600;
  letter-spacing: -0.06em;
}

.section--compare .compare__tag {
  justify-self: start;
  margin: 0;
  padding: clamp(8px, 0.8vw, 15px) clamp(15px, 1.5vw, 28px);
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    #efc75e 0%,
    var(--compare-gold-deep) 100%
  );
  color: #fff;
  font-family: "Museum", sans-serif;
  font-size: clamp(12px, 1vw, 19px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .section--compare .compare__inner {
    min-height: 520px;
  }

  .section--compare .compare__panel {
    min-height: 520px;
  }

  .section--compare .compare__badge {
    min-width: 210px;
    font-size: 18px;
  }

  .section--compare .compare__brand-row {
    grid-template-columns: 88px auto minmax(130px, 1fr);
    gap: 12px;
  }

  .section--compare .compare__tag {
    padding: 8px 14px;
    font-size: 12px;
  }
}

@media (max-width: 820px) {
  .section--compare {
    width: 100%;
    margin-left: 0;
  }

  .section--compare .compare__inner {
    display: grid;
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .section--compare .compare__panel {
    min-height: 500px;
  }

  .section--compare .compare__panel--brand {
    border-left-width: clamp(3px, 0.6vw, 6px);
    min-height: 600px;
  }

  .section--compare .compare__vs {
    top: 46%;
    left: 50%;
    z-index: 12;
    padding: 14px 16px 8px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.24);
    font-size: clamp(28px, 5vw, 34px);
  }

  .section--compare .compare__badge {
    top: 54px;
    min-width: 220px;
    padding: 13px 28px;
    font-size: 18px;
  }

  .section--compare .compare__normal-stats,
  .section--compare .compare__brand-stats {
    top: 58%;
    width: min(88%, 560px);
  }

  .section--compare .compare__normal-row {
    gap: 20px;
    font-size: 13px;
    flex-direction: column;
  }

  .section--compare .compare__normal-row strong {
    font-size: 58px;
  }

  .section--compare .compare__brand-row {
    grid-template-columns: 1fr;
    gap: 8px;
    text-align: center;
  }

  .section--compare .compare__brand-row + .compare__brand-row {
    margin-top: 24px;
  }

  .section--compare .compare__brand-row dt {
    text-align: center;
    font-size: 14px;
  }

  .section--compare .compare__value strong {
    font-size: 58px;
  }

  .section--compare .compare__value {
    justify-content: center;
  }

  .section--compare .compare__tag {
    justify-self: center;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .section--compare .compare__panel {
    min-height: 360px;
  }
  .section--compare .compare__panel--brand {
    min-height: 550px;
  }
  .section--compare .compare__vs {
    top: 40%;
  }

  .section--compare .compare__badge {
    top: 42px;
    min-width: 190px;
    padding: 11px 22px;
    font-size: 16px;
  }

  .section--compare .compare__normal-stats,
  .section--compare .compare__brand-stats {
    top: 58%;
    width: min(92%, 360px);
  }

  .section--compare .compare__normal-row {
    flex-wrap: wrap;
    row-gap: 8px;
    font-size: 12px;
  }

  .section--compare .compare__normal-row strong {
    width: 100%;
    justify-content: center;
    order: -1;
    font-size: 54px;
  }

  .section--compare .compare__normal-row + .compare__normal-row {
    margin-top: 34px;
  }

  .section--compare .compare__value strong {
    font-size: 54px;
  }

  .section--compare .compare__value em {
    font-size: 21px;
  }

  .section--compare .compare__tag {
    font-size: 12px;
  }
}

/* ==============================
    선택해야 하는 이유 섹션 (reason)
============================== */
#dn_con10.reason {
  height: 58vw;
  min-height: 100vh;
  background: #fffcf8;
  position: relative;
  overflow: hidden;
}

#dn_con10.reason::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/reason_bg.png") center / cover no-repeat;
  opacity: 0.12;
  z-index: 0;
}

#dn_con10.reason::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    #fffcf8 0%,
    rgba(255, 252, 248, 0) 80%
  );
  pointer-events: none;
  z-index: 1;
}

.reason_inner {
  padding-top: 5vw;
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* 헤더 */
.reason_header {
  text-align: center;
  margin-bottom: 1.7vw;
  width: 100%;
  padding: 0;
  flex-shrink: 0;
}

.reason_top {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(16px, 2.5vw, 49px);
  width: 100%;
  margin-bottom: 0;
}

.reason_title_group {
  flex-shrink: 0;
}

.reason_main_title strong {
  background: var(--gradient-gold1);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-right: 5px;
}

.reason_line {
  flex: 1;
  display: block;
  height: 67px;
  margin-top: clamp(0px, 0.6vw, 12px);
  background-image: linear-gradient(
    to bottom,
    var(--color-deep-brown) 0px,
    var(--color-deep-brown) 1px,
    transparent 1px,
    transparent 31px,
    var(--color-deep-brown) 31px,
    var(--color-deep-brown) 33px,
    transparent 33px,
    transparent 63px,
    var(--color-deep-brown) 63px,
    var(--color-deep-brown) 67px
  );
}

.reason_main_title {
  color: var(--color-deep-brown);
  line-height: 1.3;
  white-space: nowrap;
}

.reason_sub_title {
  color: var(--color-deep-brown);
}

.reason_desc {
  color: var(--color-deep-brown);
  opacity: 0.7;
}

.pin-spacer {
  background-color: #fbf4ee;
}

/* 카드 스택 래퍼 */
.reason_box_wrap {
  width: min(75vw, 1440px);
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1.3021vw;
  flex-shrink: 0;
}

/* 개별 카드 */
.reason_box {
  width: 100%;
  height: 23vw;
  position: relative;
  overflow: hidden;
  transform-origin: center top;
  border-radius: 0.5vw;
}

/* 카드 배경 */
.reason_item1 {
  z-index: 5;
  background: #171717;
  color: #fff;
}
.reason_item2 {
  z-index: 6;
  background: #ffffff;
  color: var(--main-black);
}
.reason_item3 {
  z-index: 7;
  background: #171717;
  color: #fff;
}
.reason_item4 {
  z-index: 8;
  background: #ffffff;
  color: var(--main-black);
}
.reason_item5 {
  z-index: 9;
  background: #171717;
  color: #fff;
}

.reason_item1::before,
.reason_item3::before,
.reason_item5::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.reason_item1::before {
  background:
    linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)),
    url("../img/reason1_bg_ img.png") center / cover no-repeat;
  filter: blur(8px);
  transform: scale(1.05);
}

.reason_item3::before {
  background:
    linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)),
    url("../img/reason3_bg_ img.png") center / cover no-repeat;
}

.reason_item5::before {
  background:
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("../img/reason5_bg_ img.png") center / cover no-repeat;
}

/* 카드 내부 레이아웃 */
.reason_box_inner {
  padding: 0 7.5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  position: relative;
  z-index: 2;
}

.reason_box_twrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  height: 100%;
  padding: 4.2vw 0;
  flex: 0 0 42%;
  min-width: 0;
  position: relative;
  z-index: 2;
}

.reason_t1 {
  font-family: "Museum", sans-serif;
  font-size: clamp(20px, 1.875vw, 36px);
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 0.8vw;
}

.reason_t2 {
  font-family: "Pretendard", sans-serif;
  font-size: clamp(13px, 1.042vw, 20px);
  font-weight: 300;
}

/* 카드 우측 콘텐츠 */
.reason_box_content {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 1 48%;
  min-width: 0;
  width: 48%;
  max-width: 48%;
  position: relative;
  z-index: 1;
}

/* 카드 1·5: 이미지가 우측 끝까지 채움 */
.reason_box_content--edge {
  margin-right: 0;
  align-self: stretch;
}

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

/* 카드 2: 아이콘 비교 이미지 */
.reason_item2 .reason_box_content img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
  height: auto;
}

/* 카드 3: 원형 초밥 레일 이미지 */
.reason_item3 .reason_box_content {
  flex: 0 0 auto;
  width: auto;
  max-width: none;
}

.reason_item3 .reason_box_content img {
  height: auto;
  width: 100%;
  object-fit: contain;
  transform: translate(0, 10%);
}

/* 카드 1: 이미지 영역 너비 고정 */
.reason_item1 .reason_box_content--edge {
  width: 48%;
}
.reason_item1 .reason_box_content--edge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* 카드 4: 매출 pill */
.reason_sales_list {
  display: flex;
  flex-direction: column;
  gap: 0.65vw;
  width: max-content;
  min-width: clamp(260px, 24vw, 440px);
  max-width: 100%;
}

/* 카드 5 */
.reason_item5 .reason_box_content {
  flex: 0 0 auto;
  width: auto;
  max-width: none;
}

.reason_item5 .reason_box_content img {
  height: auto;
  width: 75%;
  object-fit: contain;
  transform: translate(15%, -10%);
}

.reason_sales_item {
  background: #fff;
  border-radius: 9999px;
  border: 1px solid rgba(35, 25, 15, 0.15);
  padding: 0.85vw 2.2vw;
  font-family: "Pretendard", sans-serif;
  font-size: clamp(14px, 2vw, 20px);
  font-weight: 500;
  color: var(--main-black);
  white-space: nowrap;
  text-align: center;
  width: 100%;
  min-width: max-content;
  box-sizing: border-box;
}

/* reason 반응형 */
@media (max-width: 1440px) {
  #dn_con10.reason {
    height: clamp(660px, 58vw, 840px);
    min-height: 0;
  }

  .reason_item3 .reason_box_content img {
    width: 70%;
    transform: translate(-20%, 10%);
  }

  .reason_item5 .reason_box_content img {
    width: 60%;
    transform: translate(0%, -15%);
  }
}

@media (min-width: 1101px) and (max-width: 1200px) {
  #dn_con10.reason {
    height: clamp(620px, 56vw, 700px);
    min-height: 0;
  }
}

@media (max-width: 1100px) {
  .reason_line {
    flex: 0 1 22%;
    min-width: 60px;
  }

  #dn_con10.reason {
    height: clamp(560px, 58vw, 660px);
    min-height: 0;
  }

  .reason_box_twrap {
    padding: 3vw 0;
  }

  .reason_box_inner {
    padding: 0 5vw;
  }

  .reason_box_twrap {
    flex-basis: 46%;
  }

  .reason_box_content {
    flex-basis: 44%;
    max-width: 48%;
  }

  .reason_item3 .reason_box_content,
  .reason_item5 .reason_box_content {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .reason_sales_item {
    font-size: 1.6vw;
  }

  .reason_item3 .reason_box_content img {
    width: 50%;
    transform: translate(-50%, 12%);
  }

  .reason_item5 .reason_box_content img {
    width: 45%;
    transform: translate(-35%, -15%);
  }

  .reason_sales_list {
    min-width: clamp(240px, 28vw, 440px);
    gap: 0.5vw;
  }
}

@media (min-width: 769px) and (max-width: 900px) {
  #dn_con10.reason {
    height: clamp(540px, 64vw, 620px);
    min-height: 0;
  }

  .reason_box {
    height: 29vw;
  }

  .reason_box_twrap {
    padding: 2.5vw 0;
    flex-basis: 50%;
  }

  .reason_box_content {
    flex-basis: 42%;
    max-width: 46%;
  }

  .reason_item3 .reason_box_content,
  .reason_item5 .reason_box_content {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }

  .reason_t1 {
    font-size: 2.4vw;
    margin-bottom: 1vw;
  }

  .reason_t2 {
    font-size: 1.4vw;
    line-height: 1.5;
  }

  .reason_item1 .reason_box_content--edge {
    width: 42%;
    margin-right: 1.5vw;
  }

  .reason_sales_list {
    min-width: clamp(220px, 30vw, 320px);
  }

  .reason_sales_item {
    font-size: 1.3vw;
    padding: 0.8vw 2vw;
  }
}

@media (max-width: 768px) {
  #dn_con10.reason {
    height: auto;
    min-height: 0;
    padding-bottom: 15vw;
  }

  .reason_inner {
    padding-top: 22vw;
    height: auto;
  }

  .reason_header {
    padding: 0;
    margin-bottom: clamp(40px, 8vw, 72px);
  }

  .reason_top {
    display: block;
    padding: 0 20px;
  }

  .reason_title_group {
    width: 100%;
    max-width: 100%;
    padding: 24px 0;
  }

  .reason_line {
    width: 100%;
    height: 32px;
    margin-top: 0;
    background-image: linear-gradient(
      to bottom,
      var(--color-deep-brown) 0,
      var(--color-deep-brown) 3px,
      transparent 3px,
      transparent 13px,
      var(--color-deep-brown) 13px,
      var(--color-deep-brown) 15px,
      transparent 15px,
      transparent 25px,
      rgba(36, 25, 15, 0.45) 25px,
      rgba(36, 25, 15, 0.45) 26px,
      transparent 26px
    );
  }

  .reason_main_title {
    width: 100%;
    max-width: 100%;
    white-space: normal;
  }

  .reason_box_wrap {
    width: calc(100% - 8vw);
    row-gap: 3vw;
    margin-top: 4vw;
  }

  .reason_box {
    height: auto;
    border-radius: 3vw;
    overflow: hidden;
  }

  /* 모든 카드 동일 높이 */
  .reason_item1,
  .reason_item2,
  .reason_item3,
  .reason_item4,
  .reason_item5 {
    height: 90vw;
    padding: 0;
  }

  .reason_box_inner {
    padding: 2vw;
    flex-direction: column;
    align-items: center;
    gap: 0;
    height: 100%;
  }

  .reason_box_twrap {
    width: 100%;
    text-align: center;
    align-items: center;
    height: auto;
    flex: 0 0 auto;
    padding: 8vw 6vw 4vw;
    gap: 2.5vw;
  }

  .reason_t1 {
    font-size: 5.5vw;
    margin-bottom: 2vw;
  }
  .reason_t2 {
    font-size: 3.6vw;
  }

  .reason_box_content {
    margin-right: 0 !important;
    flex: 1;
    width: 100%;
    height: 0;
    min-height: 0;
    max-width: none;
    padding: 0;
    align-self: stretch;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .reason_item2 .reason_box_content img,
  .reason_item3 .reason_box_content img {
    width: 80%;
    height: 100%;
    object-fit: contain;
    transform: none;
  }

  .reason_box_content img {
    width: 80%;
    height: 100%;
    object-fit: contain;
    transform: none;
  }

  .reason_box_content--edge {
    width: 100%;
    padding: 0;
  }

  .reason_box_content--edge img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* 데스크탑 높은 명시도 규칙 모바일 오버라이드 */
  .reason_item3 .reason_box_content,
  .reason_item5 .reason_box_content {
    flex: 1;
    width: 100%;
  }

  .reason_item1 .reason_box_content--edge,
  .reason_item5 .reason_box_content--edge {
    width: 100%;
    margin-right: 0;
  }

  .reason_item1 .reason_box_content--edge img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: none;
  }

  .reason_item5 .reason_box_content--edge img {
    width: 80%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transform: none;
  }

  .reason_sales_list {
    gap: 2vw;
    padding: 0 6vw;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
  }
  .reason_sales_item {
    font-size: 3.5vw;
    padding: 2.5vw 4vw;
    border-radius: 4px;
    min-width: 0;
  }
}

/* =========================
  없습니다
========================= */

.section--no-point {
  position: relative;
  width: 100vw;
  overflow: hidden;
  background: var(--main-ivory);
  color: var(--main-black);
}

.section--no-point *,
.section--no-point *::before,
.section--no-point *::after {
  box-sizing: border-box;
}

.section--no-point .no-point__inner {
  position: relative;
  z-index: 3;
  width: calc(100% - clamp(40px, 8vw, 120px));
  max-width: 1540px;
  margin: 0 auto;
  padding: clamp(80px, 7.8vw, 150px) 0;
}

.section--no-point .no-point__deco {
  position: absolute;
  z-index: 1;
  display: block;
  height: auto;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.section--no-point .no-point__deco--left {
  left: clamp(-280px, -10vw, -90px);
  bottom: clamp(-230px, -9vw, -80px);
  width: clamp(360px, 43vw, 520px);
}

.section--no-point .no-point__deco--right {
  top: clamp(-210px, -3.8vw, -70px);
  right: clamp(-250px, -5.6vw, -70px);
  width: clamp(340px, 31vw, 600px);
}

.section--no-point .no-point__head {
  position: relative;
  z-index: 4;
  text-align: center;
}

.section--no-point .no-point__title {
  margin: 0;
  font-family: "Museum", "Noto Serif KR", serif;
  font-size: clamp(34px, 4vw, 70px);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -0.055em;
  color: var(--main-black);
}

.section--no-point .no-point__desc {
  margin: clamp(18px, 1.8vw, 34px) 0 0;
  font-size: clamp(14px, 1.3vw, 24px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.04em;
  color: var(--main-black);
}

.section--no-point .no-point__desc strong {
  font-weight: 600;
}

.section--no-point .no-point__cards {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2.1vw, 30px);
  width: 100%;
  margin: clamp(58px, 6.2vw, 116px) auto 0;
  padding: 0;
  list-style: none;
}

.section--no-point .no-point__card {
  position: relative;
  min-height: clamp(360px, 26vw, 520px);
  padding: clamp(42px, 3.3vw, 64px) clamp(22px, 2vw, 40px)
    clamp(34px, 2.8vw, 54px);
  border: 1px solid rgba(17, 17, 17, 0.46);
  background: #fff;
  text-align: center;
  overflow: hidden;

  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
}

.section--no-point .no-point__card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 148, 59, 0.75);
  box-shadow: 0 22px 60px rgba(17, 17, 17, 0.08);
}

.section--no-point .no-point__thumb {
  width: clamp(150px, 11.8vw, 230px);
  margin: 0 auto clamp(28px, 2.2vw, 42px);
}

.section--no-point .no-point__thumb img {
  display: block;
  width: 100%;
  height: auto;
  user-select: none;
  pointer-events: none;
  -webkit-user-drag: none;
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
  transition:
    -webkit-filter 0.35s ease,
    filter 0.35s ease;
}

.section--no-point .no-point__card:hover .no-point__thumb img {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

.section--no-point .no-point__text {
  position: relative;
}

.section--no-point .no-point__question,
.section--no-point .no-point__answer {
  font-family: "Museum", "Noto Serif KR", serif;
  font-size: clamp(24px, 2vw, 38px);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.05em;
}

.section--no-point .no-point__question {
  margin: 0;
  color: #111;
}

.section--no-point .no-point__answer {
  margin: clamp(4px, 0.45vw, 8px) 0 0;
  color: #c20000;
}

.section--no-point .no-point__list {
  margin: clamp(22px, 1.8vw, 34px) 0 0;
  padding: 0;
  list-style: none;
}

.section--no-point .no-point__list li {
  font-size: clamp(14px, 1.1vw, 21px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.04em;
  color: rgba(17, 17, 17, 0.82);
}

.section--no-point .no-point__question[data-aos],
.section--no-point .no-point__answer[data-aos] {
  transform-origin: center;
  will-change: opacity, transform;
}

@media (max-width: 1024px) {
  .section--no-point {
    width: 100%;
  }

  .section--no-point .no-point__inner {
    padding: 90px 0 105px;
  }

  .section--no-point .no-point__deco--left {
    left: -190px;
    bottom: -120px;
    width: 430px;
  }

  .section--no-point .no-point__deco--right {
    top: -40px;
    right: -125px;
    width: 360px;
  }

  .section--no-point .no-point__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 760px;
    gap: 20px;
    margin-top: 54px;
  }

  .section--no-point .no-point__card {
    min-height: 390px;
    padding: 42px 24px 36px;
  }

  .section--no-point .no-point__thumb {
    width: 170px;
  }
}

@media (max-width: 640px) {
  .section--no-point .no-point__inner {
    padding: 76px 0 86px;
  }

  .section--no-point .no-point__deco--left {
    left: -170px;
    bottom: -85px;
    width: 330px;
  }

  .section--no-point .no-point__deco--right {
    top: -30px;
    right: -120px;
    width: 300px;
  }

  .section--no-point .no-point__title {
    font-size: 36px;
  }

  .section--no-point .no-point__desc {
    margin-top: 16px;
    font-size: 14px;
  }

  .section--no-point .no-point__cards {
    grid-template-columns: 1fr;
    width: min(100%, 360px);
    gap: 16px;
    margin-top: 42px;
  }

  .section--no-point .no-point__card {
    min-height: auto;
    padding: 38px 22px 34px;
  }

  .section--no-point .no-point__thumb {
    width: 158px;
    margin-bottom: 24px;
  }

  .section--no-point .no-point__question,
  .section--no-point .no-point__answer {
    font-size: 28px;
  }

  .section--no-point .no-point__list {
    margin-top: 20px;
  }

  .section--no-point .no-point__list li {
    font-size: 14px;
  }
}

/* 반응형 aos 동작 수정 */

@media (max-width: 1024px) and (min-width: 641px) {
  .section--no-point .no-point__question[data-aos][data-aos],
  .section--no-point .no-point__answer[data-aos][data-aos] {
    transition-delay: 0ms !important;
  }

  .section--no-point
    .no-point__card:nth-child(odd)
    .no-point__question[data-aos][data-aos].aos-animate {
    transition-delay: 0ms !important;
  }

  .section--no-point
    .no-point__card:nth-child(odd)
    .no-point__answer[data-aos][data-aos].aos-animate {
    transition-delay: 180ms !important;
  }

  .section--no-point
    .no-point__card:nth-child(even)
    .no-point__question[data-aos][data-aos].aos-animate {
    transition-delay: 360ms !important;
  }

  .section--no-point
    .no-point__card:nth-child(even)
    .no-point__answer[data-aos][data-aos].aos-animate {
    transition-delay: 540ms !important;
  }
}

@media (max-width: 640px) {
  .section--no-point .no-point__question[data-aos][data-aos],
  .section--no-point .no-point__answer[data-aos][data-aos] {
    transition-delay: 0ms !important;
  }

  .section--no-point .no-point__question[data-aos][data-aos].aos-animate {
    transition-delay: 0ms !important;
  }

  .section--no-point .no-point__answer[data-aos][data-aos].aos-animate {
    transition-delay: 180ms !important;
  }
}

/* =========================
  3가지 핵심 경쟁력 섹션
========================= */

.section--advantage {
  position: relative;
  height: clamp(680px, 56vw, 860px);
  min-height: 680px;
  overflow: hidden;
  background: var(--main-black, #171717);
  color: #fff;
}

/* ===== 배경 이미지 ===== */

.advantage__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.04);
  transition:
    opacity 0.55s ease,
    transform 1.2s ease;
}

.advantage__bg.is-active {
  opacity: 1;
  transform: scale(1);
}

.advantage__bg--1 {
  background-image: url("../img/advantage1.png");
}

.advantage__bg--2 {
  background-image: url("../img/advantage2.png");
}

.advantage__bg--3 {
  background-image: url("../img/advantage3.png");
}

/* 오버레이 */
.advantage__dim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.7);
}

/* ===== 내부 구조 ===== */

.advantage__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  min-height: inherit;
  margin: 0;
  padding: 0;
}

/* ==== 상단 타이틀 타원 ==== */

.advantage__title-box {
  position: absolute;
  top: 60px;
  left: 50%;
  z-index: 5;

  width: clamp(520px, 48vw, 760px);
  aspect-ratio: 2.5 / 1;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  padding: 36px 70px;
  text-align: center;
  color: var(--color-deep-brown, #24190f);

  background:
    linear-gradient(#fff, #fff) padding-box,
    var(--gradient-gold1) border-box;

  border: 14px solid transparent;
  border-radius: 50%;
  transform: translateX(-50%);

  pointer-events: none;
}

.advantage__title-box::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid var(--color-deep-brown, #24190f);
  border-radius: 50%;
  pointer-events: none;
}

.advantage__sub,
.advantage__title,
.advantage__caption {
  position: relative;
  z-index: 1;
}

.advantage__sub {
  font-family: "Museum", sans-serif;
  font-weight: 300;
  font-size: clamp(24px, 1.5vw, 32px);
  line-height: 1.3;
  margin-bottom: 15px;
}

.advantage__title {
  font-family: "Museum", sans-serif;
  font-size: clamp(34px, 4.2vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-deep-brown, #24190f);
  white-space: nowrap;
}

.advantage__caption {
  margin-top: 12px;
  font-size: clamp(16px, 1vw, 20px);
  color: rgba(36, 25, 15, 0.75);
}

/* =====  3분할 리스트 ==== */

.advantage__list {
  position: absolute;
  inset: 0;
  z-index: 2;

  width: 100%;
  height: 100%;

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));

  list-style: none;
  margin: 0;
  padding: 0;

  border-left: 1px solid rgba(255, 255, 255, 0.28);
  border-right: 1px solid rgba(255, 255, 255, 0.28);
}

.advantage__item {
  position: relative;
  min-width: 0;
  height: 100%;
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.advantage__item:first-child {
  border-left: 0;
}

.advantage__btn {
  width: 100%;
  height: 100%;

  padding: 0 32px clamp(30px, 5vw, 50px);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;

  background: transparent;
  border: 0;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
  cursor: pointer;
  font: inherit;

  transition:
    color 0.35s ease,
    background 0.35s ease;
}

/* ===== 텍스트 ===== */

.advantage__num {
  display: block;
  font-family: "Museum", sans-serif;
  font-size: clamp(18px, 1.6vw, 28px);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 14px;
  transition: color 0.35s ease;
}

.advantage__name {
  display: block;
  font-family: "Museum", sans-serif;
  font-size: clamp(24px, 2vw, 36px);
  font-weight: 700;
  line-height: 1.25;
  transition: color 0.35s ease;
}

.advantage__desc {
  min-height: 220px;
  margin-top: 18px;
  opacity: 0;
  overflow: hidden;
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  transition: opacity 0.35s ease;
}

/* ===== active 상태 ====== */

.advantage__item.is-active .advantage__btn {
  color: #fff;
}

.advantage__item.is-active .advantage__num,
.advantage__item.is-active .advantage__name {
  color: #e0ba63;
}

.advantage__item.is-active .advantage__desc {
  opacity: 1;
}

/* focus */
.advantage__btn:focus {
  outline: none;
}

.advantage__btn:focus-visible {
  outline: 2px solid rgba(224, 186, 99, 0.9);
  outline-offset: -8px;
}

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

@media (max-width: 1024px) {
  .section--advantage {
    height: 760px;
    min-height: 760px;
  }

  .advantage__title-box {
    top: 50px;
    width: min(640px, calc(100% - 40px));
    padding: 30px 40px 28px;
    border-width: 10px;
  }

  .advantage__title-box::before {
    inset: 10px;
  }

  .advantage__btn {
    padding: 0 24px 20px;
  }
  .advantage__name {
    min-height: 60px;
  }
}

@media (max-width: 768px) {
  .section--advantage {
    height: auto;
    min-height: 780px;
  }

  .advantage__inner {
    height: auto;
    min-height: 780px;
    display: flex;
    flex-direction: column;
    padding-top: 36px;
  }

  .advantage__title-box {
    position: relative;
    top: auto;
    left: auto;
    transform: none;

    width: min(520px, calc(100% - 40px));
    aspect-ratio: 2.5 / 1;
    margin: 0 auto 28px;

    padding: 24px 24px 22px;
    border-width: 8px;
  }

  .advantage__title-box::before {
    inset: 8px;
  }

  .advantage__sub {
    font-size: 15px;
    margin-bottom: 8px;
  }

  .advantage__title {
    font-size: 34px;
  }

  .advantage__caption {
    margin-top: 8px;
    font-size: 12px;
  }

  .advantage__list {
    position: relative;
    inset: auto;

    width: 100%;
    height: 800px;
    min-height: 540px;

    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, minmax(0, 1fr));

    flex: 0 0 auto;

    border-left: 0;
    border-right: 0;
  }

  .advantage__item {
    min-height: 0;
    height: auto;
    overflow: hidden;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.28);
  }

  .advantage__item:first-child {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.28);
  }

  .advantage__btn {
    height: 100%;
    min-height: 0;
    overflow: hidden;

    justify-content: center;
    padding: 24px 20px;
  }

  .advantage__name {
    font-size: 24px;
    min-height: unset;
  }

  .advantage__desc {
    min-height: 0;
    max-height: 0;
    margin-top: 0;
    opacity: 0;
    overflow: hidden;

    font-size: 14px;
    line-height: 1.5;

    transition:
      max-height 0.45s ease,
      margin-top 0.35s ease,
      opacity 0.35s ease;
  }

  .advantage__item.is-active .advantage__desc {
    max-height: 160px;
    margin-top: 12px;
    opacity: 1;
  }
}

@media (max-width: 480px) {
  .section--advantage {
    min-height: 740px;
  }

  .advantage__inner {
    min-height: 740px;
    padding-top: 32px;
  }

  .advantage__title-box {
    width: calc(100% - 32px);
    min-width: 330px;
    aspect-ratio: 2.35 / 1;
    margin-bottom: 24px;
    padding: 20px 16px 18px;
    border-width: 7px;
  }

  .advantage__title-box::before {
    inset: 7px;
  }

  .advantage__sub {
    font-size: 14px;
    margin-bottom: 6px;
  }

  .advantage__title {
    font-size: 30px;
  }

  .advantage__caption {
    margin-top: 6px;
    font-size: 11px;
  }

  .advantage__list {
    height: 600px;
  }

  .advantage__btn {
    padding: 20px 16px;
  }

  .advantage__name {
    font-size: 21px;
  }

  .advantage__desc {
    font-size: 13px;
    line-height: 1.55;
  }

  .advantage__item.is-active .advantage__desc {
    max-height: 150px;
    margin-top: 10px;
  }
}

/* 모션 최소화 */
@media (prefers-reduced-motion: reduce) {
  .advantage__bg,
  .advantage__btn,
  .advantage__num,
  .advantage__name,
  .advantage__desc {
    transition: none;
  }
}

/* ==============================
    수익 섹션 (profit)
============================== */
#dn_con13.profit {
  position: relative;
  overflow: clip;
  --profit-dark: var(--main-black);
  --profit-ivory: var(--main-ivory);
  --profit-line: var(--color-deep-brown);
  --profit-gold: var(--gradient-gold1);
  background:
    linear-gradient(rgba(23, 23, 23, 0.9), rgba(23, 23, 23, 0.9)),
    url("../img/profit_bg.png") center top / cover no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;

  padding: clamp(80px, 8vw, 150px) 0 0;
}

/* 헤드라인 */
.profit_header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2.5vw, 49px);
  width: 100%;
  padding: 0;
  margin-bottom: clamp(120px, 9.9vw, 190px);
}

.profit_line {
  flex: 1;
  display: block;
  height: 67px;
  background-image: linear-gradient(
    to bottom,
    #fff 0px,
    #fff 1px,
    transparent 1px,
    transparent 31px,
    #fff 31px,
    #fff 33px,
    transparent 33px,
    transparent 63px,
    #fff 63px,
    #fff 67px
  );
}

.profit_heading {
  color: #fff;
  text-align: center;
  line-height: 1.3;
}

/* 롤링 텍스트 */
.profit_slide {
  position: relative;
  z-index: 2;
  width: 100%;
  overflow: hidden;
  padding-bottom: 10px;
  opacity: 0.33;
}

.profit_slide_track {
  display: flex;
  align-items: center;
  gap: clamp(28px, 3.1vw, 60px);
  width: max-content;
  animation: profit-slide-ltr 36s linear infinite;
  will-change: transform;
}

.profit_slide_track img {
  display: block;
  width: clamp(1000px, 148.6vw, 2853px);
  max-width: none;
  flex-shrink: 0;
}

@keyframes profit-slide-ltr {
  0% {
    transform: translateX(calc(-50% - clamp(14px, 1.55vw, 30px)));
  }
  100% {
    transform: translateX(0);
  }
}

/* 흰색 바디 */
.profit_inner {
  box-sizing: border-box;
  width: 100%;
  height: clamp(150px, 25vw, 400px);
  background: url("../img/profit_under_bg.png") center bottom / cover no-repeat;
  position: relative;
  z-index: 3;
  padding: 70px 0;
}

/* 상단 구분선 */
.profit_divider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.profit_divider span:nth-child(1) {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--profit-line);
}

.profit_divider span:nth-child(2) {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--profit-line);
}

.profit_divider span:nth-child(3) {
  display: block;
  width: 100%;
  height: 4px;
  background: var(--profit-line);
}

/* 초밥 배지 */
.profit_badge {
  position: absolute;
  top: clamp(150px, 12vw, 200px);
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(400px, 40vw, 700px);
  aspect-ratio: 1 / 1;
  z-index: 2;
}

.profit_badge .sales_sushi_clip {
  overflow: hidden;
  border-radius: 50%;
}

.profit_badge .sales_sushi_clip img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.profit_badge .sales_sushi {
  top: 0;
  left: 50%;
  bottom: auto;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform-origin: 50% 50%;
  animation-name: profit-sushi-change;
}

.profit_badge .sales_sushi:nth-child(2) {
  animation-delay: 1.2s;
}

.profit_badge .sales_sushi:nth-child(3) {
  animation-delay: 2.4s;
}

@keyframes profit-sushi-change {
  0% {
    opacity: 0;
    transform: translateX(-50%) rotate(-14deg) scale(0.92);
  }
  12%,
  30% {
    opacity: 1;
    transform: translateX(-50%) rotate(0deg) scale(1);
  }
  42%,
  100% {
    opacity: 0;
    transform: translateX(-50%) rotate(14deg) scale(0.96);
  }
}

.profit_stats {
  display: flex;
  justify-content: space-between;
  align-items: start;
  position: relative;
  z-index: 1;
  width: 100%;
  gap: clamp(80px, 16vw, 300px);
  padding: 0 100px;
}

.profit_stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.profit_stat_label {
  font-family: "Museum", sans-serif;
  font-size: clamp(24px, 2.5vw, 48px);
  font-weight: 700;
  color: var(--profit-dark);
  letter-spacing: -2px;
  line-height: 1.5;
}

.profit_stat_num {
  font-family: "Museum", sans-serif;
  font-size: clamp(72px, 5.6vw, 108px);
  font-weight: 700;
  background: var(--profit-gold);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  letter-spacing: -3px;
  line-height: 1;
}

.profit_stat_note {
  font-family: "Pretendard", sans-serif;
  font-size: clamp(11px, 0.73vw, 14px);
  font-weight: 300;
  color: rgba(23, 23, 23, 0.38);
  margin-top: 8px;
  letter-spacing: -0.3px;
}

.Eutman {
  font-family: "Eutman", sans-serif;
  font-weight: normal;
}

@media (max-width: 1100px) {
  .profit_line {
    flex: 0 1 24%;
    min-width: 70px;
  }
  .profit_header {
    margin-bottom: 100px;
  }
  .profit_stats {
    gap: clamp(240px, 36vw, 380px);
  }

  .profit_inner .dn_inner1 {
    padding: 0 20px;
  }

  .profit_badge {
    width: 400px;
    top: clamp(110px, 12vw, 200px);
  }
}

@media (max-width: 768px) {
  .profit_header {
    display: block;
    padding: 0 20px;
    margin-bottom: 200px;
  }

  .profit_line {
    width: 100%;
    height: 32px;
    background-image: linear-gradient(
      to bottom,
      #fff 0,
      #fff 3px,
      transparent 3px,
      transparent 13px,
      #fff 13px,
      #fff 15px,
      transparent 15px,
      transparent 25px,
      rgba(255, 255, 255, 0.45) 25px,
      rgba(255, 255, 255, 0.45) 26px,
      transparent 26px
    );
  }

  .profit_heading {
    width: 100%;
    max-width: 100%;
    padding: 24px 0;
  }

  .profit_badge {
    width: clamp(280px, 76vw, 360px);
    top: 0;
  }
  .profit_inner {
    height: auto;
    padding-top: 220px;
    padding-bottom: 120px;
  }
  .profit_stats {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 60px;
  }
  .profit_stat_label {
    font-size: clamp(22px, 7vw, 34px);
  }
  .profit_stat_num {
    font-size: clamp(58px, 16vw, 82px);
  }
  .profit_stat_note {
    font-size: 14px;
  }
}

/* =========================
  어떻게 35% 순수익률
========================= */

.section--profit-system {
  position: relative;
  width: 100vw;
  overflow: hidden;
  background: #171717;
  color: #fff;
}

.section--profit-system .profit-system__inner {
  position: relative;
  isolation: isolate;
  padding: clamp(90px, 9vw, 150px) 24px clamp(80px, 8vw, 120px);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 세로 선 */
.section--profit-system .profit-system__inner::before,
.section--profit-system .profit-system__inner::after {
  content: "";
  position: absolute;
  top: 0;
  z-index: 1;
  width: 1px;
  height: 100%;
  background: #fff;
  pointer-events: none;
}

.section--profit-system .profit-system__inner::before {
  left: clamp(20px, 4vw, 60px);
}

.section--profit-system .profit-system__inner::after {
  right: clamp(20px, 4vw, 60px);
}

.section--profit-system .profit-system__food {
  position: absolute;
  z-index: 2;
  display: block;
  height: auto;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.section--profit-system .profit-system__food--left {
  top: clamp(-260px, -15vw, -120px);
  left: clamp(-300px, -14vw, -110px);
  width: clamp(320px, 34vw, 650px);
}

.section--profit-system .profit-system__food--right {
  right: clamp(-290px, -12vw, -90px);
  bottom: clamp(-300px, -14vw, -110px);
  width: clamp(380px, 38vw, 730px);
}

/* 콘텐츠 */
.section--profit-system .profit-system__content {
  --profit-title-size: clamp(32px, 5vw, 70px);
  --profit-rule-y: calc(var(--profit-title-size) * 0.5);
  --profit-rule-gap: clamp(250px, 30vw, 560px);

  position: relative;
  z-index: auto;
  width: calc(100% - 40px);
  max-width: 1340px;
  text-align: center;
}

.section--profit-system .profit-system__content::before,
.section--profit-system .profit-system__content::after {
  content: "";
  position: absolute;
  top: var(--profit-rule-y);
  z-index: 1;
  width: 50vw;
  height: 1px;
  background: #fff;
  pointer-events: none;
}

/* 왼쪽 가로선 */
.section--profit-system .profit-system__content::before {
  right: calc(50% + var(--profit-rule-gap));
}

/* 오른쪽 가로선 */
.section--profit-system .profit-system__content::after {
  left: calc(50% + var(--profit-rule-gap));
}

/* 제목 */
.section--profit-system .profit-system__title {
  position: relative;
  z-index: 3;
  margin: 0;
  font-family: "Museum", sans-serif;
  font-size: var(--profit-title-size);
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: -0.055em;
  color: #fff;
  filter: drop-shadow(2px 4px 10px rgba(23, 23, 23, 0.5));
}

.section--profit-system .profit-system__title-line {
  display: block;
}

.section--profit-system .profit-system__title-line--main {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.section--profit-system .profit-system__title-line--main::before,
.section--profit-system .profit-system__title-line--main::after {
  content: none;
  display: none;
}

.section--profit-system .profit-system__title strong {
  display: inline-block;
  margin: 0 0.12em;
  font-family: "Museum", sans-serif;
  font-size: clamp(48px, 10vw, 128px);
  font-weight: 900;
  line-height: 0.8;
  letter-spacing: -0.08em;
  color: transparent;
  -webkit-text-stroke: clamp(1px, 0.4vw, 5px) #fff;
  text-stroke: clamp(1px, 0.4vw, 5px) #fff;
  vertical-align: -0.08em;
}

.section--profit-system .profit-system__desc {
  position: relative;
  z-index: 3;
  margin-top: clamp(22px, 3.2vh, 42px);
  font-size: clamp(15px, 2vw, 28px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.72);
}

.section--profit-system .profit-system__desc p {
  margin: 0;
}

.section--profit-system .profit-system__desc b {
  display: block;
  margin-top: 2px;
  color: #fff;
  font-size: clamp(15px, 2vw, 32px);
  font-weight: 800;
}

/* 카드 */
.section--profit-system .profit-system__cards {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 2.7vw, 58px);
  width: 100%;
  margin: clamp(34px, 5.8vh, 70px) 0 0;
  padding: 0;
  list-style: none;
}

.section--profit-system .profit-system__card {
  width: clamp(190px, 21.875vw, 420px);
  aspect-ratio: 420 / 240;
}

.section--profit-system .profit-system__card img {
  display: block;
  width: 100%;
  height: auto;
  filter: invert(0) brightness(1) contrast(1);
  transform: translateY(0) scale(1);
  animation-duration: 5.2s;
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  animation-iteration-count: infinite;
  will-change: filter, transform;
}

/* 카드 색상 전환 */
.section--profit-system .profit-system__card--01 img {
  animation-name: profitSystemCard01Soft;
}

.section--profit-system .profit-system__card--02 img {
  animation-name: profitSystemCard02Soft;
}

.section--profit-system .profit-system__card--03 img {
  animation-name: profitSystemCard03Soft;
}

/* 1번 카드 */
@keyframes profitSystemCard01Soft {
  0%,
  22% {
    filter: invert(1) brightness(1.04) contrast(1.02);
    transform: translateY(-4px) scale(1.015);
  }

  34%,
  88% {
    filter: invert(0) brightness(1) contrast(1);
    transform: translateY(0) scale(1);
  }

  100% {
    filter: invert(1) brightness(1.04) contrast(1.02);
    transform: translateY(-4px) scale(1.015);
  }
}

/* 2번 카드 */
@keyframes profitSystemCard02Soft {
  0%,
  22% {
    filter: invert(0) brightness(1) contrast(1);
    transform: translateY(0) scale(1);
  }

  34%,
  55% {
    filter: invert(1) brightness(1.04) contrast(1.02);
    transform: translateY(-4px) scale(1.015);
  }

  67%,
  100% {
    filter: invert(0) brightness(1) contrast(1);
    transform: translateY(0) scale(1);
  }
}

/* 3번 카드 */
@keyframes profitSystemCard03Soft {
  0%,
  55% {
    filter: invert(0) brightness(1) contrast(1);
    transform: translateY(0) scale(1);
  }

  67%,
  88% {
    filter: invert(1) brightness(1.04) contrast(1.02);
    transform: translateY(-4px) scale(1.015);
  }

  100% {
    filter: invert(0) brightness(1) contrast(1);
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 1024px) {
  .section--profit-system {
    width: 100%;
    margin-left: 0;
  }

  .section--profit-system .profit-system__inner {
    min-height: auto;
    padding: 90px 20px 110px;
  }

  .section--profit-system .profit-system__food--left {
    top: -120px;
    left: -150px;
    width: 330px;
  }

  .section--profit-system .profit-system__food--right {
    right: -160px;
    bottom: -150px;
    width: 380px;
  }

  .section--profit-system .profit-system__content {
    --profit-title-size: clamp(30px, 7vw, 52px);
    --profit-rule-y: calc(var(--profit-title-size) * 0.6);
    --profit-title-line-padding: clamp(18px, 3vw, 42px);
  }

  .section--profit-system .profit-system__desc {
    margin-top: 24px;
    font-size: 14px;
  }

  .section--profit-system .profit-system__cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    max-width: 760px;
    margin: 44px auto 0;
  }

  .section--profit-system .profit-system__card {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .section--profit-system .profit-system__inner {
    padding: 78px 18px 90px;
  }

  .section--profit-system .profit-system__food--left {
    top: -96px;
    left: -130px;
    width: 270px;
  }

  .section--profit-system .profit-system__food--right {
    right: -150px;
    bottom: -120px;
    width: 310px;
  }

  .section--profit-system .profit-system__content {
    --profit-title-size: 30px;
  }

  .section--profit-system .profit-system__content::before,
  .section--profit-system .profit-system__content::after {
    display: none;
  }

  .section--profit-system .profit-system__title-line--main {
    flex-wrap: wrap;
    padding-inline: 0;
    background: transparent;
  }

  .section--profit-system .profit-system__title strong {
    font-size: 1.55em;
    -webkit-text-stroke-width: 1.5px;
    text-stroke-width: 1.5px;
  }

  .section--profit-system .profit-system__desc {
    font-size: 13px;
    line-height: 1.7;
  }

  .section--profit-system .profit-system__cards {
    grid-template-columns: 1fr;
    gap: 12px;
    width: min(100%, 360px);
    max-width: 280px;
    margin-top: 34px;
  }
}

/* =========================
  초보도 창업 가능 섹션
========================= */

.section--easy-support {
  background: var(--main-black);
  overflow: hidden;
}

.section--easy-support > div {
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
  height: 100%;
  margin: 0 auto;
  width: calc(100% - clamp(40px, 8vw, 120px));
  max-width: 1800px;
  padding: 150px 0;
}

.easy-support__inner {
  display: grid;
  grid-template-columns: 400px minmax(0, 1fr);
  gap: clamp(100px, 12vw, 160px);
  align-items: center;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  overflow: hidden;
  padding: 40px 0;
}

.easy-support__text {
  width: 400px;
  margin-left: 60px;
}

.easy-support__title {
  font-family: "Museum", sans-serif;
  font-size: clamp(42px, 4vw, 64px);
  font-weight: 700;
  line-height: 1.25;
  color: #d0a145;
  margin-bottom: 28px;
}

.easy-support__desc {
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
}

.easy-support__slider {
  width: 100%;
}

.easy-support__slider .swiper-slide {
  width: clamp(260px, 23vw, 340px);
  flex-shrink: 0;
}

.easy-support__slider .swiper-slide img {
  width: 100%;
  display: block;
}

/* ===== 반응형 ===== */
@media (max-width: 1024px) {
  .section--easy-support > div {
    padding: 60px 0;
  }
  .easy-support__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 0;
  }

  .easy-support__text {
    text-align: center;
    width: 400px;
    margin: 0 auto;
  }

  .easy-support__slider .swiper-slide {
    width: clamp(260px, 70vw, 340px);
  }
}

@media (max-width: 768px) {
  .section--easy-support > div {
    width: 100%;
    padding: 40px 0;
    border: none;
  }
  .easy-support__text {
    width: 100%;
    padding: 0 10px;
  }
  .easy-support__title {
    font-size: 38px;
  }

  .easy-support__desc {
    font-size: 14px;
  }
}

/* =============================
    창업이 처음이어도 괜찮
============================= */

.section--support {
  position: relative;
  height: 260vh;
  background: #f8f7f3;
  --support-content-y: -30px;
}

.section--support .support__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  background: url("../img/support_bg.jpg") center / 100% 100% no-repeat;
}
.section--support .support__sticky::before {
  content: "";
  width: 100%;
  height: 40px;
  background: url("../img/support_symbol.png") center / contain no-repeat;
  position: absolute;
  top: 20px;
  left: 0;
}
.section--support .support__sticky::after {
  content: "";
  width: 100%;
  height: 40px;
  background: url("../img/support_symbol.png") center / contain no-repeat;
  position: absolute;
  bottom: 20px;
  left: 0;
}

.section--support .support__stage {
  position: absolute;
  top: 0;
  left: 50%;

  height: 100%;
  width: 100%;
  aspect-ratio: auto;
  transform: translateX(-50%) translateY(var(--support-content-y));
}

.section--support .support__brand {
  position: absolute;
  top: 15%;
  left: 50%;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0;
  transform: translateX(-50%);
  font-size: clamp(18px, 1.45vw, 28px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #111;
  white-space: nowrap;
}

.section--support .support__brand-logo {
  display: block;
  width: clamp(180px, 25vw, 410px);
  height: auto;
}

.section--support .support__visual {
  position: absolute;
  inset: 0;
  max-width: 1920px;
  margin: 0 auto;
}

.section--support .support__circle {
  position: absolute;
  top: 54.9%;
  left: 50%;
  display: block;
  height: auto;
  user-select: none;
  -webkit-user-drag: none;
  backface-visibility: hidden;
  will-change: transform;
  transform: translate(-50%, -50%)
    translate(var(--support-move-x, 0px), var(--support-move-y, 0px));
}

/* 4개 카드 원 */
.section--support .support__circle--card {
  width: 18.23%;
  z-index: 2;
}

/* 중앙 원 */
.section--support .support__circle--center {
  width: 25.73%;
  z-index: 5;
}

/* 기본 배치 */
.section--support .support__circle--01 {
  --support-move-x: clamp(-695px, -36.2vw, -260px);
  --support-move-y: 0px;
}

.section--support .support__circle--02 {
  --support-move-x: clamp(-385px, -20.05vw, -145px);
  --support-move-y: 0px;
}

.section--support .support__circle--03 {
  --support-move-x: clamp(145px, 20.05vw, 385px);
  --support-move-y: 0px;
}

.section--support .support__circle--04 {
  --support-move-x: clamp(260px, 36.2vw, 695px);
  --support-move-y: 0px;
}

@media (max-width: 1024px) {
  .section--support {
    width: 100%;
    height: auto;
    margin-left: 0;
    overflow: hidden;
  }

  .section--support .support__sticky {
    position: relative;
    height: auto;
    padding: 120px 20px;
  }

  .section--support .support__sticky::before,
  .section--support .support__sticky::after {
    height: 28px;
    background-size: auto 28px;
  }

  .section--support .support__stage {
    position: relative;
    inset: auto;
    left: unset;
    transform: unset;
  }

  .section--support .support__brand {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin: 0 auto 36px;
    font-size: 22px;
  }

  .section--support .support__visual {
    position: relative;
    inset: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 10px;
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
  }

  .section--support .support__circle {
    position: static;
    width: 100%;
    max-width: 240px;
    margin: 0 auto;
    transform: none !important;
  }

  .section--support .support__circle--center {
    grid-column: 1 / -1;
    order: 0;
    width: min(72vw, 300px);
    max-width: 300px;
    margin-bottom: 8px;
  }

  .section--support .support__circle--01 {
    order: 1;
  }

  .section--support .support__circle--02 {
    order: 2;
  }

  .section--support .support__circle--03 {
    order: 3;
  }

  .section--support .support__circle--04 {
    order: 4;
  }
}

@media (max-width: 480px) {
  .section--support .support__sticky {
    padding: 100px 15px;
  }

  .section--support .support__brand {
    margin-bottom: 28px;
    font-size: 18px;
  }

  .section--support .support__visual {
    gap: 10px 8px;
  }

  .section--support .support__circle {
    max-width: 180px;
  }

  .section--support .support__circle--center {
    width: min(76vw, 260px);
    max-width: 260px;
  }
}

/* ------------------------------
    메뉴 menu
------------------------------ */
#dn_con18.menu {
  position: relative;
  overflow: hidden;
  background: var(--main-black);
  color: #fff;
  padding: clamp(90px, 8.3vw, 160px) 0 clamp(92px, 8vw, 154px);
}

.menu_showcase_title {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) auto minmax(120px, 1fr);
  align-items: center;
  gap: clamp(36px, 5.6vw, 108px);
  /* margin-bottom: clamp(66px, 6.3vw, 120px); */
}

.menu_showcase_title span {
  display: block;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.72);
}

.menu_showcase_title h2 {
  color: #fff;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  line-height: 1.3;
}
  
.menu_cta {
  width: 100%;
  text-align: center;
  padding: clamp(40px, 12vw, 80px) 0;
}
.menu_cta .menu_btn {
  border-radius: 100px;
  padding: clamp(10px, 2vw, 16px) clamp(20px, 2vw, 30px);
  background: rgba(255, 255, 255, 0.1);
  font-size: clamp(14px, 1.3vw, 18px);
  font-family: "Museum", sans-serif;
  transition: 0.3s;
}
.menu_cta .menu_btn:hover {
  background: rgba(255, 255, 255, 0.3);
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.34));
}

.menu_showcase_rows {
  display: flex;
  flex-direction: column;
  gap: clamp(48px, 4.5vw, 86px);
}

.menu_showcase_row {
  position: relative;
  --menu-rail-height: 190px;
  --menu-image-height: 190px;
  --menu-name-gap: 22px;
  min-height: calc(var(--menu-rail-height) + var(--menu-name-gap) + 42px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.menu_showcase_rows .h4 {
  font-size: clamp(20px, 2vw, 32px);
  overflow-wrap: anywhere;
}
.menu_showcase_row::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  min-width: 2071px;
  height: var(--menu-rail-height);
  background: url("../img/menu_bg_rail.png") center / auto
    var(--menu-rail-height) repeat-x;
  transform: translateX(-50%);
  opacity: 0.05;
  pointer-events: none;
}

.menu_showcase_row.row_sushi::before {
  top: 1vw;
}

.menu_showcase_swiper {
  position: relative;
  z-index: 2;
  width: min(1480px, calc(100% - 280px));
  margin: 0 auto;
  overflow: hidden;
  padding: 0 0 46px;
}

.menu_showcase_swiper .swiper-wrapper {
  align-items: center;
}

.menu_showcase_item {
  display: grid;
  grid-template-rows: var(--menu-image-height) auto;
  justify-items: center;
  align-items: center;
  text-align: center;
}

.menu_showcase_item::before {
  display: none;
}

.menu_showcase_item img {
  align-self: center;
  justify-self: center;
  display: block;
  width: 100%;
  max-width: 300px;
  max-height: var(--menu-image-height);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.34));
}

.menu_showcase_sushi1 {
  --menu-img: url("../img/menu_sushi1.png");
}

.menu_showcase_sushi2 {
  --menu-img: url("../img/menu_sushi2.png");
}

.menu_showcase_sushi3 {
  --menu-img: url("../img/menu_sushi3.png");
}

.menu_showcase_sushi4 {
  --menu-img: url("../img/menu_sushi4.png");
}

.menu_showcase_sushi5 {
  --menu-img: url("../img/menu_sushi5.png");
}

.menu_showcase_side1 {
  --menu-img: url("../img/menu_side1.png");
}

.menu_showcase_side2 {
  --menu-img: url("../img/menu_side2.png");
}

.menu_showcase_side3 {
  --menu-img: url("../img/menu_side3.png");
}

.menu_showcase_side4 {
  --menu-img: url("../img/menu_side4.png");
}

.menu_showcase_side5 {
  --menu-img: url("../img/menu_side5.png");
}

.menu_showcase_item p {
  width: 100%;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -1.6px;
  margin-top: var(--menu-name-gap);
  text-align: center;
}

.menu_showcase_arrow {
  position: absolute;
  top: 77px;
  z-index: 3;
  width: 50px;
  height: 50px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.26);
  cursor: pointer;
}

.menu_showcase_arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 13px;
  height: 13px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
}

.menu_showcase_arrow--prev {
  left: max(20px, calc((100% - min(1480px, calc(100% - 280px))) / 2));
}

.menu_showcase_arrow--prev::before {
  transform: translate(-38%, -50%) rotate(-135deg);
}

.menu_showcase_arrow--next {
  right: max(20px, calc((100% - min(1480px, calc(100% - 280px))) / 2));
}

.menu_showcase_arrow--next::before {
  transform: translate(-62%, -50%) rotate(45deg);
}

.menu_showcase_arrow:hover {
  background: rgba(255, 255, 255, 0.38);
}

@media (max-width: 1400px) {
  .menu_showcase_swiper {
    width: min(1240px, calc(100% - 180px));
  }

  .menu_showcase_arrow--prev {
    left: max(20px, calc((100% - min(1240px, calc(100% - 180px))) / 2));
  }

  .menu_showcase_arrow--next {
    right: max(20px, calc((100% - min(1240px, calc(100% - 180px))) / 2));
  }
  .menu_showcase_row:nth-child(1)::before {
    top: 0;
  }
}

@media (max-width: 1024px) {
  .menu_showcase_title {
    grid-template-columns: minmax(48px, 1fr) auto minmax(48px, 1fr);
    gap: 26px;
  }

  .menu_showcase_row {
    justify-content: center;
    padding: 0 72px 12px;
    --menu-rail-height: 158px;
    --menu-image-height: 158px;
    --menu-name-gap: 18px;
  }

  .menu_showcase_swiper {
    width: 100%;
    margin: 0;
    padding: 0 0 40px;
  }

  /* .menu_showcase_item img {
    max-width: 180px;
  } */

  .menu_showcase_arrow {
    top: 64px;
    width: 44px;
    height: 44px;
  }

  .menu_showcase_arrow--prev {
    left: 72px;
  }

  .menu_showcase_arrow--next {
    right: 72px;
  }
}

@media (max-width: 768px) {
  #dn_con18.menu {
    padding: 70px 0 78px;
  }

  .menu_showcase_title {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0 20px;
    /* margin-bottom: 50px; */
  }

  .menu_showcase_title span {
    display: none;
  }

  .menu_showcase_title h2 {
    white-space: normal;
    letter-spacing: -2px;
  }

  .menu_showcase_rows {
    gap: 42px;
  }

  .menu_showcase_row {
    padding: 0 0 10px;
    --menu-rail-height: 170px;
    --menu-image-height: 170px;
    --menu-name-gap: 14px;
  }

  .menu_showcase_row::before {
    height: var(--menu-rail-height);
    background-size: auto var(--menu-rail-height);
  }

  .menu_showcase_swiper {
    margin-top: 0;
    padding: 0 0 34px;
  }

  /* .menu_showcase_item img {
    max-width: 210px;
  } */

  .menu_showcase_item p {
    letter-spacing: -1px;
    margin-top: 14px;
  }

  .menu_showcase_arrow {
    top: 55px;
    width: 40px;
    height: 40px;
  }

  .menu_showcase_arrow::before {
    width: 10px;
    height: 10px;
    border-width: 2px;
  }

  .menu_showcase_arrow--prev {
    left: 20px;
  }

  .menu_showcase_arrow--next {
    right: 20px;
  }
}

@media (max-width: 480px) {
  .menu_showcase_row {
    --menu-rail-height: 158px;
    --menu-image-height: 158px;
    --menu-name-gap: 12px;
  }

  /* .menu_showcase_item img {
    max-width: 190px;
  } */

  .menu_showcase_arrow--prev {
    left: 20px;
  }

  .menu_showcase_arrow--next {
    right: 20px;
  }
}

/* =============================
    창업비용
============================= */

.section--cost {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  background: url("../img/support_bg.jpg") center / cover no-repeat;
  color: var(--main-black);
}

.section--cost *,
.section--cost *::before,
.section--cost *::after {
  box-sizing: border-box;
}

.section--cost .cost__inner {
  width: calc(100% - clamp(40px, 8vw, 120px));
  max-width: 1540px;
  margin: 0 auto;
  padding: clamp(72px, 8vw, 150px) 0 0;
}

.section--cost .cost__head {
  text-align: center;
  margin-bottom: clamp(36px, 4vw, 72px);
}

.section--cost .cost__title {
  margin: 0;
  font-family: "Museum", serif;
  font-size: clamp(34px, 4vw, 70px);
  font-weight: 900;
  color: var(--main-black);
  line-height: 1.2;
  letter-spacing: -0.055em;
}

.section--cost .cost__desc {
  margin: 22px 0 0;
  font-size: clamp(14px, 1.3vw, 24px);
  color: var(--main-black);
  line-height: 1.5;
}

.section--cost .cost__table-frame {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.section--cost .cost__table-img {
  display: block;
  width: 100%;
  height: auto;
  user-select: none;
  -webkit-user-drag: none;
}

/* 반응형 */
@media (max-width: 1024px) {
  .section--cost {
    width: 100%;
    margin-left: 0;
  }

  .section--cost .cost__inner {
    padding: 90px 0 0;
  }

  .section--cost .cost__head {
    margin-bottom: 38px;
  }
}

@media (max-width: 768px) {
  .section--cost .cost__table-img {
    width: 100%;
    height: auto;
    object-fit: initial;
    object-position: initial;
  }
}

@media (max-width: 640px) {
  .section--cost .cost__inner {
    padding: 72px 0 0;
  }

  .section--cost .cost__head {
    margin-bottom: 28px;
  }

  .section--cost .cost__table-frame {
    position: relative;
    width: 100%;
    overflow: hidden;
  }

  .section--cost .cost__picture {
    display: block;
    width: 100%;
  }

  .section--cost .cost__table-img {
    display: block;
    width: 100%;
    height: auto;
    user-select: none;
    -webkit-user-drag: none;
  }
}

/* =============================
    창업절차
============================= */

#dn_process {
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 8vw, 150px) 0;
  background: url("../img/support_bg.jpg") center / cover no-repeat;
}

#dn_process::after {
  content: "HOJU SUSHI HOJU SUSHI";
  font-family: "Museum", sans-serif;
  position: absolute;
  left: 50%;
  bottom: -34px;
  transform: translateX(-50%);
  font-size: clamp(80px, 13vw, 190px);
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  color: rgba(0, 0, 0, 0.035);
  pointer-events: none;
  z-index: 0;
}

.dn_process-inner {
  position: relative;
  z-index: 1;
  width: calc(100% - 40px);
  max-width: 1540px;
  margin: 0 auto;
}

.dn_process-title {
  text-align: center;
  margin-bottom: 80px;
}

.dn_process-title h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 70px);
  font-weight: 900;
  color: var(--main-black);
  line-height: 1.2;
}

.dn_process-title p {
  margin: 22px 0 0;
  font-size: clamp(14px, 1.3vw, 24px);
  color: var(--main-black);
  line-height: 1.5;
}

/* PC 레이아웃 */
.dn_process-grid {
  display: grid;
  grid-template-columns:
    minmax(0, 486px)
    45px
    minmax(0, 486px)
    45px
    minmax(0, 486px);
  grid-template-areas:
    "p1 a1 p2 a2 p3"
    "p4 a3 p5 a4 p6";
  align-items: center;
  justify-content: center;
  row-gap: 24px;
  column-gap: 0;
}

.dn_process-card img {
  display: block;
  width: 100%;
  height: auto;
}

.dn_process-card--1 {
  grid-area: p1;
}

.dn_process-card--2 {
  grid-area: p2;
}

.dn_process-card--3 {
  grid-area: p3;
}

.dn_process-card--4 {
  grid-area: p4;
}

.dn_process-card--5 {
  grid-area: p5;
}

.dn_process-card--6 {
  grid-area: p6;
}

.dn_process-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
}

.dn_process-arrow img {
  display: block;
  width: 100%;
  max-width: 45px;
  height: auto;
}

.dn_process-arrow--1 {
  grid-area: a1;
}

.dn_process-arrow--2 {
  grid-area: a2;
}

.dn_process-arrow--3 {
  grid-area: a3;
}

.dn_process-arrow--4 {
  grid-area: a4;
}

/* PC에서는 03과 04 사이 화살표 숨김 */
.dn_process-arrow--mobile {
  display: none;
}

@media (max-width: 1100px) {
  .dn_process-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 34px minmax(0, 1fr);
    grid-template-areas:
      "p1 a1 p2"
      "p3 a2 p4"
      "p5 a3 p6";
    row-gap: 22px;
    column-gap: 0;
    max-width: 980px;
    margin: 0 auto;
    align-items: center;
  }

  .dn_process-card--1 {
    grid-area: p1;
  }

  .dn_process-card--2 {
    grid-area: p2;
  }

  .dn_process-card--3 {
    grid-area: p3;
  }

  .dn_process-card--4 {
    grid-area: p4;
  }

  .dn_process-card--5 {
    grid-area: p5;
  }

  .dn_process-card--6 {
    grid-area: p6;
  }

  .dn_process-arrow--1 {
    grid-area: a1;
    display: flex;
  }

  .dn_process-arrow--2 {
    grid-area: a2;
    display: flex;
  }

  .dn_process-arrow--3 {
    grid-area: a3;
    display: flex;
  }

  .dn_process-arrow--4,
  .dn_process-arrow--mobile {
    display: none !important;
  }

  .dn_process-arrow {
    align-items: center;
    justify-content: center;
  }

  .dn_process-arrow img {
    width: 34px;
    max-width: 34px;
  }
}

@media (max-width: 768px) {
  .dn_process-grid {
    grid-template-columns: minmax(0, 1fr) 22px minmax(0, 1fr);
    row-gap: 14px;
  }

  .dn_process-arrow img {
    width: 22px;
    max-width: 22px;
  }
}

@media (max-width: 540px) {
  .dn_process-inner {
    width: calc(100% - 32px);
  }

  .dn_process-title {
    margin-bottom: 40px;
  }

  .dn_process-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "p1"
      "p2"
      "p3"
      "p4"
      "p5"
      "p6";
    gap: 16px;
    max-width: 486px;
    margin: 0 auto;
  }

  .dn_process-card--1 {
    grid-area: p1;
  }

  .dn_process-card--2 {
    grid-area: p2;
  }

  .dn_process-card--3 {
    grid-area: p3;
  }

  .dn_process-card--4 {
    grid-area: p4;
  }

  .dn_process-card--5 {
    grid-area: p5;
  }

  .dn_process-card--6 {
    grid-area: p6;
  }

  .dn_process-card {
    width: 100%;
  }

  .dn_process-card img {
    width: 100%;
    height: auto;
  }

  .dn_process-arrow,
  .dn_process-arrow--mobile {
    display: none !important;
  }
}

/* ==============================
    매장찾기
============================== */

.section--info {
  height: auto;
  position: relative;
  background: url("../img/info_bg.jpg") center bottom / cover no-repeat;
}

.section--info h3 {
  color: var(--main-black);
  text-align: center;
  margin-bottom: 24px;
  font-size: clamp(34px, 4vw, 70px);
  font-family: "Museum";
  font-weight: 700;
}

.section--info .dn_store-wrapper > p {
  text-align: center;
  font-size: clamp(14px, 1.3vw, 24px);
  line-height: 150%;
  letter-spacing: -0.4px;
  margin-bottom: 80px;
  font-family: "Pretendard";
  color: var(--main-black);
}

.dn_store-wrapper .dn_list {
  position: relative;
  width: 100%;
  height: 630px;
  margin-bottom: clamp(80px, 8vw, 150px);
}
/* 지도 */
#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-black);
}

/* 검색창 */
.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;
  background-color: var(--main-black);
  color: #fff;
}

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

.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: var(--main-black);
}

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

.store-phone {
  font-size: 14px;
  color: #a57220;
  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-black);
  color: white;
  font-size: 14px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: 0.2s;
}
.store-link-button:hover {
  opacity: 0.8;
}

.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;
}

/* ==============================
    기사섹션
============================== */

.press_card {
  display: block;
  overflow: hidden;
  transition: 0.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: 0.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: 1200px) {
  /* 메인비주얼 */
  .video_banner .hero-content p {
    font-size: 24px;
  }
}

@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;
  }
  /* 지도 */
  .dn_store-wrapper .dn_list {
    height: fit-content;
  }
  #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) {
  .press_title {
    padding-bottom: 40px;
  }
  /* 큰 타이틀 설명 20 */
  .section--info .dn_store-wrapper > p,
  .press_title_sm {
    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;
  }
}

/* =========================
  최하단 레일 섹션
========================= */

.section--rail {
  width: 100%;
  overflow: hidden;
}

.rail__picture {
  display: block;
  width: 100%;
}

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