@charset "utf-8";

/* 메인 원페이지 — PC 레이아웃. lg(1024) 이상은 시안 비율 유지 */

.main-page {
  padding-top: var(--header-h);
  background: #fff;
  color: var(--color-text);
  overflow: hidden;
}

.main-page .section {
  position: relative;
  scroll-margin-top: var(--header-h);
}

.main-page .container {
  width: min(calc(100% - 48px), var(--container-width));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.period-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 121px;
  height: 36px;
  padding: 0 20px;
  border: 1px solid rgba(18, 18, 18, 0.15);
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.28px;
  color: var(--color-text);
}

/* 1. 브랜드 인트로 — Figma 19:171 (1920x708) */
.section-brand-intro {
  --brand-scale: 1;
  position: relative;
  container-type: inline-size;
  height: auto;
  min-height: 0;
  overflow: hidden;
  background: #fff url("../img/main/section1/section_1_bg.png") center / cover no-repeat;
}

.section-brand-intro::before {
  content: "";
  display: none;
}

.brand-intro__stage {
  position: relative;
  width: 1920px;
  height: 708px;
  left: 50%;
  margin-left: -960px;
}

.brand-intro__canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 1920px;
  height: 708px;
  pointer-events: none;
}

.brand-intro__utensil,
.brand-intro__roll,
.brand-intro__frame {
  position: absolute;
  display: block;
  max-width: none;
}

.brand-intro__utensil {
  mix-blend-mode: multiply;
  transform-origin: 8% 100%;
}

.brand-intro__utensil--spoon {
  left: 0;
  top: 364px;
  width: 291px;
  height: 349px;
}

.brand-intro__utensil--fork {
  left: 0;
  top: 525px;
  width: 362px;
  height: 196px;
}

.brand-intro__roll {
  left: 1069px;
  top: -354px;
  z-index: 2;
  width: 474px;
  height: 1416px;
  overflow: hidden;
}

.brand-intro__roll-track {
  display: flex;
  flex-direction: column;
  will-change: transform;
}

.brand-intro__roll-img {
  display: block;
  width: 474px;
  height: 472px;
  flex-shrink: 0;
  object-fit: cover;
  mix-blend-mode: lighten;
}

.brand-intro__frame {
  z-index: 3;
  width: 59px;
  height: 360px;
  will-change: transform;
}

.brand-intro__frame--left {
  left: 974px;
  top: 172px;
}

.brand-intro__frame--right {
  left: 1579px;
  top: 172px;
}

.section-brand-intro .container {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.brand-intro__content {
  position: relative;
  z-index: 2;
  width: 536px;
  padding-top: 232px;
}

.brand-intro__title {
  font-size: 52px;
  font-weight: 400;
  line-height: 68px;
  letter-spacing: -1.04px;
}

.brand-intro__title em {
  font-style: normal;
  font-weight: 700;
  color: var(--color-primary);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 60px;
}

.hero-tags__item {
  display: inline-flex;
  align-items: center;
  height: 48px;
  padding: 0 24px;
  border-radius: 100px;
  background: var(--color-primary);
  color: #fff;
  font-size: 20px;
  font-weight: 600;
}

.hero-tags__item--soft {
  background: #fcd7cf;
  color: #000;
}

.brand-intro__peeks,
.brand-intro__br {
  display: none;
}

@media (min-width: 1024px) {
  .section-brand-intro::before,
  .brand-intro__stage {
    --brand-scale: min(1, calc(100cqi / 1920px));
  }

  .section-brand-intro::before {
    display: block;
    height: calc(708px * var(--brand-scale));
  }

  .brand-intro__stage {
    position: absolute;
    top: 0;
    transform: scale(var(--brand-scale));
    transform-origin: top center;
  }

  .section-brand-intro .container {
    position: static;
    width: auto;
    max-width: none;
    margin: 0;
    padding: 0;
  }

  .brand-intro__content {
    position: absolute;
    top: 0;
    left: 200px;
    width: 720px;
    padding-top: 232px;
  }

  .brand-intro__title,
  .brand-intro__line,
  .brand-intro__line > span {
    white-space: nowrap;
  }

  .hero-tags {
    flex-wrap: nowrap;
    width: max-content;
  }
}

/* 2. 마퀴 — 1920 기준 52px / 높이 102px */
.section-marquee {
  --marquee-scale: 1;
  height: calc(102px * var(--marquee-scale));
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-primary);
  color: #fff;
}

.marquee__track {
  display: flex;
  width: max-content;
  gap: calc(14px * var(--marquee-scale));
  animation: marquee 25s linear infinite;
}

.marquee__item {
  font-size: calc(52px * var(--marquee-scale));
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0.7;
}

.marquee__item:nth-child(odd) {
  color: #fff;
}

.marquee__item:nth-child(even) {
  color: transparent;
  -webkit-text-stroke: calc(1.5px * var(--marquee-scale)) #fff;
}

@media (min-width: 1024px) {
  .section-marquee {
    --marquee-scale: min(1, calc(100vw / 1920px));
  }
}

@media (max-width: 1023px) {
  .section-marquee {
    --marquee-scale: 0.5;
  }
}

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

/* 3. 1교시 히어로 — Figma 14:1002 (1920x900) */
.section-hero {
  --hero-scale: 1;
  position: relative;
  container-type: inline-size;
  height: auto;
  min-height: 0;
  overflow: hidden;
  background-color: #fee154;
}

.hero__sizer {
  display: none;
}

.hero__stage {
  position: relative;
  width: 1920px;
  height: 900px;
  left: 50%;
  margin-left: -960px;
  background: url("../img/main/section2/section_2_bg.png") 0 0 / 1920px 900px no-repeat;
}

.hero__stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(254, 225, 84, 0) 53%, #fee154 72%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: 1920px;
  height: 900px;
}

.hero__content {
  position: absolute;
  top: 206px;
  left: 1213px;
  width: 453px;
}

.section-hero .period-badge {
  width: 148px;
  min-width: 148px;
  height: 36px;
  padding: 0;
  border: 0;
  border-radius: 43px;
  background: #f04e2a;
  color: #fff;
}

.hero__title {
  margin-top: 10px;
  font-size: 44px;
  font-weight: 500;
  line-height: 52px;
  letter-spacing: -0.88px;
  color: #121212;
}

.hero__desc {
  margin-top: 24px;
  width: 414px;
  font-size: 28px;
  font-weight: 300;
  line-height: 44.8px;
  letter-spacing: -0.56px;
  color: rgba(18, 18, 18, 0.8);
}

.hero__desc--end {
  margin-top: 20px;
}

.hero__visual {
  display: none;
}

@media (min-width: 1024px) {
  .hero__sizer,
  .hero__stage {
    --hero-scale: min(1, calc(100cqi / 1920px));
  }

  .hero__sizer {
    display: block;
    height: calc(900px * var(--hero-scale));
  }

  .hero__stage {
    position: absolute;
    top: 0;
    transform: scale(var(--hero-scale));
    transform-origin: top center;
  }
}

/* 4. 메뉴 — Figma 14:1021 (1920x1481) */
.section-menu {
  padding: 160px 0 171px;
  background: #fff;
}

.section-head {
  text-align: center;
}

.section-head__sub {
  margin-top: 20px;
  font-size: 40px;
  font-weight: 400;
  letter-spacing: -0.8px;
}

.section-head__title {
  margin-top: 8px;
  font-size: 64px;
  font-weight: 600;
  letter-spacing: -1.28px;
  line-height: 1.2;
}

.section-menu .period-badge {
  width: 133px;
  min-width: 133px;
  height: 36px;
  padding: 0;
  border: 0;
  border-radius: 43px;
  background: #f04e2a;
  color: #fff;
}

.section-menu .section-head__copy {
  margin-top: 20px;
}

.section-menu .section-head__sub {
  margin-top: 0;
  line-height: 56px;
  color: #121212;
}

.section-menu .section-head__title {
  margin-top: 0;
  font-weight: 600;
  line-height: 89.6px;
  color: #121212;
}

.section-menu .section-head__title em {
  font-style: normal;
  font-weight: 600;
  color: #f04e2a;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 70px;
}

.menu-grid--bottom {
  margin-top: 50px;
}

.menu-card {
  width: 100%;
}

.menu-card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #d9d9d9;
}

.menu-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease-out);
}

.menu-card:hover .menu-card__image img {
  transform: scale(1.04);
}

.menu-card__title {
  margin-top: 20px;
  font-size: 20px;
  font-weight: 600;
  line-height: 23.56px;
  letter-spacing: 0;
  color: #121212;
}

.menu-card__desc {
  margin-top: 6px;
  font-size: 16px;
  font-weight: 400;
  line-height: 18.84px;
  letter-spacing: 0;
  color: rgba(18, 18, 18, 0.5);
}

@media (min-width: 1024px) {
  .section-menu {
    --menu-scale: min(1, calc(100vw / 1920px));
    padding: calc(160px * var(--menu-scale)) 0 calc(171px * var(--menu-scale));
  }

  .section-menu .section-head__copy {
    margin-top: calc(20px * var(--menu-scale));
  }

  .section-menu .section-head__sub {
    font-size: calc(40px * var(--menu-scale));
    letter-spacing: calc(-0.8px * var(--menu-scale));
    line-height: calc(56px * var(--menu-scale));
  }

  .section-menu .section-head__title {
    font-size: calc(64px * var(--menu-scale));
    letter-spacing: calc(-1.28px * var(--menu-scale));
    line-height: calc(89.6px * var(--menu-scale));
  }

  .section-menu .menu-grid {
    gap: calc(20px * var(--menu-scale));
    margin-top: calc(70px * var(--menu-scale));
  }

  .section-menu .menu-grid--bottom {
    margin-top: calc(50px * var(--menu-scale));
  }

  .section-menu .menu-card__title {
    margin-top: calc(20px * var(--menu-scale));
    font-size: calc(20px * var(--menu-scale));
    line-height: calc(23.56px * var(--menu-scale));
  }

  .section-menu .menu-card__desc {
    margin-top: calc(6px * var(--menu-scale));
    font-size: calc(16px * var(--menu-scale));
    line-height: calc(18.84px * var(--menu-scale));
  }
}

/* 5. 재료/취향 — Figma 39:214 (1920x638) */
.section-ingredient {
  --ingredient-scale: 1;
  position: relative;
  container-type: inline-size;
  height: auto;
  min-height: 0;
  overflow: hidden;
  background: #fff;
  text-align: center;
}

.ingredient__sizer {
  display: none;
}

.ingredient__stage {
  position: relative;
  width: 1920px;
  height: 638px;
  left: 50%;
  margin-left: -960px;
}

.ingredient__canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 1920px;
  height: 638px;
  pointer-events: none;
}

.section-ingredient .container {
  width: 1920px;
  max-width: none;
  margin: 0;
  padding: 0;
}

.ingredient__bg,
.ingredient__object {
  position: absolute;
  display: block;
  max-width: none;
}

.ingredient__bg {
  left: 0;
  top: 0;
  z-index: 0;
  width: 1920px;
  height: 638px;
  overflow: hidden;
}

.ingredient__bg-layer {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.ingredient__object {
  z-index: 1;
  object-fit: cover;
}

.ingredient__object--01 {
  left: 172px;
  top: 0;
  width: 371px;
  height: 241px;
}

.ingredient__object--02 {
  left: 0px;
  top: 97px;
  width: 422px;
  height: 573px;
}

.ingredient__object--03 {
  left: 268px;
  top: 404px;
  width: 285px;
  height: 200px;
}

.ingredient__object--04 {
  left: 0;
  bottom: 0;
  width: 382px;
  height: 223px;
}

.ingredient__object--05 {
  left: 1589px;
  top: 0;
  width: 363px;
  height: 285px;
}

.ingredient__object--06 {
  left: 1738px;
  top: 264px;
  width: 196px;
  height: 270px;
}

.ingredient__object--07 {
  left: 1315px;
  top: 208px;
  width: 636px;
  height: 439px;
}

.ingredient__object--08 {
  left: 1041px;
  bottom: 0;
  width: 489px;
  height: 285px;
}

.ingredient__content {
  position: relative;
  z-index: 2;
  padding-top: 229px;
}

.ingredient__title {
  font-size: 74px;
  font-weight: 700;
  letter-spacing: -1.48px;
  line-height: 103.6px;
  color: #fff;
  white-space: nowrap;
}

.ingredient__title em {
  font-style: normal;
  font-weight: 700;
  color: #f04e2a;
}

.ingredient__br {
  display: none;
}

.ingredient__tags {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 20px;
}

.ingredient__tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: 143px;
  height: 56px;
  padding: 0 24px;
  border-radius: 100px;
  background: #fff;
  color: #000;
  font-size: 20px;
  font-weight: 600;
  line-height: 23.56px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.ingredient__tag img {
  width: 32px;
  height: 32px;
  object-fit: cover;
}

@media (min-width: 1024px) {
  .ingredient__sizer,
  .ingredient__stage {
    --ingredient-scale: min(1, calc(100cqi / 1920px));
  }

  .ingredient__sizer {
    display: block;
    height: calc(638px * var(--ingredient-scale));
  }

  .ingredient__stage {
    position: absolute;
    top: 0;
    transform: scale(var(--ingredient-scale));
    transform-origin: top center;
  }
}

/* 6. 경쟁력 — Figma 26:650 (1920x2247) */
.section-difference {
  --diff-scale: 1;
  position: relative;
  container-type: inline-size;
  height: auto;
  min-height: 0;
  overflow: hidden;
  padding: 0;
  background: #f7f6f3;
  text-align: center;
}

.difference__sizer {
  display: none;
}

.difference__stage {
  position: relative;
  width: 1920px;
  height: 2247px;
  left: 50%;
  margin-left: -960px;
  padding: 200px 0 0;
  background: #f7f6f3 url("../img/main/section5/section_5_bg.png") center / 1920px 2247px no-repeat;
}

.section-difference .period-badge {
  width: 121px;
  min-width: 121px;
  height: 36px;
  padding: 0;
  border: 0;
  border-radius: 43px;
  background: #f04e2a;
  color: #fff;
}

.section-difference .section-head__copy {
  margin-top: 20px;
}

.section-difference .section-head__sub {
  margin-top: 0;
  line-height: 56px;
  color: #121212;
}

.section-difference .section-head__title {
  margin-top: 0;
  font-size: 74px;
  font-weight: 600;
  letter-spacing: -0.74px;
  line-height: 103.6px;
  color: #121212;
}

.difference__canvas {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 1920px;
  height: 2247px;
  pointer-events: none;
  isolation: isolate;
}

.difference__canvas--front {
  z-index: 1;
}

.difference__object {
  position: absolute;
  display: block;
  max-width: none;
  object-fit: contain;
  z-index: auto !important;
}

.difference__object--01 {
  left: 0;
  top: 486px;
  width: 582px;
  height: 686px;
}

.difference__object--02 {
  left: 59px;
  top: 1110px;
  width: 215px;
  height: 187px;
}

.difference__object--03 {
  left: 17px;
  top: 1197px;
  width: 65px;
  height: 79px;
  filter: drop-shadow(4px 22px 8px rgba(0, 0, 0, 0.3));
}

.difference__object--04 {
  left: 0;
  top: 1534px;
  width: 287px;
  height: 360px;
  filter: drop-shadow(16px 28px 18px rgba(0, 0, 0, 0.3));
}

.difference__object--05 {
  left: 0;
  top: 1819px;
  width: 315px;
  height: 428px;
}

.difference__object--06 {
  right: 0;
  top: 56px;
  width: 321px;
  height: 291px;
  filter: drop-shadow(-24px 36px 14px rgba(0, 0, 0, 0.25)) drop-shadow(40px 8px 16px rgba(0, 0, 0, 0.22));
}

.difference__object--07 {
  right: 0;
  top: 765px;
  width: 316px;
  height: 372px;
}

.difference__object--08 {
  right: 0;
  top: 1187px;
  width: 340px;
  height: 410px;
}

.difference__object--09 {
  right: 0;
  top: 1285px;
  width: 420px;
  height: 553px;
}

.difference__content {
  position: relative;
  z-index: 5;
}

.difference__list {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 80px;
  width: 1090px;
  max-width: 100%;
  margin: 110px auto 0;
}

.difference__item {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 307px;
  padding: 74px 40px;
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.difference__item--wide {
  min-height: 349px;
}

.difference__br {
  display: none;
}

.difference__item h3 {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.96px;
  line-height: 56.53px;
  color: #f04e2a;
}

.difference__item p {
  margin-top: 18px;
  font-size: 28px;
  font-weight: 400;
  line-height: 42px;
  letter-spacing: -0.28px;
  color: #121212;
}

@media (min-width: 1024px) {
  .difference__sizer,
  .difference__stage {
    --diff-scale: min(1, calc(100cqi / 1920px));
  }

  .difference__sizer {
    display: block;
    height: calc(2247px * var(--diff-scale));
  }

  .difference__stage {
    position: absolute;
    top: 0;
    transform: scale(var(--diff-scale));
    transform-origin: top center;
  }
}

/* 7. 매력 — Figma 22:473 (1920x670) */
.section-brand-point {
  --point-scale: 1;
  position: relative;
  isolation: isolate;
  container-type: inline-size;
  height: auto;
  min-height: 0;
  overflow: hidden;
  background: #ededed;
}

.brand-point__sizer {
  display: none;
}

.brand-point__stage {
  position: relative;
  width: 1920px;
  height: 670px;
  left: 50%;
  margin-left: -960px;
}

.brand-point__canvas,
.brand-point__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 1920px;
  height: 670px;
}

.brand-point__canvas {
  z-index: 0;
  pointer-events: none;
}

.brand-point__content {
  z-index: 2;
}

.brand-point__paper,
.brand-point__deco,
.brand-point__bottom,
.brand-point__img {
  position: absolute;
  display: block;
  max-width: none;
  object-fit: contain;
}

.brand-point__paper {
  left: 418px;
  top: 16px;
  width: 977px;
  height: 596px;
}

.brand-point__deco {
  left: 367px;
  top: 13px;
  width: 230px;
  height: 168px;
}

.brand-point__bottom {
  left: 0;
  top: 313px;
  z-index: 0;
  width: 1814px;
  height: 357px;
}

.brand-point__img--fork {
  left: 1408px;
  top: 141px;
  width: 477px;
  height: 529px;
}

.brand-point__img--pan {
  left: 19px;
  top: 154px;
  width: 594px;
  height: 424px;
  z-index: 4;
}

.brand-point__img--bowl {
  left: 50%;
  top: 206px;
  width: 402px;
  height: 400px;
  transform: translateX(-50%);
}

.brand-point__title {
  position: absolute;
  left: 569px;
  top: 97px;
  z-index: 4;
  width: 783px;
  font-size: 74px;
  font-weight: 800;
  letter-spacing: -0.74px;
  line-height: 87.16px;
  color: #000;
  text-align: center;
  white-space: nowrap;
}

.brand-point__title em {
  position: relative;
  font-style: normal;
  color: #f04e2a;
}

.brand-point__title-text {
  position: relative;
  display: inline-block;
}

.brand-point__title-star,
.brand-point__title-line {
  position: absolute;
  display: block;
  overflow: visible;
  max-width: none;
  pointer-events: none;
}

.brand-point__title-star {
  left: -8px;
  top: -40px;
  width: 44px;
  height: 48px;
}

.brand-point__title-line {
  left: 0;
  top: 78px;
  width: 285px;
  height: 33px;
}

.brand-point__card {
  position: absolute;
  top: 465px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 113px;
  padding: 20px 30px;
  background: #f04e2a;
  color: #fff;
  text-align: center;
  box-shadow: 4px 8px 16px rgba(0, 0, 0, 0.25);
}

.brand-point__card--left {
  left: 240px;
  width: 225px;
}

.brand-point__card--center {
  left: 816px;
  width: 288px;
}

.brand-point__card--right {
  left: 1463px;
  width: 217px;
}

.brand-point__card small {
  display: block;
  font-size: 22px;
  font-weight: 400;
  line-height: 30.8px;
  letter-spacing: -0.22px;
}

.brand-point__card strong {
  display: block;
  font-size: 36px;
  font-weight: 600;
  line-height: 42.4px;
  letter-spacing: -0.36px;
}

.brand-point__br {
  display: none;
}

@media (min-width: 1024px) {
  .brand-point__hero,
  .brand-point__pair,
  .brand-point__finale {
    display: contents;
  }

  .brand-point__sizer,
  .brand-point__stage {
    --point-scale: min(1, calc(100cqi / 1920px));
  }

  .brand-point__sizer {
    display: block;
    height: calc(670px * var(--point-scale));
  }

  .brand-point__stage {
    position: absolute;
    top: 0;
    transform: scale(var(--point-scale));
    transform-origin: top center;
  }
}

/* 8. VS / 수익률 — Figma 14:1059 (1920x1186) */
.section-margin {
  padding: 150px 0 161px;
  background: #fff;
  text-align: center;
}

.section-margin .period-badge {
  width: 121px;
  min-width: 121px;
  height: 36px;
  padding: 0;
  border: 0;
  border-radius: 43px;
  background: #f04e2a;
  color: #fff;
}

.section-margin .section-head__copy {
  margin-top: 20px;
}

.section-margin .section-head__sub {
  margin-top: 0;
  line-height: 56px;
  color: #121212;
}

.section-margin .section-head__title {
  margin-top: 0;
  font-size: 74px;
  font-weight: 600;
  letter-spacing: -0.74px;
  line-height: 103.6px;
  color: #f04e2a;
}

.margin__compare {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: stretch;
  justify-content: center;
  gap: 60px;
  max-width: 1337px;
  margin: 80px auto 0;
}

.margin__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 579px;
  padding: 0 40px;
  border-radius: 31px;
  background: #121212;
  color: #fff;
  text-align: center;
}

.margin__card--ours {
  width: 100%;
  background: #f04e2a;
}

.margin__card--ours img {
  display: block;
  width: 83px;
  height: 83px;
  margin-bottom: 20px;
  object-fit: contain;
}

.margin__card h3 {
  font-size: 32px;
  font-weight: 700;
  line-height: 37.69px;
  letter-spacing: 0;
}

.margin__card ul {
  margin-top: 45px;
  font-size: 32px;
  font-weight: 400;
  line-height: 37.69px;
}

.margin__card li + li {
  margin-top: 20px;
}

.margin__vs {
  width: auto;
  align-self: center;
  font-size: 128px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -1.28px;
  color: #f04e2a;
  text-transform: lowercase;
  white-space: nowrap;
}

.margin__rate {
  display: block;
  font-size: 170px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -1.7px;
  color: #fff;
}

@media (min-width: 1024px) {
  .section-margin {
    --margin-scale: min(1, calc(100vw / 1920px));
    padding: calc(150px * var(--margin-scale)) 0 calc(161px * var(--margin-scale));
  }

  .section-margin .section-head__copy {
    margin-top: calc(20px * var(--margin-scale));
  }

  .section-margin .section-head__sub {
    font-size: calc(40px * var(--margin-scale));
    letter-spacing: calc(-0.8px * var(--margin-scale));
    line-height: calc(56px * var(--margin-scale));
  }

  .section-margin .section-head__title {
    font-size: calc(74px * var(--margin-scale));
    letter-spacing: calc(-0.74px * var(--margin-scale));
    line-height: calc(103.6px * var(--margin-scale));
  }

  .margin__compare {
    gap: calc(60px * var(--margin-scale));
    margin-top: calc(80px * var(--margin-scale));
  }

  .margin__card,
  .margin__card--ours {
    min-height: calc(579px * var(--margin-scale));
    padding: 0 calc(40px * var(--margin-scale));
    border-radius: calc(31px * var(--margin-scale));
  }

  .margin__card--ours img {
    width: calc(83px * var(--margin-scale));
    height: calc(83px * var(--margin-scale));
    margin-bottom: calc(20px * var(--margin-scale));
  }

  .margin__card h3,
  .margin__card ul {
    font-size: calc(32px * var(--margin-scale));
    line-height: calc(37.69px * var(--margin-scale));
  }

  .margin__card ul {
    margin-top: calc(45px * var(--margin-scale));
  }

  .margin__card li + li {
    margin-top: calc(20px * var(--margin-scale));
  }

  .margin__vs {
    font-size: calc(128px * var(--margin-scale));
    letter-spacing: calc(-1.28px * var(--margin-scale));
  }

  .margin__rate {
    font-size: calc(170px * var(--margin-scale));
    letter-spacing: calc(-1.7px * var(--margin-scale));
  }
}

/* 9. 장사 전 기준 — Figma 22:436 (1920x534) */
.section-problem {
  position: relative;
  isolation: isolate;
  height: 534px;
  min-height: 534px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #121212 url("../img/main/section8/section_8_bg.png") center / cover no-repeat;
  color: #fff;
}

.section-problem .container {
  position: relative;
  z-index: 1;
}

.problem__title {
  font-size: 74px;
  font-weight: 700;
  letter-spacing: -1.48px;
  line-height: 88.8px;
  color: #fff;
}

.problem__title em {
  font-style: normal;
  color: #f04e2a;
}

.problem__desc {
  margin-top: 24px;
  font-size: 36px;
  font-weight: 400;
  letter-spacing: -0.36px;
  line-height: 54px;
  color: #fff;
}

@media (min-width: 1024px) {
  .section-problem {
    --problem-scale: min(1, calc(100vw / 1920px));
    height: calc(534px * var(--problem-scale));
    min-height: calc(534px * var(--problem-scale));
  }

  .problem__title {
    font-size: calc(74px * var(--problem-scale));
    letter-spacing: calc(-1.48px * var(--problem-scale));
    line-height: calc(88.8px * var(--problem-scale));
  }

  .problem__desc {
    margin-top: calc(24px * var(--problem-scale));
    font-size: calc(36px * var(--problem-scale));
    letter-spacing: calc(-0.36px * var(--problem-scale));
    line-height: calc(54px * var(--problem-scale));
  }
}

/* 10. 순수익 — Figma 14:1067 (1920x1075) */
.section-profit {
  --profit-scale: 1;
  position: relative;
  isolation: isolate;
  container-type: inline-size;
  height: auto;
  min-height: 0;
  overflow: hidden;
  background: #e8f2ea;
}

.profit__sizer {
  display: none;
}

.profit__stage {
  position: relative;
  width: 1920px;
  height: 1075px;
  left: 50%;
  margin-left: -960px;
  background: #e8f2ea url("../img/main/section9/section_9_bg.png") center / 1920px 1075px no-repeat;
}

.profit__canvas,
.profit__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 1920px;
  height: 1075px;
}

.profit__canvas {
  z-index: 0;
  pointer-events: none;
}

.profit__content {
  z-index: 2;
}

.profit__deco {
  position: absolute;
  display: block;
  max-width: none;
  object-fit: contain;
}

.profit__deco--clip {
  left: 0;
  top: 0;
  width: 1167px;
  height: 1075px;
}

.profit__deco--grid {
  left: 1491px;
  top: 0;
  width: 429px;
  height: 286px;
}

.profit__deco--tape {
  left: 1451px;
  top: 119px;
  width: 261px;
  height: 136px;
}

.profit__title {
  position: absolute;
  left: 611px;
  top: 160px;
  width: 698px;
  margin: 0;
  font-size: 74px;
  font-weight: 600;
  letter-spacing: -0.74px;
  line-height: 87.16px;
  color: #121212;
  text-align: center;
  white-space: nowrap;
  z-index: 5;
}

.profit__title em {
  position: relative;
  font-style: normal;
  color: #f04e2a;
}

.profit__title-star,
.profit__title-line {
  position: absolute;
  display: block;
  overflow: visible;
  max-width: none;
  pointer-events: none;
}

.profit__title-star {
  right: -53px;
  top: -26px;
  width: 53px;
  height: 58px;
}

.profit__title-line {
  left: 0;
  top: 78px;
  width: 285px;
  height: 33px;
}

.profit__chart {
  position: absolute;
  left: 225px;
  top: 307px;
  width: 620px;
  height: 618px;
  z-index: 5;
}

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

.profit__table {
  position: absolute;
  left: 919px;
  top: 324px;
  width: 761px;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
}

.profit__table col:nth-child(1) {
  width: 207px;
}

.profit__table col:nth-child(2) {
  width: 364px;
}

.profit__table col:nth-child(3) {
  width: 190px;
}

.profit__table th,
.profit__table td {
  height: 69px;
  padding: 0 8px;
  border-bottom: 1px solid #d5d5d5;
  font-size: 20px;
  letter-spacing: -0.4px;
  line-height: 28px;
  color: rgba(0, 0, 0, 0.8);
  text-align: center;
  vertical-align: middle;
}

.profit__table thead th {
  height: 62px;
  border-bottom: 0;
  background: #f04e2a;
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -2px;
  line-height: 22px;
}

.profit__table thead th:first-child {
  border-top-left-radius: 16px;
}

.profit__table thead th:last-child {
  border-top-right-radius: 16px;
}

.profit__table tbody th {
  font-weight: 600;
}

.profit__table tbody td:nth-child(2) {
  font-weight: 400;
}

.profit__table tbody td:nth-child(3) {
  font-weight: 600;
}

.profit__table tbody tr:last-child th,
.profit__table tbody tr:last-child td {
  height: 68px;
  border-bottom: 0;
}

.profit__table tfoot td {
  height: 110px;
  border-bottom: 0;
  background: #f04e2a;
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 50px;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}

.profit__table tfoot span,
.profit__table tfoot strong {
  font-weight: 700;
}

.profit__table tfoot strong {
  margin-left: 16px;
}

.profit__br {
  display: none;
}

@media (min-width: 1024px) {
  .profit__head,
  .profit__board {
    display: contents;
  }

  .profit__sizer,
  .profit__stage {
    --profit-scale: min(1, calc(100cqi / 1920px));
  }

  .profit__sizer {
    display: block;
    height: calc(1075px * var(--profit-scale));
  }

  .profit__stage {
    position: absolute;
    top: 0;
    transform: scale(var(--profit-scale));
    transform-origin: top center;
  }
}

/* 11. 창업비용 — Figma 14:1128 (1920x1287) */
.section-startup-cost {
  --startup-scale: 1;
  position: relative;
  isolation: isolate;
  container-type: inline-size;
  height: auto;
  min-height: 0;
  overflow: hidden;
  background: #f7f6f3;
}

.startup__sizer {
  display: none;
}

.startup__stage {
  position: relative;
  width: 1920px;
  height: 1287px;
  left: 50%;
  margin-left: -960px;
}

.startup__canvas,
.startup__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 1920px;
  height: 1287px;
}

.startup__canvas {
  z-index: 0;
  pointer-events: none;
}

.startup__content {
  z-index: 2;
}

.startup__stamp {
  position: absolute;
  left: 1352px;
  top: 152px;
  display: block;
  width: 235px;
  height: 235px;
  max-width: none;
  transform-origin: 50% 50%;
}

.startup__head {
  position: absolute;
  left: 418px;
  top: 150px;
  width: 1085px;
  text-align: center;
}

.section-startup-cost .period-badge {
  width: 133px;
  min-width: 133px;
  height: 36px;
  padding: 0;
  border: 0;
  border-radius: 43px;
  background: #f04e2a;
  color: #fff;
}

.startup__sub {
  margin: 20px 0 0;
  font-size: 36px;
  font-weight: 400;
  letter-spacing: -0.72px;
  line-height: 50.4px;
  color: #f04e2a;
}

.startup__title {
  margin: 0;
  font-size: 64px;
  font-weight: 600;
  letter-spacing: -1.28px;
  line-height: 75.38px;
  color: #121212;
}

.startup__table {
  position: absolute;
  left: 240px;
  top: 401px;
  width: 1440px;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
  background: #fff;
}

.startup__table col:nth-child(1) {
  width: 254px;
}

.startup__table col:nth-child(2) {
  width: 708px;
}

.startup__table col:nth-child(3),
.startup__table col:nth-child(4) {
  width: 239px;
}

.startup__table th,
.startup__table td {
  height: 69px;
  padding: 0 8px;
  border: 0;
  border-right: 1px solid #d5d5d5;
  border-bottom: 1px solid #d5d5d5;
  font-size: 20px;
  letter-spacing: -1px;
  line-height: 28px;
  color: rgba(0, 0, 0, 0.8);
  text-align: center;
  vertical-align: middle;
}

.startup__table tr > :first-child {
  border-left: 1px solid #d5d5d5;
}

.startup__table thead th {
  height: 63px;
  border-top: 1px solid #d5d5d5;
  background: #f04e2a;
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -2px;
  line-height: 22px;
}

.startup__table thead th:first-child {
  border-top-left-radius: 16px;
}

.startup__table thead th:last-child {
  border-top-right-radius: 16px;
}

.startup__table tbody th {
  font-weight: 600;
  letter-spacing: -2px;
}

.startup__table tbody td {
  font-weight: 400;
}

.startup__table tbody tr:nth-child(5) th,
.startup__table tbody tr:nth-child(5) td,
.startup__table tbody tr:nth-child(6) th,
.startup__table tbody tr:nth-child(6) td {
  height: 104px;
}

.startup__strike {
  position: relative;
  display: inline-block;
  min-width: 44px;
}

.startup__strike::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 44px;
  height: 2px;
  margin: -1px 0 0 -22px;
  background: #f04e2a;
}

.startup__support {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 42px;
  color: rgba(0, 0, 0, 0.8);
}

.startup__badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 162px;
  height: 63px;
  border-radius: 92px;
  background: #f04e2a;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -1px;
  line-height: 19.6px;
}

.startup__badge--wide {
  width: 164px;
}

.startup__badge strong {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -1px;
  line-height: 25.2px;
}

.startup__table tfoot td {
  height: 98px;
  border: 0;
  background: #f04e2a;
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 42px;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}

.startup__notes {
  position: absolute;
  left: 240px;
  top: 1056px;
  width: 404px;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -1px;
  line-height: 27px;
  color: #000;
}

.startup__notes p {
  position: relative;
  margin: 0;
  padding-left: 14px;
}

.startup__notes p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
}

.startup__notes p:last-child {
  color: #f04e2a;
}

.startup__br,
.startup__cards {
  display: none;
}

@media (min-width: 1024px) {
  .startup__sizer,
  .startup__stage {
    --startup-scale: min(1, calc(100cqi / 1920px));
  }

  .startup__sizer {
    display: block;
    height: calc(1287px * var(--startup-scale));
  }

  .startup__stage {
    position: absolute;
    top: 0;
    transform: scale(var(--startup-scale));
    transform-origin: top center;
  }
}

/* 12. 추천 — Figma 48:422 (1920x1096) */
.section-recommend {
  --recommend-scale: 1;
  position: relative;
  isolation: isolate;
  container-type: inline-size;
  height: auto;
  min-height: 0;
  overflow: hidden;
  background: #fff;
}

.recommend__sizer {
  display: none;
}

.recommend__stage {
  position: relative;
  width: 1920px;
  height: 1096px;
  left: 50%;
  margin-left: -960px;
  background: #fff url("../img/main/section11/section_11_bg.png") center / 1920px 1096px no-repeat;
}

.recommend__canvas,
.recommend__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 1920px;
  height: 1096px;
}

.recommend__canvas {
  z-index: 0;
  pointer-events: none;
}

.recommend__content {
  z-index: 2;
}

.recommend__deco-wrap,
.recommend__deco,
.recommend__img {
  position: absolute;
  display: block;
  max-width: none;
}

.recommend__deco-wrap {
  left: 0;
  top: 318px;
  z-index: 0;
  width: 1920px;
  height: 597px;
  overflow: hidden;
  transform-origin: 0% 50%;
}

.recommend__deco {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.recommend__img {
  left: 669px;
  top: 318px;
  z-index: 1;
  width: 583px;
  height: 582px;
}

.recommend__head {
  position: absolute;
  left: 557px;
  top: 110px;
  width: 808px;
  text-align: center;
}

.recommend__eyebrow {
  margin: 0;
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.48px;
  line-height: 56.53px;
  color: #000;
}

.recommend__title {
  margin: 0;
  font-size: 74px;
  font-weight: 800;
  letter-spacing: -0.74px;
  line-height: 87.16px;
  color: #000;
  white-space: nowrap;
}

.recommend__title em {
  font-style: normal;
  color: #f04e2a;
}

.recommend__card {
  position: absolute;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 264px;
  height: 180px;
  padding-top: 25px;
  background: #fff;
  border-top: 5px solid #ffdf44;
  text-align: center;
}

.recommend__card small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 41px;
  border-radius: 43px;
  background: #f04e2a;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.36px;
  line-height: 21.2px;
}

.recommend__card p {
  margin: 10px 0 0;
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.36px;
  line-height: 42.4px;
  color: #121212;
}

.recommend__card--1 {
  left: 362px;
  top: 318px;
}

.recommend__card--2 {
  left: 1302px;
  top: 318px;
  width: 256px;
}

.recommend__card--3 {
  left: 346px;
  top: 752px;
  width: 295px;
}

.recommend__card--4 {
  left: 1282px;
  top: 752px;
  width: 295px;
}

.recommend__cta {
  position: absolute;
  left: 653px;
  top: 936px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 619px;
  margin: 0;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: -0.32px;
  line-height: 38.4px;
  color: #121212;
  text-align: center;
  white-space: nowrap;
}

.recommend__cta em {
  position: relative;
  font-style: normal;
}

.recommend__cta-star,
.recommend__cta-line {
  display: block;
  max-width: none;
  pointer-events: none;
}

.recommend__cta-star {
  position: relative;
  width: 27px;
  height: 29px;
  flex-shrink: 0;
}

.recommend__cta-line {
  position: absolute;
  left: 0;
  top: 34px;
  width: 333px;
  height: 9px;
}

.recommend__br {
  display: none;
}

@media (min-width: 1024px) {
  .recommend__cards,
  .recommend__cta-wrap {
    display: contents;
  }

  .recommend__sizer,
  .recommend__stage {
    --recommend-scale: min(1, calc(100cqi / 1920px));
  }

  .recommend__sizer {
    display: block;
    height: calc(1096px * var(--recommend-scale));
  }

  .recommend__stage {
    position: absolute;
    top: 0;
    transform: scale(var(--recommend-scale));
    transform-origin: top center;
  }
}

/* 13. 창업문의 — Figma 22:577 (1920x1358) */
.section-contact {
  padding: 150px 0;
  background: #fff;
  color: #121212;
}

.contact__inner {
  width: 1196px;
  max-width: calc(100% - 48px);
  margin: 0 auto;
}

.contact__head {
  text-align: center;
}

.contact__head .period-badge {
  width: 124px;
  min-width: 124px;
  height: 36px;
  padding: 0;
  border: 0;
  border-radius: 43px;
  background: #f04e2a;
  color: #fff;
}

.contact__title {
  margin: 20px 0 0;
  font-size: 64px;
  font-weight: 600;
  letter-spacing: -1.28px;
  line-height: 76.8px;
  color: #121212;
}

.contact__desc {
  margin: 20px 0 0;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: -0.32px;
  line-height: 38.4px;
  color: #121212;
}

.contact-form {
  margin-top: 66px;
  padding-top: 50px;
  border-top: 1px solid #000;
}

.contact-form__legend {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
}

.contact-form__legend strong {
  font-size: 32px;
  font-weight: 600;
  line-height: 37.69px;
  color: #121212;
}

.contact-form__legend span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 300;
  letter-spacing: -0.36px;
  line-height: 21.6px;
  color: rgba(18, 18, 18, 0.7);
}

.contact-form__dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f04e2a;
  flex-shrink: 0;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  margin-bottom: 32px;
}

.contact-form__row--choice {
  min-height: 24px;
}

.contact-form__row > label,
.contact-form__row > span {
  font-size: 20px;
  font-weight: 500;
  line-height: 23.56px;
  color: #121212;
}

.contact-form__req {
  display: inline-flex;
  align-items: center;
}

.contact-form__req::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-left: 4px;
  border-radius: 50%;
  background: #f04e2a;
}

.contact-form input[type="text"],
.contact-form input[type="tel"] {
  width: 100%;
  height: 64px;
  padding: 0 24px;
  border: 0;
  border-radius: 12px;
  background: rgba(240, 78, 42, 0.05);
  color: #121212;
  font-size: 18px;
  line-height: 21.2px;
  font-family: inherit;
}

.contact-form input[type="text"]::placeholder,
.contact-form input[type="tel"]::placeholder {
  color: rgba(18, 18, 18, 0.5);
}

.contact-form__options {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.contact-form__options label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 18px;
  font-weight: 400;
  line-height: 21.2px;
  color: #121212;
  cursor: pointer;
}

.contact-form__options input[type="radio"] {
  appearance: none;
  width: 16px;
  height: 16px;
  margin: 0;
  border: 1px solid #121212;
  border-radius: 50%;
  background: #fff;
  flex-shrink: 0;
}

.contact-form__options input[type="radio"]:checked {
  background:
    radial-gradient(circle, #121212 0 4px, #fff 4.5px);
}

.contact-form__agree {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  margin: 50px 0 30px;
  font-size: 18px;
  line-height: 21.2px;
  color: #121212;
}

.contact-form__agree label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.contact-form__agree input[type="checkbox"] {
  appearance: none;
  width: 18px;
  height: 18px;
  margin: 0;
  border: 1px solid #121212;
  border-radius: 4px;
  background: #fff;
  flex-shrink: 0;
}

.contact-form__agree input[type="checkbox"]:checked {
  border-color: #f04e2a;
  background: #f04e2a url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10'%3E%3Cpath fill='none' stroke='%23fff' stroke-width='2' d='M1 5l3.5 3.5L11 1'/%3E%3C/svg%3E") center / 12px 10px no-repeat;
}

.contact-form__agree a {
  color: #121212;
  text-decoration: none;
}

.contact-form__actions {
  display: flex;
  align-items: stretch;
  gap: 16px;
  width: 100%;
}

.contact-form__submit {
  flex: 1 1 auto;
  width: 100%;
  height: 80px;
  border: 0;
  border-radius: 100px;
  background: #f04e2a;
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  line-height: 33px;
  font-family: inherit;
  cursor: pointer;
  transition: transform 0.35s var(--ease-out), background 0.35s var(--ease-out);
}

.contact-form__submit:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
}

.contact-form__admin {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  height: 80px;
  padding: 0 36px;
  border: 2px solid #f04e2a;
  border-radius: 100px;
  background: #fff;
  color: #f04e2a;
  font-size: 28px;
  font-weight: 700;
  line-height: 33px;
  font-family: inherit;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.35s var(--ease-out), background 0.35s var(--ease-out), color 0.35s var(--ease-out);
}

.contact-form__admin:hover {
  background: #f04e2a;
  color: #fff;
  transform: translateY(-2px);
}

@media (min-width: 1024px) {
  .section-contact {
    --contact-scale: min(1, calc(100vw / 1920px));
    padding: calc(150px * var(--contact-scale)) 0;
  }

  .contact__inner {
    width: calc(1196px * var(--contact-scale));
  }

  .contact__title {
    margin-top: calc(20px * var(--contact-scale));
    font-size: calc(64px * var(--contact-scale));
    letter-spacing: calc(-1.28px * var(--contact-scale));
    line-height: calc(76.8px * var(--contact-scale));
  }

  .contact__desc {
    margin-top: calc(20px * var(--contact-scale));
    font-size: calc(32px * var(--contact-scale));
    letter-spacing: calc(-0.32px * var(--contact-scale));
    line-height: calc(38.4px * var(--contact-scale));
  }

  .contact-form {
    margin-top: calc(66px * var(--contact-scale));
    padding-top: calc(50px * var(--contact-scale));
  }

  .contact-form__legend {
    gap: calc(10px * var(--contact-scale));
    margin-bottom: calc(30px * var(--contact-scale));
  }

  .contact-form__legend strong {
    font-size: calc(32px * var(--contact-scale));
    line-height: calc(37.69px * var(--contact-scale));
  }

  .contact-form__legend span {
    font-size: calc(18px * var(--contact-scale));
    line-height: calc(21.6px * var(--contact-scale));
  }

  .contact-form__row {
    grid-template-columns: calc(140px * var(--contact-scale)) minmax(0, 1fr);
    gap: calc(16px * var(--contact-scale));
    margin-bottom: calc(32px * var(--contact-scale));
  }

  .contact-form__row > label,
  .contact-form__row > span {
    font-size: calc(20px * var(--contact-scale));
    line-height: calc(23.56px * var(--contact-scale));
  }

  .contact-form input[type="text"],
  .contact-form input[type="tel"] {
    height: calc(64px * var(--contact-scale));
    padding: 0 calc(24px * var(--contact-scale));
    font-size: calc(18px * var(--contact-scale));
  }

  .contact-form__options {
    gap: calc(20px * var(--contact-scale));
  }

  .contact-form__options label {
    font-size: calc(18px * var(--contact-scale));
    line-height: calc(21.2px * var(--contact-scale));
  }

  .contact-form__agree {
    margin: calc(50px * var(--contact-scale)) 0 calc(30px * var(--contact-scale));
    font-size: calc(18px * var(--contact-scale));
    line-height: calc(21.2px * var(--contact-scale));
  }

  .contact-form__actions {
    gap: calc(16px * var(--contact-scale));
  }

  .contact-form__submit {
    height: calc(80px * var(--contact-scale));
    font-size: calc(28px * var(--contact-scale));
    line-height: calc(33px * var(--contact-scale));
  }

  .contact-form__admin {
    height: calc(80px * var(--contact-scale));
    padding: 0 calc(36px * var(--contact-scale));
    font-size: calc(28px * var(--contact-scale));
    line-height: calc(33px * var(--contact-scale));
  }
}

@media (max-width: 1023px) {
  .hero__inner,
  .menu-grid,
  .menu-grid--bottom,
  .difference__item,
  .margin__compare {
    display: block;
  }

  .brand-intro__title,
  .section-head__title,
  .ingredient__title,
  .difference__item h3,
  .brand-point__title,
  .problem__title,
  .profit__title,
  .startup__title,
  .recommend__title,
  .contact__title {
    font-size: 36px;
  }

  .hero__title,
  .section-head__sub,
  .problem__desc,
  .contact__desc {
    font-size: 22px;
  }

  .section-margin {
    padding: 80px 0;
  }

  .section-margin .section-head__title {
    font-size: 36px;
    line-height: 1.3;
  }

  .margin__compare {
    gap: 24px;
  }

  .margin__card,
  .margin__card--ours {
    width: 100%;
    height: auto;
    min-height: 0;
    padding: 48px 24px;
    margin: 0 auto;
  }

  .margin__rate {
    font-size: 80px;
    line-height: 1;
  }

  .margin__vs {
    width: auto;
    font-size: 64px;
    line-height: 1;
    text-align: center;
    margin: 24px 0;
  }

  .brand-point__card,
  .recommend__card {
    position: static;
    width: 100%;
    max-width: 295px;
    height: auto;
    margin: 16px auto;
    padding: 24px 16px;
    transform: none;
  }

  .profit__chart {
    position: relative;
    left: auto;
    top: auto;
    width: min(100%, 320px);
    height: auto;
    aspect-ratio: 620 / 618;
    margin: 0 auto 32px;
  }

  .hero-tags,
  .ingredient__tags {
    gap: 8px;
  }

  .section-brand-intro {
    --brand-scale: 1;
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 0;
    padding: 28px 0 0;
    overflow: hidden;
  }

  .section-brand-intro::before {
    display: none;
  }

  .brand-intro__stage {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    left: auto;
    margin-left: 0;
    transform: none;
  }

  .section-brand-intro .container {
    order: 1;
    width: min(calc(100% - 40px), var(--container-width));
    margin-inline: auto;
  }

  .brand-intro__content {
    position: relative;
    left: auto;
    width: 100%;
    padding-top: 8px;
  }

  .brand-intro__title {
    font-size: 34px;
    font-weight: 400;
    line-height: 1.35;
    letter-spacing: -0.04em;
  }

  .brand-intro__title,
  .brand-intro__line,
  .brand-intro__line > span {
    white-space: normal;
  }

  .brand-intro__br {
    display: block;
  }

  .hero-tags {
    flex-wrap: nowrap;
    width: auto;
    gap: 6px;
    margin-top: 22px;
  }

  .section-brand-intro .hero-tags__item {
    height: 34px;
    padding: 0 12px;
    font-size: 16px;
    white-space: nowrap;
  }

  .brand-intro__canvas {
    position: relative;
    left: auto;
    order: 2;
    width: 100%;
    height: min(58vh, 520px);
    margin-top: 20px;
    overflow: hidden;
    transform: none;
  }

  .brand-intro__visual {
    position: absolute;
    inset: 0;
  }

  .brand-intro__peeks,
  .brand-intro__peek {
    display: none;
  }

  .brand-intro__utensil--spoon {
    left: -6%;
    top: auto;
    bottom: 0;
    width: 38%;
    height: auto;
  }

  .brand-intro__utensil--fork {
    left: -10%;
    top: auto;
    bottom: -2%;
    width: 44%;
    height: auto;
  }

  .brand-intro__frame {
    display: block;
    top: 14%;
    width: 20px;
    height: 58%;
    max-height: 280px;
  }

  .brand-intro__frame--left {
    left: 8%;
  }

  .brand-intro__frame--right {
    left: auto;
    right: 8%;
  }

  .brand-intro__roll {
    left: 50%;
    top: 12%;
    width: min(66vw, 300px);
    height: auto;
    aspect-ratio: 474 / 472;
    transform: translateX(-50%);
    overflow: hidden;
  }

  .brand-intro__roll-track {
    flex-direction: row;
    height: 100%;
    transform: none;
  }

  .brand-intro__roll-img {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    aspect-ratio: 474 / 472;
  }

  .section-hero {
    height: auto;
    min-height: 0;
    padding: 40px 24px 0;
    background: #FFDF44;
  }

  .hero__sizer {
    display: none;
  }

  .hero__stage {
    position: relative;
    width: 100%;
    height: auto;
    left: auto;
    margin-left: 0;
    background: none;
    transform: none;
  }

  .hero__stage::after {
    display: none;
  }

  .hero__inner {
    left: auto;
    width: 100%;
    height: auto;
    transform: none;
  }

  .hero__content,
  .hero__desc {
    position: static;
    width: 100%;
    left: auto;
    top: auto;
  }

  .section-hero .period-badge {
    width: auto;
    min-width: 0;
    height: 32px;
    padding: 0 14px;
    font-size: 13px;
  }

  .hero__title {
    margin-top: 16px;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: -0.04em;
  }

  .hero__desc {
    margin-top: 18px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.55;
    letter-spacing: -0.02em;
    color: #121212;
  }

  .hero__desc--end {
    margin-top: 22px;
  }

  .hero__visual {
    display: block;
    width: calc(100% + 48px);
    height: min(58vw, 340px);
    margin: 36px -24px 0;
    overflow: hidden;
  }

  .hero__visual img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 8% 60%;
  }

  .section-menu {
    padding: 80px 0;
  }

  .section-menu .section-head__title {
    line-height: 1.3;
  }

  .section-menu .section-head__sub {
    line-height: 1.4;
  }

  .menu-grid,
  .menu-grid--bottom {
    margin-top: 40px;
  }

  .menu-card + .menu-card {
    margin-top: 32px;
  }

  .section-ingredient {
    height: auto;
    min-height: calc(100svh - var(--header-h, 56px));
    padding: 0;
    overflow: hidden;
    background: linear-gradient(to right, #f04e2a 50%, #ffdf44 50%);
  }

  .ingredient__sizer {
    display: none;
  }

  .ingredient__stage {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: calc(100svh - var(--header-h, 56px));
    height: auto;
    left: auto;
    margin-left: 0;
    transform: none;
  }

  .section-ingredient .container {
    position: relative;
    z-index: 2;
    width: min(calc(100% - 40px), var(--container-width));
    margin-inline: auto;
  }

  .ingredient__canvas {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .ingredient__bg {
    display: none;
  }

  .ingredient__object {
    height: auto;
    object-fit: contain;
  }

  .ingredient__object--01 {
    left: 2%;
    top: -1%;
    width: 42%;
  }

  .ingredient__object--02 {
    left: -12%;
    top: auto;
    bottom: 4%;
    width: 54%;
  }

  .ingredient__object--03 {
    left: 10%;
    top: auto;
    bottom: 20%;
    width: 28%;
  }

  .ingredient__object--04 {
    left: -8%;
    top: auto;
    bottom: -6%;
    width: 50%;
  }

  .ingredient__object--05 {
    left: auto;
    right: -4%;
    top: -3%;
    width: 38%;
  }

  .ingredient__object--06 {
    left: auto;
    right: 8%;
    top: auto;
    bottom: 30%;
    width: 22%;
  }

  .ingredient__object--07 {
    left: auto;
    right: -14%;
    top: auto;
    bottom: -8%;
    width: 62%;
  }

  .ingredient__object--08 {
    left: auto;
    right: 0;
    top: auto;
    bottom: -10%;
    width: 44%;
  }

  .ingredient__content {
    padding: 0;
  }

  .ingredient__br {
    display: block;
  }

  .ingredient__title,
  .ingredient__title em {
    color: #fff;
  }

  .ingredient__title {
    white-space: normal;
    font-size: 56px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -0.04em;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  .ingredient__tags {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    justify-content: center;
    flex-wrap: unset;
    gap: 12px 10px;
    margin-top: 22px;
  }

  .ingredient__tag {
    width: auto;
    min-width: 132px;
    height: 48px;
    padding: 0 18px;
    font-size: 15px;
    gap: 8px;
  }

  .ingredient__tag img {
    width: 24px;
    height: 24px;
  }

  .section-difference {
    height: auto;
    min-height: 0;
    padding: 56px 0 72px;
    overflow: hidden;
    background: #f7f6f3;
  }

  .difference__sizer {
    display: none;
  }

  .difference__stage {
    position: relative;
    width: 100%;
    height: auto;
    left: auto;
    margin-left: 0;
    padding: 0 20px;
    background: none;
    transform: none;
  }

  .difference__canvas {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .difference__object {
    height: auto;
  }

  .difference__object--01 {
    left: -24%;
    top: 16%;
    width: 52%;
    height: auto;
  }

  .difference__object--02 {
    left: 2%;
    top: 41%;
    width: 18%;
    height: auto;
  }

  .difference__object--03 {
    left: 0;
    top: 45%;
    width: 11%;
    height: auto;
  }

  .difference__object--04 {
    left: -14%;
    top: 68%;
    width: 36%;
    height: auto;
  }

  .difference__object--05 {
    left: -16%;
    top: auto;
    bottom: -6%;
    width: 40%;
    height: auto;
  }

  .difference__object--06 {
    right: -10%;
    top: 0;
    width: 30%;
    height: auto;
  }

  .difference__object--07 {
    right: -18%;
    top: 30%;
    width: 36%;
    height: auto;
  }

  .difference__object--08 {
    right: -20%;
    top: 50%;
    width: 38%;
    height: auto;
  }

  .difference__object--09 {
    right: -22%;
    top: 58%;
    width: 44%;
    height: auto;
  }

  .difference__content {
    position: relative;
    z-index: 5;
  }

  .difference__br {
    display: block;
  }

  .section-difference .section-head__sub,
  .section-difference .section-head__title,
  .difference__item h3,
  .difference__item p {
    word-break: keep-all;
    overflow-wrap: break-word;
  }

  .section-difference .section-head__sub {
    font-size: 22px;
    line-height: 1.4;
    letter-spacing: -0.03em;
  }

  .section-difference .section-head__title {
    margin-top: 6px;
    font-size: 30px;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: -0.04em;
  }

  .difference__list {
    width: 100%;
    margin-top: 32px;
    gap: 16px;
  }

  .difference__item,
  .difference__item--wide {
    min-height: 0;
    padding: 28px 18px;
    background: rgba(255, 255, 255, 0.86);
  }

  .difference__item h3 {
    font-size: 20px;
    line-height: 1.4;
    letter-spacing: -0.03em;
  }

  .difference__item p {
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.55;
    letter-spacing: -0.02em;
  }

  .section-brand-point {
    height: auto;
    min-height: 0;
    padding: 28px 0 0;
    overflow: hidden;
    background: #f3f3f3;
  }

  .brand-point__sizer {
    display: none;
  }

  .brand-point__stage {
    position: relative;
    width: 100%;
    height: auto;
    left: auto;
    margin-left: 0;
    transform: none;
  }

  .brand-point__canvas {
    display: none;
  }

  .brand-point__content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    left: auto;
    width: 100%;
    height: auto;
    margin-left: 0;
  }

  .brand-point__hero {
    position: relative;
    width: min(88%, 360px);
    height: 230px;
    margin: 0 auto 4px;
    overflow: visible;
  }

  .brand-point__paper,
  .brand-point__deco,
  .brand-point__bottom,
  .brand-point__img {
    position: relative;
    left: auto;
    top: auto;
    right: auto;
    height: auto;
    transform: none;
  }

  .brand-point__paper {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .brand-point__deco {
    position: absolute;
    left: -6%;
    top: -18px;
    width: 128px;
    z-index: 3;
  }

  .brand-point__title {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    width: auto;
    margin-top: -8px;
    transform: translateY(-50%);
    white-space: normal;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.04em;
    word-break: keep-all;
  }

  .brand-point__br {
    display: block;
  }

  .brand-point__title-star,
  .brand-point__title-line {
    display: block;
  }

  .brand-point__title-star {
    left: -18px;
    top: -10px;
    width: 26px;
    height: 28px;
  }

  .brand-point__title-line {
    left: 50%;
    top: calc(100% + 2px);
    width: 168px;
    height: 18px;
    transform: translateX(-50%);
  }

  .brand-point__pair {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .section-brand-point .brand-point__pair .brand-point__img,
  .brand-point__img--pan,
  .brand-point__img--bowl,
  .brand-point__img--fork {
    display: block;
    width: min(72vw, 280px);
    height: 220px;
    max-width: 280px;
    margin: 0 auto;
    object-fit: contain;
    z-index: 1;
  }

  .section-brand-point .brand-point__pair .brand-point__card,
  .brand-point__card--left,
  .brand-point__card--center,
  .brand-point__card--right {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 220px;
    max-width: 220px;
    height: auto;
    margin: -56px auto 28px;
    padding: 14px 16px;
    transform: none;
    z-index: 4;
  }

  .brand-point__card small {
    font-size: 14px;
    line-height: 1.3;
    letter-spacing: -0.02em;
    word-break: keep-all;
  }

  .brand-point__card strong {
    font-size: 22px;
    line-height: 1.3;
    letter-spacing: -0.03em;
    word-break: keep-all;
  }

  .brand-point__pair--last {
    padding-bottom: 24px;
  }

  .brand-point__finale {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    width: 100%;
    height: 48%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    pointer-events: none;
  }

  .brand-point__bottom {
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 180%;
    height: 100%;
    transform: translateX(-50%);
    object-fit: cover;
    object-position: top;
  }

  .section-problem {
    height: auto;
    min-height: 0;
    padding: 80px 0;
  }

  .problem__title {
    line-height: 1.3;
  }

  .section-profit {
    height: auto;
    min-height: 0;
    padding: 40px 16px 56px;
    overflow: hidden;
    background: #e8f2ea;
  }

  .profit__sizer {
    display: none;
  }

  .profit__stage {
    position: relative;
    width: 100%;
    height: auto;
    left: auto;
    margin-left: 0;
    background: none;
    transform: none;
  }

  .profit__canvas {
    display: none;
  }

  .profit__content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    left: auto;
    width: 100%;
    height: auto;
    margin-left: 0;
  }

  .profit__head {
    position: relative;
    width: min(100%, 360px);
    padding: 32px 16px 24px;
    margin: 0 auto 8px;
  }

  .profit__deco--grid {
    position: absolute;
    inset: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }

  .profit__deco--tape {
    position: absolute;
    left: auto;
    right: 6%;
    top: -10px;
    width: 92px;
    height: auto;
    z-index: 2;
  }

  .profit__title {
    position: relative;
    z-index: 1;
    left: auto;
    top: auto;
    width: auto;
    margin: 0;
    font-size: 32px;
    line-height: 1.3;
    letter-spacing: -0.04em;
    white-space: normal;
    word-break: keep-all;
  }

  .profit__br {
    display: block;
  }

  .profit__title-star,
  .profit__title-line {
    display: block;
  }

  .profit__title-star {
    right: -22px;
    top: -12px;
    width: 28px;
    height: 30px;
  }

  .profit__title-line {
    left: 50%;
    top: calc(100% + 2px);
    width: 132px;
    height: 16px;
    transform: translateX(-50%);
  }

  .section-profit .profit__chart {
    position: relative;
    left: auto;
    top: auto;
    width: min(78%, 280px);
    height: auto;
    aspect-ratio: 620 / 618;
    margin: 12px auto 20px;
  }

  .profit__board {
    position: relative;
    width: 100%;
    padding: 36px 8px 20px;
  }

  .profit__deco--clip {
    position: absolute;
    left: 50%;
    top: 0;
    width: 124%;
    height: 100%;
    transform: translateX(-50%);
    object-fit: contain;
    object-position: top;
    z-index: 0;
  }

  .profit__table {
    position: relative;
    left: auto;
    top: auto;
    z-index: 1;
    width: 100%;
    max-width: 100%;
    table-layout: fixed;
  }

  .profit__table col:nth-child(1) {
    width: 30%;
  }

  .profit__table col:nth-child(2) {
    width: 42%;
  }

  .profit__table col:nth-child(3) {
    width: 28%;
  }

  .profit__table thead th,
  .profit__table th,
  .profit__table td {
    height: auto;
    padding: 11px 4px;
    font-size: 13px;
    letter-spacing: -0.03em;
    line-height: 1.35;
    word-break: keep-all;
    overflow-wrap: anywhere;
  }

  .profit__table thead th {
    height: 44px;
    font-size: 14px;
    letter-spacing: -0.02em;
  }

  .profit__table tbody td:nth-child(2) {
    font-size: 12px;
    letter-spacing: -0.04em;
  }

  .profit__table tfoot td {
    height: auto;
    padding: 16px 8px;
    font-size: 20px;
    letter-spacing: -0.03em;
    line-height: 1.3;
  }

  .section-startup-cost {
    height: auto;
    min-height: 0;
    padding: 48px 20px 56px;
    overflow: hidden;
  }

  .startup__sizer {
    display: none;
  }

  .startup__stage {
    position: relative;
    width: 100%;
    height: auto;
    left: auto;
    margin-left: 0;
    transform: none;
  }

  .startup__canvas {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .startup__stamp {
    left: auto;
    right: -8px;
    top: 8px;
    width: 96px;
    height: 96px;
  }

  .startup__content {
    position: relative;
    left: auto;
    width: 100%;
    height: auto;
    margin-left: 0;
    overflow: visible;
  }

  .startup__head {
    position: static;
    width: auto;
    margin: 0 24px 20px 0;
  }

  .startup__sub,
  .startup__title,
  .startup__table,
  .startup__notes {
    word-break: keep-all;
    overflow-wrap: break-word;
  }

  .startup__sub {
    font-size: 16px;
    line-height: 1.45;
    letter-spacing: -0.03em;
  }

  .startup__title {
    font-size: 28px;
    line-height: 1.35;
    letter-spacing: -0.04em;
    white-space: normal;
  }

  .startup__br {
    display: block;
  }

  .startup__table {
    display: none;
  }

  .startup__cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
  }

  .startup__card {
    margin: 0;
    padding: 18px 16px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    word-break: keep-all;
    overflow-wrap: break-word;
  }

  .startup__card h3 {
    margin: 0 0 12px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.35;
    color: #f04e2a;
  }

  .startup__card dl {
    display: grid;
    gap: 10px;
    margin: 0;
  }

  .startup__card dt {
    margin: 0 0 2px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #888;
  }

  .startup__card dd {
    margin: 0;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.5;
    color: #121212;
  }

  .startup__card--support,
  .startup__card--foot {
    background: #f04e2a;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.4;
    text-align: center;
  }

  .startup__card--foot {
    font-size: 16px;
  }

  .startup__cards .startup__badge,
  .startup__cards .startup__badge--wide {
    width: auto;
    height: auto;
    margin-top: 2px;
    padding: 8px 14px;
  }

  .startup__notes {
    position: static;
    width: auto;
    margin-top: 20px;
    font-size: 14px;
    letter-spacing: -0.02em;
    line-height: 1.55;
  }

  .section-recommend {
    height: auto;
    min-height: 0;
    padding: 40px 0 0;
    overflow: hidden;
    background: #fff url("../img/main/section11/section_11_bg.png") center / cover no-repeat;
  }

  .recommend__sizer {
    display: none;
  }

  .recommend__stage {
    position: relative;
    width: 100%;
    height: auto;
    left: auto;
    margin-left: 0;
    background: none;
    transform: none;
  }

  .recommend__canvas {
    display: none;
  }

  .recommend__content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    left: auto;
    width: 100%;
    height: auto;
    margin-left: 0;
  }

  .recommend__head {
    position: static;
    width: auto;
    padding: 0 24px;
    margin: 0 0 8px;
  }

  .recommend__eyebrow,
  .recommend__title,
  .recommend__card p,
  .recommend__cta {
    word-break: keep-all;
    overflow-wrap: break-word;
  }

  .recommend__eyebrow {
    font-size: 20px;
    line-height: 1.3;
    letter-spacing: -0.03em;
  }

  .recommend__title {
    font-size: 30px;
    line-height: 1.3;
    letter-spacing: -0.04em;
    white-space: normal;
  }

  .recommend__br {
    display: block;
  }

  .recommend__img {
    position: relative;
    left: auto;
    top: auto;
    z-index: 1;
    width: min(64vw, 240px);
    height: auto;
    margin: 12px auto 20px;
  }

  .recommend__deco-wrap {
    position: absolute;
    left: 50%;
    top: auto;
    bottom: 26%;
    z-index: 0;
    width: 100vw;
    height: 42%;
    min-height: 220px;
    transform: translateX(-50%);
    overflow: hidden;
    pointer-events: none;
  }

  .recommend__deco {
    position: absolute;
    left: 50%;
    top: 0;
    width: 180%;
    height: 100%;
    transform: translateX(-50%);
    object-fit: cover;
    object-position: center;
  }

  .recommend__cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: calc(100% - 40px);
    margin: 0 auto;
    z-index: 1;
  }

  .section-recommend .recommend__card,
  .recommend__card--1,
  .recommend__card--2,
  .recommend__card--3,
  .recommend__card--4 {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    max-width: none;
    height: auto;
    margin: 0;
    padding: 16px 10px 18px;
  }

  .recommend__card small {
    width: auto;
    min-width: 56px;
    height: 28px;
    padding: 0 10px;
    font-size: 13px;
  }

  .recommend__card p {
    margin-top: 8px;
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: -0.03em;
  }

  .recommend__cta-wrap {
    position: relative;
    z-index: 1;
    width: 100%;
    margin-top: 28px;
    padding: 40px 24px 44px;
    overflow: visible;
    background: #000;
  }

  .recommend__cta {
    position: relative;
    z-index: 1;
    left: auto;
    top: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: auto;
    margin: 0;
    color: #fff;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: -0.03em;
    white-space: normal;
    text-align: center;
  }

  .recommend__cta-star {
    display: block;
    width: 18px;
    height: 20px;
  }

  .recommend__cta-line {
    display: block;
    left: 50%;
    top: calc(100% + 2px);
    width: 180px;
    height: 7px;
    transform: translateX(-50%);
    filter: brightness(10);
  }

  .contact-form__row {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 16px;
  }

  .section-contact {
    padding: 48px 20px 56px;
  }

  .contact__inner {
    width: 100%;
    max-width: none;
  }

  .contact__title,
  .contact__desc,
  .contact-form__row > label,
  .contact-form__row > span,
  .contact-form__agree {
    word-break: keep-all;
    overflow-wrap: break-word;
  }

  .contact__title {
    margin-top: 14px;
    font-size: 28px;
    line-height: 1.35;
    letter-spacing: -0.04em;
  }

  .contact__desc {
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: -0.02em;
  }

  .contact-form {
    margin-top: 28px;
    padding-top: 22px;
  }

  .contact-form__legend {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    margin-bottom: 20px;
  }

  .contact-form__legend strong {
    font-size: 18px;
    line-height: 1.3;
  }

  .contact-form__legend span {
    font-size: 13px;
    line-height: 1.4;
  }

  .contact-form__dot,
  .contact-form__req::after {
    width: 6px;
    height: 6px;
  }

  .contact-form__row > label,
  .contact-form__row > span {
    font-size: 15px;
    line-height: 1.4;
  }

  .contact-form input[type="text"],
  .contact-form input[type="tel"] {
    height: 48px;
    padding: 0 16px;
    font-size: 15px;
    border-radius: 10px;
  }

  .contact-form__options {
    gap: 12px 14px;
  }

  .contact-form__options label {
    font-size: 14px;
    line-height: 1.4;
  }

  .contact-form__agree {
    justify-content: flex-start;
    flex-wrap: wrap;
    margin: 24px 0 16px;
    font-size: 13px;
    line-height: 1.45;
  }

  .contact-form__actions {
    gap: 8px;
  }

  .contact-form__submit {
    height: 52px;
    font-size: 17px;
    line-height: 1.2;
  }

  .contact-form__admin {
    height: 52px;
    padding: 0 16px;
    font-size: 15px;
    line-height: 1.2;
  }
}
