/* popup */
.pc {
  display: block;
}

.mobile {
  display: none;
}

.layer-popup {
  /* position: absolute; */
  z-index: 9999;
  background-color: #fff;
  box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  height: auto !important;
}

.layer-popup:nth-child(1) {
  left: 0;
}

.layer-popup img {
  width: 100%;
  height: auto !important;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.layer-popup .show-chk-wrap {
  display: flex;
  padding: 6px 10px;
  box-sizing: border-box;
  justify-content: space-between;
  align-items: center;
}

.show-chk-div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.layer-popup .show-chk-wrap a {
  font-size: 16px;
  color: #505050;
  cursor: pointer;
}

.layer-popup .show-chk-wrap a:hover {
  color: #222;
  font-weight: 600;
  transition: 0.3s;
}

.close-popup {
  box-sizing: border-box;
  padding: 4px 12px;
  border: 1px solid #999;
  border-radius: 4px;
}

.close-popup:hover {
  border: 1px solid #505050;
  background-color: #505050;
  color: #fff !important;
  transition: 0.3s;
}

.popup-space {
  position: absolute;
  display: flex;
  flex-wrap: wrap;
  top: 5%;
  left: 5%;
  gap: 10px;
  align-items: start;
  z-index: 100;
  width: 95%;
}

/* main */
#main {
  width: 100%;
  height: 100vh;
  background: #111;
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.bg-div {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.bg-div::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.5) 100%
  );
}

.bg-div .bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-sub-tit {
  color: #fff;
  text-align: center;
  font-family: 'Paperlogy';
  font-size: 40px;
  font-weight: 500;
  line-height: 140%; /* 56px */
  letter-spacing: -1px;
  display: flex;
  box-sizing: border-box;
  padding: 4px 15px;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  background: #111;
  z-index: 5;
}

.main-tit {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #fff;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
  font-family: 'Paperlogy';
  font-size: 72px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%; /* 93.6px */
  letter-spacing: -3.6px;
  z-index: 5;
}

.main-tit .scrolltrigger {
  text-shadow: none;
  display: flex;
  box-sizing: border-box;
  padding: 0 10px;
  justify-content: center;
  align-items: center;
  background: linear-gradient(293deg, #0853d5 -0.24%, #0f62f2 99.76%);
}

.main-tit span {
  display: flex;
  align-items: center;
  gap: 15px;
}

.main-circle-wrap {
  max-width: 1240px;
  width: 90%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  z-index: 5;
}

.main-circle {
  width: calc(25% - 30px);
  aspect-ratio: 1 / 1;
  border-radius: 300px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
  box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  transform-style: preserve-3d;
  transform: perspective(800px);
  position: relative;
  overflow: hidden;
}

.main-circle::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 300px;
  padding: 1px;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    transparent 82deg,
    rgba(255, 255, 255, 0.5) 98deg,
    rgba(255, 255, 255, 0.5) 127deg,
    transparent 143deg,
    transparent 172deg,
    rgba(255, 255, 255, 0.5) 188deg,
    rgba(255, 255, 255, 0.5) 217deg,
    transparent 233deg,
    transparent 262deg,
    rgba(255, 255, 255, 0.5) 278deg,
    rgba(255, 255, 255, 0.5) 352deg,
    transparent 360deg
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  pointer-events: none;
}

.main-circle p {
  color: #fff;
  text-align: center;
  font-size: 32px;
  font-weight: 500;
  line-height: 120%; /* 38.4px */
  letter-spacing: -0.8px;
}

.main-circle div {
  color: #fff;
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  line-height: 120%; /* 48px */
  letter-spacing: -1px;
}

.main-store-div {
  max-width: 718px;
  width: 80%;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  z-index: 3;
}

.main-store-div .main-store {
  width: 100%;
}

/* support */
#support {
  width: 100%;
  display: flex;
  box-sizing: border-box;
  padding: 100px 0 40px;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  border-top: 20px solid #0f62f2;
  border-bottom: 20px solid #0f62f2;
  background: url(../img/support-bg.png);
  background-position: center center !important;
  background-size: cover !important;
  position: relative;
  overflow: hidden;
}

.support-img {
  position: absolute;
  z-index: 2;
}

.support-img.tl {
  width: 394px;
  left: -101px;
  top: -22px;
}

.support-img.tr {
  width: 354px;
  right: -30px;
  top: -40px;
}

.support-img.bl {
  width: 386px;
  left: -120px;
  bottom: -40px;
}

.support-img.br {
  width: 440px;
  right: -109px;
  bottom: -40px;
}

.support-container {
  width: 100%;
  background: url(../img/check-pattern.png);
  background-repeat: repeat;
  display: flex;
  box-sizing: border-box;
  padding: 50px 0;
  justify-content: center;
  align-items: center;
}

.support-wrap {
  max-width: 1320px;
  width: 95%;
  display: flex;
  justify-content: center;
  align-items: stretch;
}

.support-item {
  width: 25%;
  /* width: 32%; */
  display: flex;
  box-sizing: border-box;
  padding: 20px 10px;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  position: relative;
}

.support-item-num {
  color: #fff;
  text-align: center;
  font-family: 'Paperlogy';
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 33.6px */
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  background: #0f62f2;
  display: flex;
  height: 40px;
  box-sizing: border-box;
  padding: 0 10px;
  justify-content: center;
  align-items: center;
  z-index: 5;
}

.support-item-inner {
  width: 100%;
  height: 100%;
  display: flex;
  padding: 50px 0;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  border: 2px solid #fff;
  position: relative;
  overflow: hidden;
}

.support-item-inner .y svg {
  margin-bottom: 7px;
}
.support-item-inner .y {
  color: #ffda6c !important;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.support-item-inner .y b {
  color: #fff;
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 28.8px */
  letter-spacing: -0.6px;
  text-decoration: line-through;
}

.support-item-inner::after {
  content: '';
  width: 100%;
  height: 100%;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 10%,
    rgba(0, 0, 0, 0.5) 100%
  );
  animation: inner-focus 8s step-end infinite;
}

@keyframes inner-focus {
  0% {
    opacity: 1;
  }
  25% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.support-item:nth-child(1) .support-item-inner::after {
  animation-delay: 0s;
}
.support-item:nth-child(2) .support-item-inner::after {
  animation-delay: 2s;
}
.support-item:nth-child(3) .support-item-inner::after {
  animation-delay: 4s;
}
.support-item:nth-child(4) .support-item-inner::after {
  animation-delay: 6s;
}

.support-item-inner p {
  color: #fff;
  text-align: center;
  font-size: 28px;
  font-weight: 500;
  line-height: 120%; /* 33.6px */
  letter-spacing: -0.7px;
  z-index: 2;
}

.support-item-inner div {
  color: #fff;
  text-align: center;
  font-family: 'Paperlogy';
  font-size: 44px;
  /* font-size: 32px; */
  font-weight: 700;
  line-height: 120%; /* 52.8px */
  letter-spacing: -1.1px;
  z-index: 2;
}

.support-marquee {
  width: 100%;
  display: flex;
}

.marquee-track {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 24px;
  animation: marquee-scroll 50s linear infinite;
  white-space: nowrap;
  padding-right: 24px;
}

.marquee-track span {
  color: #000;
  text-align: center;
  text-shadow: 0 0 8px rgba(15, 98, 242, 0.8);
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #0f62f2;
  font-family: 'Paperlogy';
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  flex-shrink: 0;
}

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

.support-badge {
  max-width: 156px;
  width: 75%;
  z-index: 2;
}
.support-badge.badge2 {
  max-width: 220px;
  width: 100%;
}

/* advertising */
#advertising {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background: #111;
  overflow: hidden;
  position: relative;
}

.advertising-top {
  width: 100%;
  display: flex;
  box-sizing: border-box;
  padding-top: 100px;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  position: relative;
  overflow: hidden;
}

.absol-line {
  width: 2px;
  height: 100%;
  background: #0f62f2;
  border: none;
  position: absolute;
  top: 0;
}

.absol-line.left {
  left: 50px;
}

.absol-line.right {
  right: 50px;
}

.advertising-top .st-sub-tit {
  font-size: 40px;
  letter-spacing: -1px;
  display: flex;
  box-sizing: border-box;
  padding: 10px 28px;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  background: #0f62f2;
}

.baemin-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  z-index: 2;
}

.baemin-container .wave {
  margin-bottom: -2px;
}

.advertising-top .absol-wave {
  bottom: -3%;
}

.baemin-wrap {
  width: 100%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-frame {
  max-width: 397px;
  width: 80%;
  z-index: 2;
}

.baemin-swiper {
  position: absolute;
  left: 0;
  bottom: -5.4%;
  width: 100%;
}

.baemin-swiper .swiper-slide {
  width: 300px !important;
}

.baemin-swiper .swiper-slide-active {
  transform: scale(1.26);
}

.baemin-swiper img {
  width: 100%;
  border-radius: 38px 38px 0 0;
  border: 1px solid #000;
  opacity: 0.65;
  transition: width 0.3s, opacity 0.3s;
  display: block;
}

.baemin-swiper .swiper-slide-active img {
  opacity: 1;
  border: none;
}

.advertising-bottom {
  width: 100%;
  display: flex;
  box-sizing: border-box;
  padding: 100px 0 140px;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.advertising-bottom .bg-div::after {
  background: linear-gradient(
    180deg,
    #111 -0.05%,
    rgba(17, 17, 17, 0.5) 32.1%,
    rgba(17, 17, 17, 0.3) 100%
  );
}

.advertising-bottom .tit-div {
  gap: 12px;
}

.advertising-bottom .st-sub-tit {
  font-size: 32px;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: -0.8px;
}

.advertising-bottom .jaram-tit {
  color: #0f62f2;
  font-family: 'iceJaram';
  font-size: 80px;
  font-style: normal;
  font-weight: 900;
  line-height: 120%;
  letter-spacing: -2px;
  filter: drop-shadow(0px 4px 4px rgba(255, 255, 255, 0.2));
}

.jaram-tit span {
  color: #0f62f2;
  text-align: center;
  text-shadow: 0 0 12px #0f62f2;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(148, 171, 255, 0.5);
  font-family: 'ABeeZee';
  font-size: 72px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 86.4px */
  letter-spacing: -1.8px;
}

.advertising-graph-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  z-index: 3;
}

.advertising-graph-wrap {
  max-width: 700px;
  width: 90%;
  aspect-ratio: 1 / 0.6;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
}

.advertising-graph-tit {
  color: #fff;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  line-height: 120%; /* 24px */
  letter-spacing: -0.5px;
  display: inline-flex;
  box-sizing: border-box;
  padding: 8px 16px;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.2);
  position: absolute;
  top: 50px;
  left: 0;
}

.advertising-graph {
  width: 100%;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 120px;
}

.advertising-graph-line {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 35%;
}

.advertising-graph hr {
  position: absolute;
  left: 0;
  bottom: 39px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #111 0%, #fff 35%, #fff 65%, #111 100%);
  border: none;
}

.advertising-graph-div {
  width: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.advertising-graph-img {
  width: 100%;
  overflow: hidden;
}

.advertising-graph-img .graph-img {
  width: 100%;
}

.advertising-graph-div p {
  color: #bbb;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  line-height: 120%; /* 24px */
  letter-spacing: -0.5px;
}

.advertising-graph-div.blue p {
  color: #0f62f2;
  font-size: 24px;
  letter-spacing: -0.6px;
}

.advertising-graph-div.blue {
  gap: 11px;
}

.advertising-bottom-txt {
  color: #fff;
  text-align: center;
  font-family: 'Paperlogy';
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 38.4px */
  letter-spacing: -0.8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.advertising-bottom .absol-wave.bottom {
  bottom: -2%;
}

/* sale */
#sale {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: url(../img/check-pattern.png);
  background-repeat: repeat;
  position: relative;
  overflow: hidden;
}

/* sale-inner */
.sale-inner {
  width: 100%;
  display: flex;
  box-sizing: border-box;
  padding: 100px 0;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  overflow: hidden;
}

.bg-coin-div {
  width: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -80%);
}

.bg-coin {
  width: 100%;
}

.store-brand-wrap {
  max-width: 1300px;
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 3;
}

.store-brand-tit {
  display: inline-flex;
  box-sizing: border-box;
  padding: 6px 24px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 24px;
  border: 2px solid #fff;
  background: #000;
  color: #fff;
  text-align: center;
  font-size: 40px;
  font-weight: 600;
  line-height: 120%; /* 48px */
  letter-spacing: -1px;
  z-index: 2;
}

.store-brand-tit img {
  width: 257px;
}

.store-brand-box {
  display: flex;
  width: 100%;
  padding: 75px 0 50px 0;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 24px;
  border: 2px solid #fff;
  background: rgba(0, 0, 0, 0.1);
  box-shadow: 0 8px 24px 0 rgba(0, 0, 0, 0.25);
  margin-top: -41px;
}

.store-brand {
  max-width: 260px;
  width: calc(24% - 37.5px);
}

.highest-sale-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  z-index: 3;
}

.highest-sale {
  display: flex;
  box-sizing: border-box;
  padding: 20px 40px;
  justify-content: center;
  align-items: center;
  gap: 24px;
  border-radius: 100px;
  position: relative;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  text-align: center;
  font-size: 56px;
  font-weight: 600;
  line-height: 140%; /* 78.4px */
  letter-spacing: -1.4px;
}

.highest-sale::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 100px;
  padding: 2px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.45) 0%,
    transparent 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  pointer-events: none;
}

.highest-sale .sale {
  display: flex;
  box-sizing: border-box;
  padding: 8px 16px;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, #111 0%, #505050 49%, #111 50%), #111;
  color: #ffda6c;
  font-size: 80px;
  font-weight: 700;
  line-height: 120%; /* 96px */
}

.highest-sale-wrap > p {
  color: #fff;
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  line-height: 120%; /* 24px */
  letter-spacing: -0.5px;
}

/* system-inner */
.system-inner {
  width: calc(100% - 80px);
  background: url(../img/system-bg.png);
  background-position: bottom center !important;
  background-size: cover !important;
  display: flex;
  box-sizing: border-box;
  padding: 100px 0;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  z-index: 2;
  position: relative;
  overflow: hidden;
}

.system-graph-wrap {
  max-width: 1100px;
  width: 90%;
  display: flex;
  align-items: flex-start;
  gap: 100px;
}

.system-graph-div {
  width: calc(50% - 50px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.system-graph {
  width: 100%;
}

.system-graph-div > p {
  color: #fff;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  line-height: 120%; /* 24px */
  letter-spacing: -0.5px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  box-sizing: border-box;
  padding: 8px 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.system-graph-div > p.blue {
  background: #0f62f2;
}

.system-graph-img {
  width: 100%;
  position: relative;
}

.system-graph-badge {
  max-width: 170px;
  width: 35%;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
}

.system-graph-badge img {
  width: 100%;
}

.system-txt {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.system-txt div {
  color: #fff;
  text-align: center;
  font-family: 'Paperlogy';
  font-size: 32px;
  font-weight: 400;
  line-height: 120%; /* 38.4px */
  letter-spacing: -0.8px;
}

.system-txt div span {
  color: #ffda6c;
  background: #0f62f2;
  box-sizing: border-box;
  padding: 0 2px;
}

.system-txt p {
  color: #fff;
  text-align: center;
  font-family: 'Paperlogy';
  font-size: 48px;
  font-weight: 700;
  line-height: 120%; /* 57.6px */
  letter-spacing: -1.2px;
}

.system-img {
  max-width: 375px;
  width: 25%;
  position: absolute;
}

.system-img.left {
  left: -80px;
  bottom: -10.25px;
}

.system-img.right {
  right: -40px;
  bottom: -50.25px;
}

/* everyday */
#everyday {
  width: 100%;
  background: url(../img/check-pattern.png);
  background-repeat: repeat;
  display: flex;
  box-sizing: border-box;
  padding: 100px 0;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  overflow: hidden;
  position: relative;
}

.everyday-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.clock-img {
  position: absolute;
}

.clock-img.tl {
  max-width: 338px;
  width: 23%;
  top: 0;
  left: -5%;
}

.clock-img.tr {
  max-width: 333px;
  width: 22%;
  top: 0;
  right: -3%;
}

.clock-img.bl {
  max-width: 354px;
  width: 24%;
  bottom: 0;
  left: -6%;
}

.clock-img.br {
  max-width: 383px;
  width: 25%;
  bottom: 0;
  right: -5%;
}

.everyday-wrap {
  width: 100%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin: -1% 0;
  position: relative;
  z-index: 3;
}

.time-div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  color: #4d50b1;
  text-align: center;
  font-family: 'Paperlogy';
  font-size: 78.671px;
  font-weight: 900;
  line-height: 120%; /* 94.406px */
  letter-spacing: 6.294px;
}

.time-div.lunch span {
  color: #ffd400;
  -webkit-text-stroke-width: 3px;
  -webkit-text-stroke-color: #393b85;
  paint-order: stroke fill;
}

.everyday-container .wave.bottom {
  transform: rotate(180deg);
}

.clock-wrap {
  max-width: 660px;
  width: 55%;
  display: flex;
  padding: 20px;
  justify-content: center;
  align-items: center;
  border-radius: 786.713px;
  background: #fff;
  position: relative;
}

.clock-vector {
  width: 50%;
  height: 50%;
  position: absolute;
  left: 0;
  top: 0;
  transform-origin: 100% 100%;
}

.clock-inner {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  flex-wrap: wrap;
  z-index: 2;
}

.clock-brand {
  width: 50%;
  height: 50%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.clock-brand .piechart {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.clock-brand .piechart-brand {
  width: 39%;
  z-index: 3;
}

.clock-brand.third .piechart-brand {
  width: 35%;
}

.clock-brand.second .piechart-brand {
  width: 43%;
}

.clock-brand.fourth .piechart-brand {
  width: 41%;
}

.clock-brand.first .piechart-brand,
.clock-brand.third .piechart-brand {
  margin-left: -10%;
}

.clock-brand.second .piechart-brand,
.clock-brand.fourth .piechart-brand {
  margin-right: -12%;
}

.clock-logo {
  max-width: 195px;
  width: 35%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.everyday-div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  z-index: 3;
}

.everyday-div-sub {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.everyday-div-sub p {
  color: #fff;
  text-align: center;
  font-family: 'Paperlogy';
  font-size: 40px;
  font-weight: 400;
  line-height: 120%; /* 48px */
  letter-spacing: -1px;
}

.everyday-div-sub p span {
  display: inline-block;
}

.everyday-div-sub p .point {
  box-sizing: border-box;
  padding: 0 4px;
  font-weight: 600 !important;
}

.everyday-div-sub p .point.yellow {
  color: #111;
  background: #ffda6c;
}

.everyday-div-sub p .point.purple {
  color: #fff;
  background: #4d50b1;
}

.everyday-div-tit {
  color: #fff;
  text-align: center;
  font-family: 'Paperlogy';
  font-size: 48px;
  font-weight: 700;
  line-height: 140%; /* 67.2px */
  letter-spacing: -1.2px;
  box-sizing: border-box;
  padding: 8px 20px;
  border-radius: 12px;
  border: 2px solid rgba(0, 88, 73, 0.5);
  background: linear-gradient(180deg, #333 0%, #111 100%);
}

.everyday-sale-container {
  max-width: 1320px;
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  z-index: 3;
}

.everyday-sale-wrap {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 30px;
}

.everyday-sale-item {
  width: calc(33.3% - 20px);
  border-radius: 12px;
  background: #fff;
  box-shadow: 4px 8px 24px 0 rgba(0, 0, 0, 0.12);
  overflow: hidden;
}

.everyday-sale-item .item-img {
  width: 100%;
  position: relative;
  aspect-ratio: 7 / 4;
  overflow: hidden;
}

.everyday-sale-item .item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.everyday-sale-item .item-img p {
  color: #fff;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  font-size: 32px;
  font-weight: 700;
  line-height: 135%; /* 43.2px */
  letter-spacing: -0.64px;
  position: absolute;
  left: 26px;
  top: 16px;
}

.everyday-sale-item .item-inner {
  width: 100%;
  background: #fff;
  display: flex;
  box-sizing: border-box;
  padding: 20px;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  color: #0f62f2;
  text-align: center;
  font-family: 'Paperlogy';
  font-size: 36px;
  font-weight: 600;
  line-height: 135%; /* 48.6px */
  letter-spacing: -0.72px;
}

.everyday-sale-item .item-inner span {
  color: #191919;
  text-align: center;
  font-family: 'Pretendard';
  font-size: 44px;
  font-weight: 600;
  line-height: 135%; /* 59.4px */
  letter-spacing: -0.88px;
}

.everyday-swiper {
  display: none;
  width: 100%;
  overflow: hidden;
}

.everyday-swiper .swiper-slide {
  width: auto !important;
}

.everyday-swiper .everyday-sale-item {
  width: 320px;
}

.everyday-sale-container > p {
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  line-height: 135%; /* 27px */
  letter-spacing: -0.4px;
}

.everyday-txt-circle {
  position: absolute;
  max-width: 330px;
  width: 23%;
  animation: rotate 15s linear infinite;
}

.everyday-txt-circle.right {
  right: -20px;
  bottom: 452.625px;
}

.everyday-txt-circle.left {
  left: -45px;
  bottom: 49.625px;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* review */
#review {
  width: 100%;
  background: #fff;
  display: flex;
  box-sizing: border-box;
  padding: 40px;
  flex-direction: column;
  align-items: flex-start;
}

.review-inner {
  width: 100%;
  background: url(../img/review-bg.png);
  background-position: center center !important;
  background-size: cover !important;
  display: flex;
  padding: 100px 0;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.review-circle {
  max-width: 992px;
  width: 90%;
  aspect-ratio: 1 / 1;
  border-radius: 992px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  position: relative;
}

.review-circle-img-div {
  position: absolute;
  width: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.review-circle-img-div img {
  width: calc(100%);
  transition: unset;
  transform-origin: center center;
}

.thumbup {
  width: 250px;
  z-index: 3;
  margin-top: -30%;
}

.review-circle .st-tit {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 5;
}

.review-circle .st-tit .line-tit {
  text-align: center;
  -webkit-text-stroke-width: 1.5px;
  -webkit-text-stroke-color: #fff;
  color: transparent;
}

.review-txt {
  color: #fff;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 145%; /* 29px */
  letter-spacing: -0.5px;
  word-break: keep-all;
  z-index: 3;
}

@keyframes gallery {
  0% {
    opacity: 1;
  }
  25% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  75% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.review-absol-img {
  position: absolute;
  max-width: 438px;
  width: 43%;
  aspect-ratio: 98/83;
  overflow: hidden;
  transform: translate3d(-50%, 0, 0);
  left: 50%;
  bottom: -3%;
}

.review-absol-img img {
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -50%;
  max-width: 100%;
  animation-name: gallery;
  animation-duration: 8s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: linear;
}

.review-absol-img img:nth-of-type(1) {
  z-index: 4;
}

.review-absol-img img:nth-of-type(2) {
  animation-delay: 2.5s;
  z-index: 3;
}

.review-absol-img img:nth-of-type(3) {
  animation-delay: 5s;
  z-index: 2;
}

.review-absol-img img:nth-of-type(4) {
  animation-delay: 7.5s;
  z-index: 1;
}

.review-bubble {
  position: absolute;
  z-index: 3;
  transition: unset;
}

.review-bubble.first {
  max-width: 380px;
  width: 35%;
  left: -18%;
  top: 27%;
}

.review-bubble.second {
  max-width: 400px;
  width: 40%;
  left: -18%;
  bottom: 16%;
}

.review-bubble.third {
  max-width: 320px;
  width: 32%;
  right: -23%;
  top: 18%;
}

.review-bubble.fourth {
  max-width: 410px;
  width: 42.5%;
  right: -33%;
  bottom: 28%;
}

.left-swiper-container,
.right-swiper-container {
  width: fit-content;
  position: absolute;
  height: 100%;
  top: 0;
  overflow: hidden;
}

.left-swiper-container {
  left: 50px;
}

.right-swiper-container {
  right: 50px;
}

.left-swiper-container .swiper-wrapper,
.right-swiper-container .swiper-wrapper {
  display: flex;
  flex-direction: column;
  height: max-content;
  gap: 32px;
  visibility: hidden;
}

.left-swiper-container .swiper-wrapper {
  animation: review-scroll-down 50s linear infinite;
}

.right-swiper-container .swiper-wrapper {
  animation: review-scroll-up 50s linear infinite;
}

@keyframes review-scroll-up {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}

@keyframes review-scroll-down {
  0% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(0);
  }
}

.left-swiper-container img,
.right-swiper-container img {
  width: 100%;
  border-radius: 12px;
}

.left-swiper-container .swiper-slide,
.right-swiper-container .swiper-slide {
  width: 310px;
  height: fit-content;
}

/* ai */
#ai {
  width: 100%;
  background: url(../img/check-pattern.png);
  background-repeat: repeat;
  overflow: hidden;
}
#ai .ai-inner {
  width: 100%;
  display: flex;
  padding-top: 100px;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  position: relative;
}

.txt-circle-div {
  max-width: 330px;
  width: 23%;
  position: absolute;
  left: -21.001px;
  top: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.txt-circle-div .everyday-txt-circle {
  width: 100%;
  position: static;
}

.process-thumbup {
  max-width: 277px;
  width: 90%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -55%);
}

.ai-process {
  max-width: 1080px;
  width: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  z-index: 5;
}

.ai-process .process-box {
  width: calc(33.3% - 60px);
  border-radius: 12px;
  background: #fff;
  box-sizing: border-box;
  padding: 10px;
  gap: 40px 10px;
  position: relative;
}

.ai-process .process-box .process-num {
  display: flex;
  width: 60px;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  color: #0f62f2;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 120%; /* 24px */
  letter-spacing: -0.5px;
  z-index: 2;
}

.ai-process .process-box .process-box-inner {
  width: 100%;
  aspect-ratio: 7 / 6;
  border-radius: 8px;
  border: 2px solid #0f62f2;
  background: #fff;
  backdrop-filter: blur(6px);
  display: flex;
  padding: 32px 0 10px 0;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
  color: #0f52c5;
  text-align: center;
  font-family: 'Paperlogy';
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 31.2px */
  letter-spacing: -0.6px;
  word-break: keep-all;
}

.process-desc-wrap {
  width: 100%;
  display: flex;
  align-items: stretch;
  justify-content: center;
  border-top: 2px solid #fff;
  border-bottom: 2px solid #fff;
  background: #0f62f2;
  margin-top: 30px;
}

.process-desc-wrap p {
  position: relative;
  overflow: hidden;
  width: 33.3%;
  box-sizing: border-box;
  padding: 20px;
  color: #fff;
  font-family: 'Paperlogy';
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: -0.9px;
}

.process-desc-wrap p span {
  position: relative;
  z-index: 2;
}

.process-desc-wrap p:nth-child(2) {
  border-right: 2px solid #fff;
  border-left: 2px solid #fff;
}

.process-desc-wrap p::after {
  content: '';
  width: 100%;
  height: 100%;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  animation: process-focus 6s step-end infinite;
}

@keyframes process-focus {
  0% {
    opacity: 1;
  }
  33.4% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.process-desc-wrap p:nth-child(1)::after {
  animation-delay: 0s;
}
.process-desc-wrap p:nth-child(2)::after {
  animation-delay: 2s;
}
.process-desc-wrap p:nth-child(3)::after {
  animation-delay: 4s;
}

.process-img {
  max-width: 398px;
  width: 35%;
  position: absolute;
  right: 17px;
  bottom: 145px;
}

.ai-bottom {
  width: 100%;
  background: url(../img/ai-bg.png);
  background-position: center center !important;
  background-attachment: fixed;
  display: flex;
  padding-top: 100px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 50px;
  overflow: hidden;
}

.ai-bottom .ai-bottom-tit {
  color: #fff;
  text-align: center;
  font-family: 'Paperlogy';
  font-size: 48px;
  font-weight: 500;
  line-height: 140%; /* 67.2px */
  letter-spacing: -1.2px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.ai-bottom .ai-bottom-tit span {
  display: flex;
  box-sizing: border-box;
  padding: 8px 20px;
  justify-content: center;
  align-items: center;
  gap: 20px;
  border-radius: 12px;
  border: 2px solid rgba(0, 88, 73, 0.5);
  background: linear-gradient(180deg, #333 0%, #111 100%);
}

.ai-store {
  max-width: 545px;
  width: 80%;
}

.ai-marquee-wrap {
  border-top: 1px solid #0f62f2;
  border-bottom: 1px solid #0f62f2;
  background: #fff;
  width: 100%;
  overflow: hidden;
  display: flex;
  box-sizing: border-box;
  padding: 12px 0;
  align-items: center;
}

.ai-marquee-track {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 32px;
  animation: marquee-scroll 85s linear infinite;
  padding-right: 32px;
}

.ai-marquee-track img {
  width: 750px;
  flex-shrink: 0;
}

#text-marquee {
  overflow: hidden;
  width: 100%;
  padding: 20px 0;
  background: var(--PointColor, #0f62f2);
}
#text-marquee .marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-left 45s linear infinite;
  justify-content: center;
  align-items: center;
  gap: 24px;
}
#text-marquee .marquee-track p {
  color: #fff;
  text-align: center;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--PointColor, #0f62f2);
  font-family: Paperlogy;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 38.4px */
}
@keyframes marquee-left {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes marquee-right {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ===================== #ai-system ===================== */
#ai-system {
  width: 100%;
  padding: 100px 0;
  background: url(../img/ai-system-bg.png) lightgray 50% / cover no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

#ai-system .st-tit {
  color: #0f62f2;
  /* font-size: 68px;
  font-family: "Paperlogy", sans-serif;
  font-weight: 400;
  line-height: 1.3; */
  text-align: center;
  position: relative;
  z-index: 1;
}

#ai-system .st-tit strong {
  font-weight: 700;
}

/* Decorative elements */
#ai-system .ai-deco-bl {
  width: 20%;
  object-fit: contain;
  position: absolute;
  height: auto;
  max-width: 310px;
  max-height: 310px;
  left: 0px;
  bottom: 0px;
  pointer-events: none;
  z-index: 2;
}

#ai-system .ai-deco-tr {
  position: absolute;
  max-width: 352px;
  max-height: 352px;
  width: 20%;
  height: auto;
  right: 0;
  top: 200px;
  pointer-events: none;
  z-index: 2;
}

#ai-system .ai-dots-l {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 2;
}

#ai-system .ai-dots-r {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 0;
}

/* Inner container */
#ai-system .ai-inner {
  width: 90%;
  max-width: 1240px;
  display: grid;
  grid-template-rows: auto 1fr 1fr 1fr auto;
  position: relative;
  z-index: 1;
}

/* Dividers */
#ai-system .ai-divider {
  width: 100%;
  height: 1px;
  background: #111;
}

/* Feature rows */
#ai-system .ai-row {
  display: flex;
  align-items: stretch;
  width: 100%;
}

#ai-system .ai-text {
  width: 50%;
  flex: 1;
  padding: 50px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
}

#ai-system .ai-head {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#ai-system .ai-num-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

#ai-system .ai-num {
  color: #0f62f2;
  font-size: 32px;
  font-family: 'Pretendard', sans-serif;
  font-weight: 600;
  flex-shrink: 0;
}

#ai-system .ai-num-line {
  flex: 1;
  height: 1px;
  background: #0f62f2;
}

#ai-system .ai-feature-tit {
  color: #0f62f2;
  font-size: 40px;
  font-family: 'Paperlogy', sans-serif;
  font-weight: 600;
  line-height: 52px;
}

#ai-system .ai-desc-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

#ai-system .ai-feature-sub {
  color: #111;
  font-size: 24px;
  font-family: 'Pretendard', sans-serif;
  font-weight: 600;
  line-height: 1.4;
}

#ai-system .ai-feature-desc {
  color: #505050;
  font-size: 24px;
  font-family: 'Pretendard', sans-serif;
  font-weight: 400;
  line-height: 1.4;
  word-break: keep-all;
}

#ai-system .ai-img-wrap {
  flex: 0 0 50%;
  position: relative;
  align-self: stretch;
}

#ai-system .ai-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid #111;
}

#ai-system .ai-img--pad {
  object-fit: contain;
  background-color: #fff;
}

#ai-system .marquee-wrap {
  position: absolute;
  top: 0;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
  padding: 3px 0;
}
#ai-system .marquee-wrap.marquee-l {
  left: 20px;
}
#ai-system .marquee-wrap.marquee-r {
  right: 20px;
}
#ai-system .marquee-wrap .marquee-track {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#ai-system .marquee-wrap .marquee-track .marquee-tag {
  display: block;
}
#ai-system .marquee-wrap.marquee-l .marquee-track {
  animation: marquee-up 35s linear infinite;
}
#ai-system .marquee-wrap.marquee-r .marquee-track {
  animation: marquee-down 35s linear infinite;
}

@keyframes marquee-up {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}
@keyframes marquee-down {
  0% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(0);
  }
}

/* ===================== #cost ===================== */
#cost {
  width: 100%;
  padding: 100px 0;
  background: #fbf9f4;
  overflow: hidden;
  outline: 20px solid #0f62f2;
  outline-offset: -20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  box-sizing: border-box;
}

#cost .cost-tit-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

#cost .cost-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

#cost .st-tit {
  color: #0f62f2;
  /* font-size: 68px;
  font-family: "Paperlogy", sans-serif;
  font-weight: 700;
  line-height: 1.3; */
}

#cost .cost-container {
  width: 1000px;
  position: relative;
}

#cost .cost-table-group {
  display: flex;
  flex-direction: column;
  gap: 24px;
  opacity: 0.9;
  filter: blur(10px);
}

#cost .cost-table-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

#cost .cost-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 12px;
  overflow: hidden;
}

#cost .cost-table thead tr {
  border-bottom: 2px solid #381804;
}

#cost .cost-table thead th {
  padding: 16px;
  background: #eee8dc;
  color: #381804;
  font-size: 20px;
  font-family: 'Pretendard', sans-serif;
  font-weight: 700;
  line-height: 28px;
  text-align: center;
  border-bottom: 2px solid #381804;
}

#cost .cost-table thead th.col-cat {
  width: 260px;
  text-align: center;
  border-radius: 12px 0 0 0;
}

#cost .cost-table thead th.col-desc {
  text-align: center;
}

#cost .cost-table thead th.col-price {
  width: 240px;
}

#cost .th-unit {
  font-weight: 400;
}

#cost .cost-table tbody tr {
  background: white;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

#cost .cost-table tbody tr:last-child {
  border-bottom: none;
}

#cost .cost-table tbody td {
  padding: 12px 16px;
  vertical-align: middle;
  font-size: 20px;
  font-family: 'Pretendard', sans-serif;
  color: #505050;
  font-weight: 400;
  line-height: 28px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

#cost .cost-table tbody tr:last-child td {
  border-bottom: none;
}

#cost .cost-table tbody td.cat-cell {
  width: 260px;
  background: #ece5d8;
  color: #4a2f27;
  font-weight: 700;
  text-align: center;
}

#cost .cost-table tbody td.cat-cell.last {
  border-radius: 0 0 0 12px;
}

#cost .cost-table tbody td.price-cell {
  width: 240px;
  text-align: center;
  color: #111111;
  font-weight: 700;
}

#cost .price-note {
  color: #111111;
  font-weight: 400;
}

#cost .cost-total-bar {
  background: #0f62f2;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#cost .total-label {
  width: 260px;
  padding: 16px;
  text-align: center;
  color: white;
  font-size: 24px;
  font-family: 'Pretendard', sans-serif;
  font-weight: 700;
  line-height: 28px;
  flex-shrink: 0;
}

#cost .total-price {
  padding: 16px;
  text-align: center;
  color: white;
  font-size: 32px;
  font-family: 'Gmarket Sans', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  flex-shrink: 0;
}

#cost .cost-note {
  color: #505050;
  font-size: 20px;
  font-family: 'Pretendard', sans-serif;
  font-weight: 400;
}

#cost .cost-promo-card {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 8px;
  background: white;
  box-shadow: 0 0 24px rgba(15, 98, 242, 0.8);
  outline: 1px solid #0f62f2;
  z-index: 2;
}

#cost .promo-inner {
  padding: 30px;
  background: #0f62f2;
  outline: 4px solid #0f62f2;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#cost .promo-item {
  height: 70px;
  display: flex;
  align-items: center;
  gap: 10px;
}

#cost .promo-item.promo-waived {
  gap: 10px;
}

#cost .promo-item.promo-discount {
  gap: 10px;
}

#cost .promo-item-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

#cost .promo-tag {
  padding: 5px 10px;
  background: #111111;
  color: white;
  font-size: 24px;
  font-family: 'Paperlogy', sans-serif;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
}

#cost .promo-price {
  font-size: 32px;
  font-family: 'Pretendard', sans-serif;
  font-weight: 700;
  color: white;
  line-height: 1.2;
  white-space: nowrap;
}
#cost .promo-price.promo-arrow {
  font-size: 22px;
}

#cost .promo-price.promo-strike {
  text-decoration: line-through;
}

#cost .promo-price.promo-yellow {
  color: #ffda6c;
}

#cost .promo-desc {
  color: white;
  font-size: 24px;
  font-family: 'Pretendard', sans-serif;
  font-weight: 400;
  line-height: 1.2;
  white-space: nowrap;
}

#cost .promo-free {
  width: 118px;
  aspect-ratio: 118.1 / 70;
  flex-shrink: 0;
  display: block;
}
#cost .promo-free.promo-free2 {
  width: 160px;
  aspect-ratio: 158.61 / 70;
}

/* ===================== #contact ===================== */
#contact {
  box-sizing: border-box;
  width: 100%;
  padding: 100px 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 50px;
  position: relative;
  background-color: #fbf9f4;
  background-image: url(../img/contact-bg.png);
  background-size: cover !important;
  background-position: center center !important;
  overflow: hidden;
}

#contact::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 367px;
  background: #0f62f2;
  z-index: 0;
}

#contact .contact-deco-left {
  position: absolute;
  width: 667px;
  left: -239px;
  bottom: 200px;
  z-index: 1;
  pointer-events: none;
}

#contact .contact-deco-right {
  position: absolute;
  width: 400px;
  right: 0;
  top: 111px;
  box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.2);
  border: 10px solid #fff;
  z-index: 1;
}

#contact .tit-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  position: relative;
  z-index: 1;
}

#contact .st-sub-tit {
  color: #0f62f2;
  /* font-size: 36px;
  font-family: "Paperlogy", sans-serif;
  font-weight: 500;
  line-height: 1.2; */
}

#contact .st-tit {
  color: #0f62f2;
  font-family: 'Paperlogy', sans-serif;
}

#contact .contact-badge {
  display: inline-flex;
  padding: 10px 28px;
  background: #0f62f2;
  border-radius: 100px;
  color: #fff;
  font-size: 28px;
  font-family: 'Pretendard', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

#contact .contact-form-outer {
  width: 800px;
  box-sizing: border-box;
  padding: 12px;
  background: #0f62f2;
  outline: 1px solid #000;
  position: relative;
  z-index: 1;
}

#contact .contact-form {
  display: flex;
  width: 100%;
  box-sizing: border-box;
  padding: 50px;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  border-radius: 0;
  box-shadow: none;
  max-width: none;
  outline: 1px solid #000;
}

.flex-input {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 30px;
}

.item {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#contact .item label {
  box-sizing: border-box;
  color: #111111;
  font-size: 16px !important;
  font-weight: 700 !important;
  line-height: 24px !important;
}

#contact .label-optional {
  color: #999999;
  font-weight: 700;
}

#contact .contact-form input[type='text'],
#contact .contact-form input[type='tel'],
#contact .contact-form textarea {
  width: 100%;
  box-sizing: border-box;
  height: 44px;
  padding: 10px;
  color: #111111;
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 24px;
  border-radius: 0;
  border: none;
  outline: 1px solid rgba(17, 17, 17, 0.5);
  background: #fff;
}

#contact .contact-form input[type='text']:focus,
#contact .contact-form input[type='tel']:focus,
#contact .contact-form textarea:focus {
  outline: 1px solid #0f62f2;
  box-shadow: none !important;
}

#contact .contact-form input[type='text']::placeholder,
#contact .contact-form input[type='tel']::placeholder,
#contact .contact-form textarea::placeholder {
  color: rgba(17, 17, 17, 0.5);
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
}

#contact .contact-form textarea {
  height: auto;
  min-height: 80px;
  resize: none;
}

.s-btn-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

#contact .form-tab {
  flex: 1;
  height: 44px;
  box-sizing: border-box;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  border: none;
  outline: 1px solid rgba(0, 0, 0, 0.5);
  background: #fff;
  color: rgba(0, 0, 0, 0.5);
  font-size: 16px;
  font-family: 'Pretendard', sans-serif;
  font-weight: 300;
  line-height: 24px;
  cursor: pointer;
  transition: 0.1s;
}

#contact .form-tab.have {
  outline: 1px solid #0f62f2;
  color: #0f62f2;
  font-weight: 600;
}

.form-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}

.agree-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
}

#contact .contact-form .round-checkbox {
  width: 30px;
  height: 30px;
  border-radius: 50px;
  appearance: none;
  -webkit-appearance: none;
  position: relative;
  cursor: pointer;
  background: #fff;
  outline: 1.2px solid rgba(168, 168, 168, 0.3);
  border: none;
}

#contact .contact-form .round-checkbox:checked {
  background-image: url('../img/check.png');
  background-size: 17px;
  background-position: center center;
  background-color: #0f62f2;
  background-repeat: no-repeat;
  outline: none;
}

#contact .contact-form .agree {
  color: #333;
  font-size: 16px !important;
  font-weight: 400;
  line-height: 24px !important;
  cursor: pointer;
}

#contact .contact-form .agree-open {
  font-weight: 600 !important;
  color: #0f62f2;
}

#contact .c-btn {
  width: 150px;
  height: 42px;
  background: #0f62f2;
  box-sizing: border-box;
  padding: 10px 40px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 20px;
  font-family: 'Paperlogy', sans-serif;
  font-weight: 600;
  line-height: 100%;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.2s;
  white-space: nowrap;
}

#contact .c-btn:hover {
  background: #0040d0;
}
#profit-breakdown-container {
  background: #111;
  display: flex;
  width: 100%;
  padding: 20px;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* ===================== #brand ===================== */
@font-face {
  font-family: 'iceJaram';
  src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2307-2@1.0/OTF/icejaram.woff2')
    format('woff2');
  font-weight: 400;
  font-style: normal;
}

#brand {
  width: 100%;
  padding: 150px 60px 120px;
  background: linear-gradient(rgba(17, 17, 17, 0.4), rgba(17, 17, 17, 0.4)),
    url(../img/brand-bg.png) center/cover no-repeat;
  position: relative;
  overflow: visible;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  overflow: hidden;
  /* outline: 2px #0f62f2 solid; */
  /* outline-offset: -30px; */
}
#brand .row-line {
  border: 2px #0f62f2 solid;
  width: 101%;
  height: calc(100% - 120px);
  position: absolute;
  margin: 60px 0;
  top: 0;
  left: -1px;
}
#brand .col-line {
  border: 2px #0f62f2 solid;
  height: 101%;
  width: calc(100% - 120px);
  position: absolute;
  margin: 0 60px;
  top: -1px;
}

#brand .corner {
  position: absolute;
  z-index: 2;
}
#brand .corner.corner-tl {
  top: 40px;
  left: 40px;
}
#brand .corner.corner-tr {
  top: 40px;
  right: 40px;
}
#brand .corner.corner-bl {
  bottom: 40px;
  left: 40px;
}
#brand .corner.corner-br {
  bottom: 40px;
  right: 40px;
}

#brand .brand-inner {
  /* margin:  60px ; */
  /* padding: 90px 0 60px; */
  width: 100%;
  /* max-width: 1300px; */
  display: flex;
  flex-direction: column;
  gap: 50px;
  position: relative;
  z-index: 1;
  /* border: 2px #0f62f2 solid; */
}

#brand .brand-contain {
  width: 100%;
}
#brand .brand-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 70px;
  gap: 30px;
}

#brand .brand-top .tit-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-bottom: 40px;
}

#brand .brand-top .st-sub-tit {
  width: 100%;
  color: #0f62f2;
  text-align: left;
  /* font-size: 36px;
  font-weight: 500; */
}
#brand .brand-top .st-tit {
  color: white;
  text-align: left;
}
#brand .brand-tit-point {
  color: #0f62f2;
}

#brand .brand-lineup-img {
  max-width: 587px;
  height: auto;
  width: 40%;
}

/* Panel */
#brand .brand-panel {
  background: #0f62f2;
  border-top: 2px #0f62f2 solid;
  border-bottom: 2px #0f62f2 solid;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

#brand .brand-tab-list {
  max-width: 390px;
  width: 50%;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  border-right: 1px black solid;
  flex-shrink: 0;
}

#brand .brand-tab-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  border-bottom: 1px black solid;
  cursor: pointer;
  transition: background 0.2s;
}

#brand .brand-tab-item:last-child {
  border-bottom: none;
}
#brand .brand-tab-item.is-active {
  background: white;
}

#brand .brand-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.1s;
}
#brand .brand-icon img,
#brand .brand-icon svg {
  width: 72%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

#brand .brand-icon--seominjeyuk {
  background-color: #f99b08;
}
#brand .brand-icon--deopumbap {
  background-color: white;
  opacity: 0.75;
}
#brand .brand-icon--dugonggi {
  background-color: #cb1c1f;
  opacity: 0.75;
}
#brand .brand-icon--hwangjedon {
  background-color: #003418;
  opacity: 0.75;
}

#brand .brand-tab-item:hover .brand-icon {
  opacity: 1 !important;
}

#brand .brand-tab-info {
  display: flex;
  flex-direction: column;
}

#brand .brand-tab-name {
  font-family: Paperlogy;
  font-weight: 600;
  font-size: 28px;
  line-height: 1.2;
  padding: 5px 0;
  transition: 0.1s;
}

#brand .brand-tab-item.is-active .brand-tab-name {
  color: #0f62f2;
}
#brand .brand-tab-item:not(.is-active) .brand-tab-name {
  color: rgba(255, 255, 255, 0.75);
}

#brand .brand-tab-item:not(.is-active):hover .brand-tab-name {
  color: #fff !important;
}

#brand .brand-tab-desc {
  font-family: Pretendard;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  word-break: keep-all;
}

#brand .brand-tab-item.is-active .brand-tab-desc {
  color: #0f62f2;
}
#brand .brand-tab-item:not(.is-active) .brand-tab-desc {
  color: white;
}

#brand .brand-detail-wrap {
  flex: 1;
  position: relative;
  overflow: hidden;
}

#brand .brand-detail {
  position: absolute;
  inset: 0;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  overflow: hidden;
}

#brand .brand-detail.is-active {
  display: flex;
}

@keyframes neon-pulse {
  0%,
  100% {
    text-shadow: 0 0 0px rgba(255, 255, 255, 0);
  }
  50% {
    text-shadow: 0 0 12px rgba(255, 255, 255, 1),
      0 0 28px rgba(255, 255, 255, 0.6);
  }
}

#brand .brand-quote {
  color: white;
  font-size: 48px;
  text-align: center;
  animation: neon-pulse 2.4s ease-in-out infinite;
  text-shadow: 0 0 12px rgba(255, 255, 255, 1);
  line-height: 1.2;
  display: flex;
  gap: 5px;
  padding: 0 20px;
}

#brand .brand-quote .quote-mark {
  font-family: ABeeZee, sans-serif;
  font-weight: 400;
}
#brand .brand-quote .brand-quote-txt {
  word-break: keep-all;
  font-family: 'iceJaram', Paperlogy, sans-serif;
  font-weight: 400;
}

#brand .brand-menu-marquee {
  overflow: hidden;
  width: 100%;
}

#brand .brand-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px;
  width: max-content;
  animation: brand-menu-scroll 28s linear infinite;
}

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

#brand .brand-menu-item {
  display: flex;
  flex-direction: column;
  width: 300px;
  flex-shrink: 0;
}

#brand .brand-menu-img-wrap {
  background-color: #fff;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
  flex-shrink: 0;
}

#brand .brand-menu-img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 0;
  display: block;
  transition: transform 0.4s ease;
}

#brand .brand-menu-item:hover .brand-menu-img {
  transform: scale(1.2);
}

#brand .brand-menu-name {
  background: white;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-radius: 0 0 12px 12px;
  padding: 20px 10px;
  text-align: center;
  color: #222;
  font-family: Pretendard;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
  word-break: keep-all;
}

/* Stats */
#brand .brand-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  align-items: center;
  box-sizing: border-box;
  padding: 20px 0;
  overflow: visible;
}

#brand .brand-stat-chip {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 30px;
  background: white;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  outline: 1px #381804 solid;
  outline-offset: -1px;
  transform: rotate(-5deg);
  position: relative;
  overflow: hidden;
}

#brand .brand-stat-chip::before,
#brand .brand-stat-chip::after {
  content: '';
  position: absolute;
  background: #0f62f2;
  width: 8px;
  height: 70px;
  top: 50%;
  transform: translateY(-50%);
}

#brand .brand-stat-chip::before {
  left: 0;
  border-radius: 0 0 4px 4px;
}
#brand .brand-stat-chip::after {
  right: 0;
  border-radius: 4px 4px 0 0;
}

#brand .brand-stat-label {
  font-family: Paperlogy;
  font-size: 32px;
  font-weight: 600;
  color: #111;
}
#brand .brand-stat-value {
  font-family: Paperlogy;
  font-size: 44px;
  font-weight: 700;
  color: #ea5619;
}

/* Bottom */
#brand .brand-bottom {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#brand .brand-catchphrase {
  color: white;
  font-family: Paperlogy;
  font-size: 40px;
  font-weight: 400;
}
#brand .brand-catchphrase strong {
  font-weight: 700;
}
#brand .brand-bottom-tit {
  color: transparent;
  text-align: center;
  -webkit-text-stroke-width: 1.5px;
  -webkit-text-stroke-color: #fff;
  font-family: Paperlogy;
  font-size: 56px;
  font-style: normal;
  font-weight: 800;
  line-height: 120%; /* 67.2px */
}

/* Circle deco */
@keyframes brand-circle-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}

#brand .brand-circle-deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  width: 330px;
  height: 330px;
  bottom: 100px;
}
#brand .brand-circle-deco--l {
  left: -105px;
}
#brand .brand-circle-deco--r {
  right: -105px;
}
#brand .brand-circle-deco img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: brand-circle-spin 12s linear infinite;
}
#brand .brand-circle-deco--r img {
  animation-direction: reverse;
}

/* ===================== #profit ===================== */
#profit {
  width: 100%;
  padding: 100px 0;
  background: #111;
  outline: 4px #0f62f2 solid;
  outline-offset: -4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  position: relative;
  box-sizing: border-box;
  overflow: hidden;
}
#profit .profit-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
#profit .profit-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.7);
  z-index: 1;
}
#profit .tit-wrap,
#profit .profit-compare,
#profit .profit-note {
  position: relative;
  z-index: 2;
}

#profit .st-sub-tit {
  color: white;
  /* font-size: 36px;
  font-family: "Paperlogy", sans-serif;
  font-weight: 500; */
  text-align: center;
}

#profit .st-tit {
  color: white;
  /* font-size: 68px;  font-family: "Paperlogy", sans-serif;
  font-weight: 700;
  text-align: center; */
}

#profit .profit-pct {
  color: #ffda6c;
}

#profit .profit-compare {
  display: flex;
  justify-content: center;
  align-items: center;
  align-items: stretch;
  width: 90%;

  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

#profit .compare-card--other {
  margin: 38px 0;
  max-width: 600px;
  width: 48%;
  background: linear-gradient(226deg, #d2d2d2 0%, #e6e6e6 100%);
  border-radius: 12px 0 0 12px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

#profit .compare-card--loekal {
  max-width: 620px;
  width: 52%;
  background: linear-gradient(180deg, #0f62f2 0%, #5996ff 100%);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: -10px 4px 24px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

#profit .compare-head {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  height: 100px;
  border-bottom: 1px solid rgba(68, 68, 68, 0.2);
  color: #505050;
  font-size: 32px;
  font-family: 'Paperlogy', sans-serif;
  font-weight: 700;
}

#profit .compare-card--loekal .compare-head {
  width: 100%;
  height: auto;
  padding: 20px;
  border-bottom-color: rgba(255, 255, 255, 0.3);
}

#profit .compare-logo {
  height: 66px;
  width: auto;
}

#profit .compare-list {
  list-style: none;
  width: 100%;
  flex: 1;
  align-items: center;
  justify-content: space-evenly;
  display: flex;
  flex-direction: column;
}

#profit .compare-item {
  display: flex;
  align-items: center;
  gap: 5px;
  width: 100%;
  justify-content: center;
  padding: 24px 50px;
  border-bottom: 1px solid rgba(68, 68, 68, 0.2);
  color: #444;
  font-size: 32px;
  font-family: 'Pretendard', sans-serif;
  font-weight: 700;
}

#profit .compare-item:last-child {
  border-bottom: none;
}

#profit .compare-card--loekal .compare-item {
  border-bottom-color: rgba(255, 255, 255, 0.3);
  color: white;
  padding: 30px 50px;
}

/* 결과 박스 */
#profit .compare-result {
  padding: 30px;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
}
#profit .compare-result-gray.compare-result {
  margin: 0 38px 20px;
}

#profit .result-label {
  color: #b7b7b7;
  font-size: 32px;
  font-family: 'Pretendard', sans-serif;
  font-weight: 700;
}

#profit .result-value {
  color: #d9d9d9;
  font-size: 56px;
  font-family: 'Paperlogy', sans-serif;
  font-weight: 700;
}

#profit .compare-result-blue .result-value {
  background: var(
    --Gold,
    linear-gradient(
      137deg,
      #ffb800 18.01%,
      #d58000 31.78%,
      #ffdc80 47.51%,
      #d58000 83.25%
    )
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  position: relative;
}
#profit .compare-result-blue .result-value .line {
  position: absolute;
  bottom: -15px;
  max-width: 440px;
  width: 112%;
  left: -62%;
  transform: translateX(50%);
}

#profit .compare-result-blue {
  padding: 0 32px 32px;
}
#profit .compare-result--loekal {
  width: 100%;
  position: relative;
}

/* 노란 코너 장식 */
#profit .compare-result--loekal svg {
  position: absolute;
  /* right: -5px; */
  right: -19px;
  top: -16px;
  z-index: 1;
}

/* 노란 밑줄 */
/* #profit .compare-result--loekal .result-value {
  color: #ffb800;
  font-size: 80px;
  position: relative;
} */

/* #profit .compare-result--loekal .result-value::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 8px;
  background: #ffda6c;
} */

#profit .compare-result--loekal .result-label {
  color: #f9ce6e;
}

#profit .profit-note {
  color: rgba(255, 255, 255, 0.7);
  font-size: 20px;
  font-family: 'Pretendard', sans-serif;
  font-weight: 400;
  margin-top: -40px;
}

/* ===================== #breakdown ===================== */
#breakdown {
  width: 100%;
  padding: 100px 0;
  /* background: url(<path-to-image>) lightgray 50% / cover no-repeat, #FBF9F4; */
  background: #fbf9f4;
  /* background: #FBF9F4 url(../img/breakdown-bg.png) center/cover no-repeat; */
  border-left: 20px #0f62f2 solid;
  border-right: 20px #0f62f2 solid;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

/* 사선 파란 배경 장식 */
#breakdown::before {
  /* content: "";
  position: absolute;
  width: 110%;
  height: 58%;
  left: -5%;
  top: 18%;
  background: linear-gradient(219deg, #0f62f2 0%, #5e99ff 71%, #c6dbff 100%);
  transform: rotate(-3deg);
  z-index: 0;
  pointer-events: none; */
}

#breakdown::after {
  content: '';
  position: absolute;
  width: 12%;
  height: 8%;
  right: 0;
  top: 1%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.3) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(-3deg);
  z-index: 0;
  pointer-events: none;
}

#breakdown .tit-wrap,
#breakdown .breakdown-revenue-bar,
#breakdown .breakdown-inner {
  position: relative;
  z-index: 1;
}

#breakdown .st-sub-tit {
  color: #0f62f2;
  /* font-size: 36px;
  font-family: "Paperlogy", sans-serif;
  font-weight: 500; */
  text-align: center;
}

#breakdown .st-tit {
  color: #0f62f2;
  /* font-size: 68px;
  font-family: "Paperlogy", sans-serif;
  font-weight: 700; */
  text-align: center;
}

/* 매출 바 */
#breakdown .breakdown-revenue-bar {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 40px;
  box-sizing: border-box;
}

#breakdown .breakdown-line {
  flex: 1;
  height: 2px;
  background: #0f62f2;
}

#breakdown .breakdown-revenue {
  display: flex;
  align-items: center;
  gap: 16px;
}

#breakdown .breakdown-revenue-label {
  color: black;
  font-size: 48px;
  font-family: 'Pretendard', sans-serif;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

#breakdown .breakdown-vat {
  font-size: 20px;
  font-weight: 400;
}

#breakdown .breakdown-amount-box {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  padding: 10px 30px;
  background: #111;
  border-radius: 20px;
}

#breakdown .breakdown-amount {
  color: #ffda6c;
  font-size: 64px;
  font-family: 'Pretendard', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

#breakdown .breakdown-unit {
  color: #ffda6c;
  font-size: 40px;
  font-family: 'Pretendard', sans-serif;
  font-weight: 700;
  line-height: 1.5;
}

/* 테이블 */
#breakdown .breakdown-inner {
  width: 1000px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#breakdown .breakdown-table-wrap {
  /* 
  filter: blur(10px); */
  opacity: 0.9;
  border-radius: 12px;
  overflow: hidden;
}

#breakdown .breakdown-table {
  width: 100%;
  border-collapse: collapse;
}

#breakdown .breakdown-table thead th {
  padding: 16px;
  background: white;
  color: #272b4a;
  font-size: 20px;
  font-family: 'Pretendard', sans-serif;
  font-weight: 700;
  text-align: center;
  border-bottom: 2px solid #272b4a;
}

#breakdown .breakdown-table thead th.col-cat {
  width: 260px;
  background: #e9e9e9;
}

#breakdown .breakdown-table tbody td {
  padding: 12px 16px;
  background: white;
  color: #505050;
  font-size: 24px;
  font-family: 'Pretendard', sans-serif;
  font-weight: 400;
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  vertical-align: middle;
}

#breakdown .breakdown-table tbody tr:last-child td {
  border-bottom: none;
}

#breakdown .breakdown-table tbody td.cat-cell {
  background: #e9e9e9;
  color: #272b4a;
  font-weight: 700;
}

#breakdown .cat-note {
  display: block;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}

#breakdown .rate-cell {
  color: #0f62f2;
  font-weight: 700;
}

/* 합계 바 */
#breakdown .breakdown-total-bar {
  background: #0f62f2;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

#breakdown .breakdown-total-cat,
#breakdown .breakdown-total-amount,
#breakdown .breakdown-total-rate {
  padding: 10px 16px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

#breakdown .breakdown-total-cat {
  width: 260px;
  flex-shrink: 0;
  flex-direction: column;
  font-size: 24px;
  font-family: 'Pretendard', sans-serif;
  font-weight: 700;
  line-height: 1.4;
}

#breakdown .total-note {
  font-size: 20px;
  font-weight: 400;
}

#breakdown .breakdown-total-amount {
  flex: 1;
  font-size: 28px;
  font-family: 'Pretendard', sans-serif;
  font-weight: 700;
}

#breakdown .breakdown-total-rate {
  flex: 1;
  font-size: 28px;
  font-family: 'Gmarket Sans', sans-serif;
  font-weight: 700;
}

#breakdown .breakdown-arrow {
  position: absolute;
  width: 100%;
  height: auto;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
  pointer-events: none;
  will-change: clip-path;
}

#breakdown .breakdown-formula {
  text-align: right;
  color: #505050;
  font-size: 20px;
  font-family: 'Pretendard', sans-serif;
  font-weight: 400;
}

/* ===================== #order ===================== */
#order {
  position: relative;
  padding: 100px 0;

  background: linear-gradient(rgba(17, 17, 17, 0.8), rgba(17, 17, 17, 0.8)),
    url('../img/order-bg.png') center / cover no-repeat #111;

  overflow: hidden;
  outline: 20px solid #0f62f2;
  outline-offset: -20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}
#order .order-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  width: 100%;
}
#order .order-tit-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

#order .order-headline {
  font-family: 'iceJaram', sans-serif;
  font-size: 80px;
  font-weight: 700;
  line-height: 1.2;
  color: #0f62f2;
  text-align: center;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.35));
}
#order .order-question-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
#order .order-sub-txt {
  font-family: 'Paperlogy', sans-serif;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.2;
  color: #fff;
  text-align: center;
}
#order .order-question {
  font-family: 'Paperlogy', sans-serif;
  font-size: 68px;
  font-weight: 700;
  line-height: 1.3;
  color: #ffda6c;
  text-align: center;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
#order .order-platform-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
#order .order-divider {
  display: block;
  width: 1px;
  height: 78px;
  background: #fff;
}
#order .order-platform-names {
  font-family: 'Pretendard', sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
  text-align: center;
}
#order .order-badge {
  position: relative;
  padding: 0 10px;
  font-family: 'Pretendard', sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
  text-align: center;
}
#order .order-badge-bg {
  position: absolute;
  inset: 0;
  background: #0f62f2;
  clip-path: inset(0 100% 0 0);
}
#order .order-badge-txt {
  position: relative;
}
#order .order-card-wrap {
  display: flex;
  align-items: stretch;
  border-top: 2px solid #0f62f2;
  border-bottom: 2px solid #0f62f2;
  width: 100%;
  justify-content: center;
}
#order .order-card-wrap .order-card-contain {
  display: flex;
  align-items: stretch;
  background: #0f62f2;
  width: 88%;
  max-width: 1260px;
  position: relative;
}
#order .order-screen-wrap {
  position: relative;
  width: 55%;
  max-width: 687px;
  flex-shrink: 0;
  overflow: hidden;
}
#order .order-screen-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
#order .order-card-body {
  padding: 50px 60px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: center;
}
#order .order-card-tit {
  font-family: 'Paperlogy', sans-serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.2;
  color: #fff;
}
#order .order-em {
  color: #ffda6c;
  font-style: normal;
}
#order .order-card-desc {
  font-family: 'Pretendard', sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.45;
  color: #fff;
  word-break: keep-all;
}
#order .order-closing-txt {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  font-family: 'Paperlogy', sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.2;
  color: #fff;
  text-align: center;
}
#order .order-closing-txt strong {
  font-weight: 700;
}
#order .order-noti {
  position: absolute;
  padding: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, #fff 100%);
  border-radius: 20px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(6px);
  font-family: 'BM HANNA 11yrs old OTF', 'Pretendard', sans-serif;
  font-size: 32px;
  color: #111;
  line-height: 1.2;
  white-space: nowrap;
}
#order .order-noti::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 22px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='22' viewBox='0 0 24 22' fill='none'%3E%3Cpath d='M0 19.1009V2.2C0 0.984974 0.984975 0 2.2 0H21.2136C23.2365 0 24.1871 2.50034 22.6752 3.8443L3.6616 20.7452C2.24282 22.0064 0 20.9992 0 19.1009Z' fill='white'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  bottom: -18px;
}
#order .order-noti--coupang {
  right: 16%;
  top: 124px;
}
#order .order-noti--coupang::after {
  left: 21px;
}
#order .order-noti--yogiyo {
  right: 22%;
  top: 343px;
}
#order .order-noti--yogiyo::after {
  left: 27px;
}
#order .order-noti--baemin {
  left: 9%;
  top: 194px;
}
#order .order-noti--baemin::after {
  right: 20px;
  transform: scaleX(-1);
}
#order .order-circle-deco {
  position: absolute;
  width: 240px;
  height: 240px;
  left: -46px;
  top: -66px;
  border-radius: 50%;
  border: 5px solid #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  object-fit: cover;
  z-index: 1;
}

/* ===================== #system ===================== */
#system {
  overflow: hidden;
  width: 100%;
  padding: 100px 0;
  background: #fbf9f4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  box-sizing: border-box;
  position: relative;
}

#system .system-top,
#system .system-bottom {
  position: absolute;
}
#system .system-top {
  max-width: 484.448px;
  top: 55px;
  right: 0;
  width: 30%;
}
#system .system-bottom {
  width: 25%;
  max-width: 337px;
  bottom: -13px;
  left: 8px;
}
#system .st-sub-tit {
  color: #0f62f2;
}
#system .st-tit {
  color: #0f62f2;
  text-align: center;
}

#system .system-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 90%;
  max-width: 1300px;
}
#system .system-card {
  width: 100%;
  display: flex;
  align-items: stretch;
}
#system .system-card--cooker {
  background: #0f62f2;
}
#system .system-card--mixer {
  background: #003185;
}
#system .system-card-media {
  position: relative;
  width: 55%;
  max-width: 600px;
  flex-shrink: 0;
  overflow: hidden;
}
#system .system-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
#system .system-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  gap: 20px;
  position: relative;
  padding: 64px 35px;
}
#system .system-card-txt {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
#system .system-card-name {
  color: white;
  font-size: 44px;
  font-family: 'Paperlogy', sans-serif;
  font-weight: 700;
  line-height: 1.45;
}
#system .system-card-desc {
  color: white;
  font-size: 23px;
  font-family: 'Pretendard', sans-serif;
  font-weight: 500;
  line-height: 1.45;
  text-align: center;
  word-break: keep-all;
  margin-bottom: 20px;
}
#system .system-brand-box {
  max-width: 630px;
  width: 100%;
  position: relative;
  padding: 40px 40px 20px;
  background: rgba(0, 0, 0, 0.1);
  outline: 1px white solid;
  outline-offset: -1px;
  justify-content: center;
}
#system .system-brand-icons {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 10px;
  justify-content: center;
}
#system .system-brand-icon {
  width: calc(25% - 7.5px);
  max-width: 120px;
  max-height: 120px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;

  outline: 0.5px rgba(255, 255, 255, 0.3) solid;
  outline-offset: -0.5px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#system .system-brand-box.cooker {
  max-width: 490px;
  width: 73%;
}

#system .system-brand-box.cooker .system-brand-icon {
  width: calc(33.3% - 6.65px);
}

#system .system-brand-icon img {
  object-fit: contain;
  width: 60%;
}

#system .system-brand-icon.icon1 {
  background: #f99b08;
}
#system .system-brand-icon.icon2 {
  background: #cb1c1f;
}

#system .system-brand-icon.icon3 {
  background: #fff;
}

#system .system-brand-icon.icon4 {
  background: #003418;
}

#system .system-brand-label {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #111111;
  padding: 5px;
  outline: 1px white solid;
  outline-offset: -1px;
}
#system .system-brand-label p {
  border: 1px solid #fff;
  background: #111;
  padding: 6px 20px;
  color: white;
  font-size: 24px;
  font-family: 'Paperlogy', sans-serif;
  font-weight: 700;
  white-space: nowrap;
}

@media (max-width: 1600px) {
  .bg-coin-div {
    top: 40%;
  }
  .review-bubble.first,
  .review-bubble.second {
    left: -10%;
  }
  .review-bubble.third {
    right: -9%;
  }
  .review-bubble.fourth {
    right: -15%;
  }
  #system .system-top {
    top: 100px;
    width: 25%;
  }
}

@media (max-width: 1400px) {
  .support-item-inner {
    padding: 30px 0;
  }
  .support-item-inner p {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .support-item-inner div {
    font-size: 40px;
    /* font-size: 25px; */
    letter-spacing: -1px;
  }
  .everyday-sale-item .item-inner {
    font-size: 32px;
  }
  .everyday-sale-item .item-inner span {
    font-size: 40px;
  }
  .left-swiper-container .swiper-slide,
  .right-swiper-container .swiper-slide {
    width: 270px;
  }
  #order .order-screen-wrap {
    width: 53%;
  }
  #order .order-card-desc {
    font-size: 22px;
  }
  #order .order-card-body {
    padding: 45px 50px;
  }
  #order .order-noti--baemin {
    left: 6%;
  }
  #order .order-noti--coupang {
    right: 14%;
    top: 105px;
  }
  #order .order-noti--yogiyo {
    right: 16%;
    top: 343px;
  }
}

@media (max-width: 1300px) {
  #system .system-top {
    top: 120px;
  }
  #system .system-bottom {
    width: 20%;
  }
}

@media (max-width: 1280px) {
  .main-sub-tit {
    font-size: 32px;
    letter-spacing: -0.8px;
  }
  .main-tit {
    font-size: 64px;
    letter-spacing: -1.6px;
  }
  .main-circle-wrap {
    gap: 20px;
  }
  .main-circle {
    width: calc(25% - 15px);
  }
  .main-circle p {
    font-size: 28px;
    letter-spacing: -0.7px;
  }
  .main-circle div {
    font-size: 32px;
    letter-spacing: -0.8px;
  }
  #support {
    border-width: 15px;
  }
  .support-img.tl {
    width: 310px;
  }
  .support-img.tr {
    width: 274px;
  }
  .support-img.bl {
    width: 336px;
  }
  .support-img.br {
    width: 360px;
  }
  .support-container {
    padding: 40px 0;
  }
  .support-item {
    padding: 15px 6px;
    aspect-ratio: unset;
  }
  .support-item-num {
    height: 32px;
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .support-item-inner {
    padding: 30px 0 20px;
  }
  .support-item-inner p {
    font-size: 20px;
    letter-spacing: -0.5px;
  }
  .support-item-inner div {
    font-size: 35px;
    letter-spacing: -0.8px;
  }
  .support-badge {
    max-width: 114px;
  }
  .support-badge.badge2 {
    max-width: 220px;
    width: 66%;
  }

  .support-item-inner .y b {
    font-size: 18px;
  }

  .advertising-bottom .jaram-tit {
    font-size: 72px;
    letter-spacing: -1.8px;
  }
  .jaram-tit span {
    font-size: 64px;
    letter-spacing: -1.6px;
  }
  .advertising-bottom-txt {
    font-size: 28px;
    letter-spacing: -0.7px;
  }
  .store-brand-tit {
    font-size: 32px;
    letter-spacing: -0.8px;
  }
  .store-brand-tit img {
    width: 220px;
  }
  .store-brand-box {
    margin-top: -36px;
  }
  .highest-sale {
    font-size: 48px;
    letter-spacing: -1.2px;
  }
  .highest-sale .sale {
    font-size: 72px;
  }
  .system-inner {
    width: calc(100% - 60px);
  }
  .system-graph-wrap {
    gap: 40px;
  }
  .system-graph-div {
    width: calc(50% - 20px);
  }
  .system-txt div {
    font-size: 28px;
    letter-spacing: -0.7px;
  }
  .system-txt p {
    font-size: 40px;
    letter-spacing: -1px;
  }
  .everyday-wrap {
    gap: 30px;
  }
  .time-div {
    font-size: 64px;
    letter-spacing: 5.8px;
  }
  .everyday-div-sub p {
    font-size: 32px;
    letter-spacing: -0.8px;
  }
  .everyday-div-tit {
    font-size: 40px;
    letter-spacing: -1px;
  }
  .everyday-sale-wrap {
    gap: 20px;
  }
  .everyday-sale-item {
    width: calc(33.3% - 13.3px);
  }
  .everyday-sale-item .item-img p {
    font-size: 28px;
    letter-spacing: -0.7px;
    left: 13px;
    top: 10px;
  }
  .everyday-sale-item .item-inner {
    font-size: 28px;
    padding: 15px;
  }
  .everyday-sale-item .item-inner span {
    font-size: 36px;
  }
  #review {
    padding: 30px;
  }
  .thumbup {
    width: 220px;
  }
  .review-txt {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
  .review-bubble.first,
  .review-bubble.second {
    left: -2%;
  }
  .review-bubble.third {
    right: -3%;
  }
  .review-bubble.fourth {
    right: -6%;
  }
  .left-swiper-container {
    left: 30px;
  }
  .right-swiper-container {
    right: 30px;
  }
  .left-swiper-container .swiper-wrapper,
  .right-swiper-container .swiper-wrapper {
    gap: 24px;
  }
  .left-swiper-container .swiper-slide,
  .right-swiper-container .swiper-slide {
    width: 230px;
  }

  .process-desc-wrap p {
    font-size: 29px;
  }

  .ai-bottom .ai-bottom-tit {
    font-size: 40px;
  }
  .ai-process .process-box .process-box-inner {
    font-size: 20px;
  }
  #order .order-noti--coupang {
    right: 9%;
  }
  #order .order-noti--baemin {
    left: 4%;
  }
  #order .order-noti--yogiyo {
    right: 10%;
  }
  #order .order-noti {
    padding: 16px;
    font-size: 24px;
  }
  #order .order-sub-txt {
    font-size: 30px;
  }
  #order .order-question {
    font-size: 57px;
  }
  #order .order-platform-names {
    font-size: 25px;
  }
  #order .order-divider {
    height: 60px;
  }
  #order .order-badge {
    font-size: 27px;
  }
  #order .order-circle-deco {
    width: 180px;
    height: 180px;
    left: -25px;
    top: -63px;
  }
  #order .order-card-tit {
    font-size: 36px;
  }
  #order .order-card-desc {
    font-size: 17px;
  }
  #order .order-closing-txt {
    font-size: 28px;
  }
  #order .order-headline {
    font-family: 'iceJaram', sans-serif;
    font-size: 60px;
  }
  #system .system-top {
    top: 150px;
  }
  #system .system-brand-label p {
    font-size: 18px;
  }
  #system .system-card-name {
    font-size: 40px;
  }
  #system .system-card-desc {
    font-size: 18px;
  }
  #system .system-brand-box {
    padding: 30px 25px 20px;
  }
  #system .system-brand-box.cooker {
    width: 77.5%;
  }
  #brand .brand-top {
    padding: 0 35px;
  }
  #brand .brand-detail {
    gap: 25px;
  }
  #brand .brand-stat-label {
    font-size: 26px;
  }
  #brand .brand-stat-value {
    font-size: 36px;
  }
  #brand .brand-catchphrase {
    font-size: 32px;
  }
  #brand .brand-bottom-tit {
    font-size: 47px;
  }
  #brand .brand-menu-name {
    font-size: 20px;
  }
  #profit .compare-result--loekal .result-value {
    font-size: 45px;
  }
  #profit .compare-result-gray.compare-result {
    margin: 0 17px 20px;
  }
  #profit .compare-result-blue {
    padding: 0 25px 20px;
  }
  #profit .compare-card--other {
    width: 50%;
  }
  #profit .compare-card--loekal {
    width: 50%;
  }
  #profit .compare-item {
    font-size: 26px;
    padding: 20px 40px;
  }
  #profit .result-value {
    font-size: 48px;
  }
  #breakdown .breakdown-inner {
    width: 90%;
  }
  #breakdown .breakdown-amount {
    font-size: 52px;
  }
  #cost .cost-container {
    width: 90%;
  }
  #contact .contact-deco-right {
    width: 300px;
    top: 80px;
  }
  #contact .contact-deco-left {
    width: 500px;
    left: -180px;
  }
  #contact .st-tit {
    /* font-size: 56px; */
  }
  #contact .contact-badge {
    font-size: 22px;
  }
}

@media (max-width: 1100px) {
  .main-circle p {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .main-circle div {
    font-size: 28px;
    letter-spacing: -0.7px;
  }
  .everyday-sale-item .item-img p {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .everyday-sale-item .item-inner {
    font-size: 24px;
    padding: 10px;
  }
  .everyday-sale-item .item-inner span {
    font-size: 32px;
  }
  #ai-system .ai-deco-bl {
    width: 16%;
  }
  #system .system-brand-box {
    padding: 30px 15px 20px;
  }
  #system .system-brand-box.cooker {
    width: 76.5%;
  }
}

@media (max-width: 1024px) {
  .support-wrap {
    flex-wrap: wrap;
  }
  .support-item {
    /* width: 33%; */
  }

  .support-item-inner div {
    font-size: 27px;
  }
  .support-item-inner p {
    font-size: 19px;
  }
  .support-item-inner .y {
    gap: 6px;
  }

  .support-item-inner .y b {
    font-size: 13px;
  }
  .support-badge {
    width: 47%;
  }

  .phone-frame {
    width: 328px;
  }
  .baemin-swiper .swiper-slide {
    width: 250px !important;
  }
  .highest-sale {
    font-size: 40px;
    letter-spacing: -1px;
  }
  .highest-sale .sale {
    font-size: 64px;
  }
  .time-div {
    font-size: 56px;
    letter-spacing: 5.4px;
  }
  .everyday-sale-container {
    width: 100%;
  }
  .everyday-sale-wrap {
    display: none;
  }
  .everyday-swiper {
    display: block;
  }
  .everyday-div-sub p {
    font-size: 28px;
    letter-spacing: -0.7px;
  }
  .everyday-div-tit {
    font-size: 32px;
    letter-spacing: -0.8px;
    padding: 6px 15px;
  }
  .everyday-sale-container > p {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
  .review-circle {
    z-index: 10;
  }
  .review-absol-img {
    bottom: -5%;
  }
  .review-bubble.first {
    top: 4%;
  }
  .review-bubble.third {
    top: 10%;
  }
  .review-bubble.second {
    bottom: 18%;
  }
  .review-bubble.fourth {
    bottom: -12%;
  }

  .ai-process .process-box .process-box-inner {
    font-size: 15px;
    height: 100%;
  }
  .ai-process svg {
    width: 30px;
  }

  .ai-process .process-box .process-num {
    width: 40px;
    font-size: 17px;
  }

  .ai-process .process-box .process-box-inner img {
    width: 50px;
  }
  .process-desc-wrap p {
    font-size: 21px;
  }

  .ai-process .process-box {
    width: calc(33.3% - 47px);
    aspect-ratio: 1 / 1;
  }
  .ai-bottom .ai-bottom-tit {
    font-size: 30px;
  }

  .process-img {
    bottom: 105px;
  }
  #order .order-noti--baemin {
    left: 4%;
    top: 100px;
  }
  #order .order-noti--coupang {
    right: 8%;
  }
  #order .order-noti--yogiyo {
    right: 11%;
  }
  #order .order-divider {
    height: 43px;
  }
  #order .order-card-tit {
    font-size: 30px;
  }
  #order .order-card-body {
    padding: 32px 30px;
  }
  #order .order-card-desc br {
    display: none;
  }
  #order .order-screen-wrap {
    width: 50%;
  }
  #order .order-circle-deco {
    width: 150px;
    height: 150px;
    left: -15px;
    top: -38px;
  }
  #order .order-closing-txt {
    font-size: 25px;
  }
  #system .system-top {
    top: 175px;
    width: 24%;
  }
  #system .system-card-name {
    font-size: 28px;
  }
  #system .system-card-desc {
    font-size: 14px;
  }
  #system .system-brand-label p {
    font-size: 14px;
  }
  #system .system-brand-box.cooker {
    width: 77.5%;
  }
  #brand .brand-tab-list {
    width: 44%;
  }
  #brand .brand-icon {
    width: 70px;
    height: 70px;
  }
  #brand .brand-tab-name {
    font-size: 24px;
  }
  #brand .brand-quote {
    font-size: 40px;
  }
  #brand .brand-stat-value {
    font-size: 30px;
  }
  #brand .brand-stat-label {
    font-size: 20px;
  }
  #brand .brand-stat-chip::before,
  #brand .brand-stat-chip::after {
    width: 6px;
    height: 48px;
  }
  #brand .brand-stats {
    gap: 20px;
  }
  #brand .brand-catchphrase {
    font-size: 22px;
  }
  #brand .brand-bottom-tit {
    font-size: 38px;
  }
  #brand .brand-top {
    flex-direction: column;
    align-items: center;
    justify-content: start;
  }
  #brand .brand-top .tit-wrap {
    padding-bottom: 0px;
  }
  #brand .brand-lineup-img {
    width: 70%;
  }
  #brand .brand-top .st-tit,
  #brand .brand-top .st-sub-tit {
    text-align: center;
  }
  #text-marquee {
    padding: 18px 0;
  }
  #text-marquee .marquee-track {
    gap: 18px;
  }
  #text-marquee .marquee-track p {
    font-size: 22px;
  }
  #profit .compare-result--loekal .result-value {
    font-size: 34px;
  }
  #profit .result-value {
    font-size: 34px;
  }
  #profit .compare-card--other {
    margin: 25px 0;
  }
  #profit .compare-result {
    padding: 20px;
    gap: 10px;
  }
  #profit .compare-card--loekal .compare-item {
    padding: 20px 35px;
  }
  #profit .compare-item svg {
    width: 32px;
    height: 32px;
  }
  #profit .compare-result--loekal svg {
    width: 35px;
    height: 35px;
    right: -11px;
    top: -9px;
  }
  #breakdown .breakdown-revenue-label {
    font-size: 35px;
    line-height: 1.2;
  }
  #breakdown .breakdown-amount {
    font-size: 45px;
  }
  #breakdown .breakdown-unit {
    font-size: 30px;
  }
  #breakdown .breakdown-vat {
    font-size: 20px;
    line-height: 1.3;
  }
  #ai-system .ai-feature-tit {
    font-size: 32px;
    line-height: 40px;
  }
  #ai-system .ai-feature-sub,
  #ai-system .ai-feature-desc {
    font-size: 20px;
    word-break: keep-all;
  }
}

@media (max-width: 900px) {
  .pc {
    display: none !important;
  }
  .mobile {
    display: block;
  }
  .layer-popup .show-chk-wrap {
    margin-top: 0;
  }
  .layer-popup .show-chk-wrap a {
    font-size: 14px;
    line-height: 20px; /* 142.857% */
    letter-spacing: -0.35px;
  }
  .layer-popup .show-chk-wrap .x-btn {
    padding: 0 15px;
  }
  #main {
    height: 1100px;
  }
  #main .tit-wrap {
    gap: 10px;
    margin-top: -10%;
  }
  .main-sub-tit {
    font-size: 28px;
    letter-spacing: -0.7px;
  }
  .main-tit {
    font-size: 56px;
    letter-spacing: -1.4px;
  }
  .main-circle-wrap {
    flex-wrap: wrap;
  }
  .main-circle {
    max-width: 260px;
    width: calc(50% - 10px);
  }
  .main-store-div {
    width: 100%;
  }
  #support {
    padding: 80px 0 40px;
  }
  .support-img.tl {
    width: 260px;
    left: -95px;
  }
  .support-img.tr {
    width: 224px;
    right: -50px;
  }
  .support-img.bl {
    width: 286px;
  }
  .support-img.br {
    width: 300px;
  }
  .support-container {
    padding: 30px 0;
  }
  .marquee-track {
    padding-right: 16px;
  }
  .marquee-track {
    gap: 16px;
  }
  .marquee-track span {
    font-size: 32px;
    letter-spacing: -0.8px;
  }
  .advertising-top {
    padding-top: 80px;
  }
  .absol-line.left {
    left: 20px;
  }
  .absol-line.right {
    right: 20px;
  }
  .advertising-bottom {
    padding: 80px 0 120px;
  }
  .advertising-bottom .tit-div {
    gap: 8px;
  }
  .advertising-bottom .jaram-tit {
    font-size: 64px;
    letter-spacing: -1.6px;
  }
  .jaram-tit span {
    font-size: 56px;
    letter-spacing: -1.4px;
  }
  .advertising-graph-container {
    gap: 40px;
  }
  .advertising-graph-wrap {
    aspect-ratio: 1 / 0.7;
  }
  .advertising-bottom-txt {
    font-size: 24px;
    letter-spacing: -0.6px;
    gap: 6px;
  }
  .advertising-graph-line {
    bottom: 37%;
  }
  .sale-inner {
    padding: 80px 0;
    gap: 40px;
  }
  .bg-coin-div {
    top: 35%;
  }
  .store-brand-tit {
    font-size: 28px;
    letter-spacing: -0.7px;
    padding: 3px 12px;
    border-radius: 12px;
  }
  .store-brand-tit img {
    width: 180px;
  }
  .store-brand-box {
    margin-top: -28px;
    border-radius: 12px;
    padding: 50px 0 30px;
    gap: 5px;
  }
  .store-brand-box > svg {
    width: 20px;
    height: 20px;
  }
  .store-brand {
    width: calc(24% - 22.5px);
  }
  .highest-sale {
    font-size: 32px;
    letter-spacing: -0.8px;
    padding: 10px 25px;
  }
  .highest-sale .sale {
    font-size: 56px;
    padding: 6px 12px;
    gap: 12px;
  }
  .highest-sale-wrap > p {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
  .system-inner {
    width: calc(100% - 40px);
    padding: 80px 0;
  }
  .system-graph-wrap {
    flex-direction: column;
    align-items: center;
  }
  .system-graph-div {
    max-width: 550px;
    width: 100%;
    gap: 12px;
  }
  .system-txt {
    gap: 8px;
  }
  .system-txt div {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .system-txt p {
    font-size: 32px;
    letter-spacing: -0.8px;
  }
  .system-img {
    width: 30%;
  }
  #everyday {
    padding: 80px 0;
    gap: 50px;
  }
  .everyday-wrap {
    gap: 20px;
  }
  .time-div {
    font-size: 48px;
    letter-spacing: 4.8px;
    gap: 6px;
  }
  .time-div svg {
    width: 40px;
    height: 40px;
  }
  .clock-wrap {
    padding: 10px;
  }
  .everyday-txt-circle {
    width: 33%;
  }
  #review {
    padding: 20px;
  }
  .review-circle {
    gap: 0px;
  }
  .thumbup {
    width: 180px;
  }
  .review-txt {
    margin-top: 15px;
    font-size: 16px;
    letter-spacing: -0.4px;
  }
  #profit .st-tit {
    /* font-size: 46px; */
  }
  #profit .st-sub-tit {
    /* font-size: 28px; */
  }
  #profit .compare-head {
    font-size: 24px;
    height: 70px;
  }
  #profit .compare-item {
    font-size: 20px;
    padding: 16px 30px;
  }
  #profit .result-label {
    font-size: 24px;
  }
  #profit .compare-result {
    padding: 16px;
  }
  #breakdown .st-tit {
    /* font-size: 46px; */
  }
  #breakdown .st-sub-tit {
    /* font-size: 28px; */
  }
  #breakdown .breakdown-revenue-label {
    font-size: 36px;
  }
  #breakdown .breakdown-amount {
    font-size: 40px;
  }
  #breakdown .breakdown-unit {
    font-size: 28px;
  }
  #ai-system .st-tit {
    /* font-size: 46px; */
  }
  #ai-system .ai-text {
    padding: 30px;
  }
  #ai-system .ai-feature-tit {
    font-size: 32px;
    line-height: 1.3;
  }
  #ai-system .ai-feature-sub,
  #ai-system .ai-feature-desc {
    font-size: 18px;
  }
  #ai-system .ai-num {
    font-size: 24px;
  }
  #cost .st-tit {
    /* font-size: 46px; */
  }
  #cost .cost-table thead th,
  #cost .cost-table tbody td {
    font-size: 16px;
    padding: 10px 12px;
  }
  #cost .cost-table thead th.col-cat,
  #cost .cost-table tbody td.cat-cell {
    width: 160px;
  }
  #cost .cost-table thead th.col-price,
  #cost .cost-table tbody td.price-cell {
    width: 160px;
    height: 43px;
  }
  #cost .total-label {
    width: 160px;
    font-size: 20px;
  }
  #cost .total-price {
    font-size: 26px;
  }
  #cost .promo-tag {
    font-size: 18px;
  }
  #cost .promo-price {
    font-size: 24px;
  }
  #cost .promo-price.promo-arrow {
    font-size: 17px;
  }

  #cost .promo-desc {
    font-size: 16px;
  }
  #cost .promo-free {
    width: 88px;
  }
  #cost .promo-free.promo-free2 {
    width: 127px;
  }

  #cost .cost-note {
    font-size: 16px;
  }
  #contact .contact-form-outer {
    width: 90%;
  }
  #contact .st-tit {
    /* font-size: 46px; */
  }
  #contact .st-sub-tit {
    /* font-size: 28px; */
  }
  #contact .contact-badge {
    font-size: 18px;
    padding: 8px 20px;
  }
  #contact .contact-deco-right {
    display: none;
  }
}

@media (max-width: 768px) {
  .layer-popup {
    max-height: 95vh !important;
    position: fixed;
    top: 2% !important;
    left: 5% !important;
    width: 80% !important;
    overflow: scroll;
  }
  #main .tit-wrap {
    margin-top: -15%;
  }
  .main-tit {
    flex-direction: column;
    gap: 10px;
  }
  .main-tit span {
    gap: 10px;
  }
  .main-circle-wrap {
    width: 80%;
    gap: 16px;
  }
  .main-circle {
    width: calc(50% - 8px);
    max-width: 230px;
  }
  #support {
    padding: 70px 0 30px;
    gap: 30px;
    border-width: 10px;
  }
  .support-item {
    width: 50%;
  }
  .support-container {
    padding: 24px 0;
  }
  .support-wrap {
    width: 95%;
  }

  .support-item-inner .y b {
    font-size: 17px;
  }

  .advertising-top {
    padding-top: 70px;
  }
  .advertising-bottom {
    padding: 70px 0 100px;
  }
  .advertising-graph-container {
    gap: 30px;
  }
  .advertising-bottom-txt {
    gap: 2px;
  }
  .sale-inner {
    padding: 70px 0;
  }
  .highest-sale {
    font-size: 28px;
    letter-spacing: -0.7px;
  }
  .highest-sale .sale {
    font-size: 48px;
  }
  .highest-sale-wrap > p {
    font-size: 16px;
    letter-spacing: -0.4px;
  }
  .system-inner {
    width: calc(100% - 24px);
    padding: 70px 0;
    gap: 40px;
  }
  .system-img.left {
    left: -9%;
    bottom: -2.5%;
  }
  .system-img.right {
    right: -9%;
    bottom: -3%;
  }
  #everyday {
    padding: 70px 0;
    gap: 40px;
  }
  .everyday-wrap {
    gap: 8px;
  }
  .clock-wrap {
    width: 60%;
  }
  #review {
    padding: 0;
  }
  .review-inner {
    padding: 180px 0;
  }
  .left-swiper-container {
    left: 10px;
  }
  .right-swiper-container {
    right: 10px;
  }
  .review-bubble.first {
    width: 47%;
    top: -14%;
  }
  .review-bubble.third {
    width: 49%;
    top: -21%;
  }
  .review-bubble.second {
    width: 54%;
    bottom: -22%;
  }
  .review-bubble.fourth {
    width: 56.5%;
    bottom: -26%;
  }

  .ai-bottom {
    padding-top: 60px;
    gap: 30px;
  }
  .ai-bottom .ai-bottom-tit {
    flex-direction: column;
    font-size: 24px;
    letter-spacing: -0.6px;
  }

  .process-desc-wrap {
    flex-direction: column;
    margin-top: 0;
  }
  .process-desc-wrap p {
    width: 100%;
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .process-desc-wrap p:nth-child(2) {
    border-right: none;
    border-left: none;
    border-bottom: 2px solid #fff;
    border-top: 2px solid #fff;
  }

  .ai-process {
    justify-content: stretch;
  }
  .ai-process svg:nth-child(4),
  .ai-process svg:nth-child(8) {
    display: none;
  }
  .ai-process .process-box {
    width: calc(50% - 36px);
  }
  .ai-process .process-box .process-box-inner img {
    width: 40px;
  }
  .ai-process .process-box .process-box-inner {
    padding: 15px;
    justify-content: center;
  }
  .txt-circle-div {
    width: 40%;
    left: -58px;
    top: -34px;
  }
  .process-img {
    bottom: 330px;
  }
  #order {
    padding: 70px 0;
    outline-offset: -15px;
    outline: 15px solid #0f62f2;
  }
  #order .order-noti--coupang {
    right: 5.5%;
    top: 29px;
  }
  #order .order-question {
    font-size: 43px;
  }
  #order .order-sub-txt {
    font-size: 24px;
  }
  #order .order-headline {
    font-size: 50px;
  }
  #order .order-noti--baemin {
    left: 6%;
    top: 257px;
  }
  #order .order-noti {
    padding: 12px;
    font-size: 20px;
    border-radius: 10px;
  }
  #order .order-noti::after {
    bottom: -10px;
    width: 13.5px;
    height: 12px;
  }
  #order .order-platform-names {
    font-size: 20px;
  }
  #order .order-badge {
    font-size: 23px;
  }
  #order .order-noti--yogiyo {
    right: 9%;
    top: 270px;
  }
  #order .order-circle-deco {
    display: none;
  }
  #order .order-screen-wrap {
    width: 100%;
    max-width: none;
  }
  #order .order-card-wrap .order-card-contain {
    flex-direction: column;
    outline: 1px solid var(--PointColor, #0f62f2);
    width: 84%;
  }
  #order .order-screen-img {
    position: relative;
  }
  #order .order-card-tit {
    font-size: 27px;
  }
  #order .order-card-body {
    padding: 25px;
  }
  #order .order-card-wrap {
    border-top: none;
    border-bottom: none;
  }
  #order .order-closing-txt {
    flex-direction: column;
    gap: 8px;
    font-size: 24px;
  }
  #system {
    padding: 70px 0;
  }
  #system .system-bottom,
  #system .system-top {
    display: none;
  }
  #system .system-card {
    flex-direction: column;
  }
  #system .system-card--mixer {
    flex-direction: column-reverse;
  }
  #system .system-card-media {
    max-width: none;
    width: 100%;
    height: 300px;
  }
  #system .system-card-img {
    position: relative;
  }
  #system .system-card-body {
    padding: 30px;
  }
  #system .system-card-desc {
    font-size: 16px;
    line-height: 145%;
    letter-spacing: -0.4px;
  }
  #system .system-card-name {
    font-size: 24px;
    line-height: 145%;
    letter-spacing: -0.6px;
  }
  #system .system-card--mixer .system-brand-box {
    width: auto !important;
    padding: 30px 20px 25px;
  }
  #system .system-brand-box.cooker {
    width: auto !important;
  }
  #system .system-brand-icons {
    gap: 5px;
  }
  #system .system-brand-icon {
    width: 100px !important;
  }
  #system .system-tit-wrap {
    gap: 8px;
  }
  #brand .col-line {
    width: calc(100% - 60px);
    margin: 0 30px;
  }
  #brand .row-line {
    height: calc(100% - 60px);
    margin: 30px 0;
  }
  #brand .corner.corner-tl {
    top: 11px;
    left: 15px;
  }
  #brand .corner.corner-tr {
    top: 11px;
    right: 15px;
  }
  #brand .corner.corner-bl {
    bottom: 11px;
    left: 15px;
  }
  #brand .corner.corner-br {
    bottom: 11px;
    right: 15px;
  }
  #brand .corner {
    width: 30px;
  }
  #brand {
    padding: 70px 12px;
    outline-offset: -12px;
    gap: 30px;
  }
  #brand .brand-inner {
    gap: 30px;
  }
  #brand .brand-top {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding-bottom: 0;
  }
  #brand .brand-top .tit-wrap {
    align-items: center;
  }
  #brand .brand-top .st-sub-tit {
    font-size: 18px;
  }
  #brand .brand-top .st-tit {
    font-size: 34px;
    text-align: center;
  }
  #brand .brand-lineup-img {
    width: 277px;
    max-width: 100%;
  }
  #brand .brand-panel {
    flex-direction: column;
  }
  #brand .brand-tab-list {
    flex-direction: row;
    width: 100%;
    flex-wrap: wrap;
    border-right: none;
    max-width: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  }
  #brand .brand-detail {
    padding: 20px 0;
    position: relative;
    gap: 20px;
  }
  #brand .brand-tab-item {
    flex: 1 1 50%;
    border-bottom: 1px rgba(255, 255, 255, 0.5) solid;
    padding: 12px;
    gap: 8px;
  }
  #brand .brand-tab-item:nth-child(odd) {
    border-right: 1px rgba(255, 255, 255, 0.5) solid;
  }
  #brand .brand-tab-item:nth-child(3),
  #brand .brand-tab-item:nth-child(4) {
    border-bottom: none;
  }
  #brand .brand-icon {
    width: 40px;
    height: 40px;
  }
  #brand .brand-tab-name {
    font-size: 18px;
  }
  #brand .brand-tab-desc {
    display: none;
  }
  #brand .brand-quote {
    font-size: 24px;
  }
  #brand .brand-menu-list {
    gap: 8px;
  }
  #brand .brand-menu-item {
    width: 200px;
  }
  #brand .brand-menu-img {
    height: 150px;
    border-radius: 6px 6px 0 0;
  }
  #brand .brand-menu-name {
    font-size: 14px;
    padding: 10px;
    border-radius: 0 0 12px 12px;
  }
  #brand .brand-stats {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }
  #brand .brand-stat-chip {
    gap: 8px;
    width: 230px;
    padding: 8px 20px;
    justify-content: center;
  }
  #brand .brand-stat-chip::before,
  #brand .brand-stat-chip::after {
    width: 4px;
    height: 35px;
  }
  #brand .brand-stat-label {
    font-size: 16px;
  }
  #brand .brand-stat-value {
    font-size: 22px;
  }
  #brand .brand-catchphrase {
    font-size: 20px;
  }
  #brand .brand-bottom-tit {
    font-size: 28px;
  }
  #brand .brand-circle-deco--l {
    width: 150px;
    height: 150px;
    left: -85px;
    bottom: 200px;
  }
  #brand .brand-circle-deco--r {
    width: 150px;
    height: 150px;
    right: -40px;
    top: -55px;
  }
  #text-marquee {
    padding: 15px 0;
  }
  #text-marquee .marquee-track {
    gap: 20px;
  }
  #text-marquee .marquee-track p {
    font-size: 20px;
  }
  #profit {
    padding: 70px 20px;
    gap: 40px;
  }
  #profit .compare-item svg {
    width: 25px;
    height: 25px;
  }
  #profit .profit-compare {
    flex-direction: column;
  }
  #profit .compare-card--other {
    margin: auto;
    width: 90%;
    border-radius: 6px 6px 0 0;
  }
  #profit .compare-result-blue {
    padding: 0 16px 16px;
    width: 100%;
  }
  #profit .compare-result--loekal {
    margin: 0;
  }
  #profit .compare-card--loekal {
    width: 100%;
    border-radius: 6px;
  }
  #profit .compare-result-blue .result-value .line {
    bottom: -9px;
    width: 110%;
    left: -60%;
  }
  #profit .compare-head {
    height: 50px;
    font-size: 16px;
  }
  #profit .compare-logo {
    height: 33px;
  }
  #profit .compare-item {
    font-size: 16px;
    padding: 12px 25px;
  }
  #profit .compare-result {
    padding: 15px;
    margin: 0 10px 10px;
  }
  #profit .result-label {
    font-size: 16px;
  }
  #profit .result-value {
    font-size: 28px;
  }
  #profit .compare-result--loekal .result-value {
    font-size: 40px;
  }
  #profit .profit-note {
    font-size: 14px;
    margin-top: -25px;
  }
  #breakdown {
    padding: 70px 0;
    border-left-width: 4px;
    border-right-width: 4px;
    gap: 40px;
  }
  #breakdown .breakdown-revenue-bar {
    padding: 0 20px;
    flex-wrap: wrap;
    gap: 10px;
  }
  #breakdown .breakdown-revenue {
    justify-content: center;
    gap: 16px;
  }
  #breakdown .breakdown-line {
    display: none;
  }
  #breakdown .breakdown-revenue-label {
    font-size: 24px;
    line-height: 150%;
    letter-spacing: -0.6px;
  }
  #breakdown .breakdown-vat {
    font-size: 14px;
    line-height: 150%;
    letter-spacing: -0.35px;
  }
  #breakdown .breakdown-amount-box {
    padding: 5px 15px;
    border-radius: 10px;
  }
  #breakdown .breakdown-amount {
    font-size: 32px;
    line-height: 120%;
  }
  #breakdown .breakdown-unit {
    font-size: 20px;
    line-height: 150%;
  }
  #breakdown .breakdown-inner {
    width: 90%;
  }
  #breakdown .breakdown-table thead th {
    font-size: 14px;
    padding: 10px 4px;
  }
  #breakdown .breakdown-total-cat,
  #breakdown .breakdown-table thead th.col-cat {
    width: 120px;
  }
  #breakdown .breakdown-table tbody td {
    font-size: 14px;
    padding: 10px 4px;
  }
  #breakdown .cat-note {
    font-size: 11px;
  }
  #breakdown .breakdown-total-cat {
    font-size: 16px;
  }
  #breakdown .total-note {
    font-size: 11px;
  }
  #breakdown .breakdown-total-amount,
  #breakdown .breakdown-total-rate {
    font-size: 14px;
  }
  #breakdown .breakdown-formula {
    font-size: 11px;
    text-align: center;
  }
  #ai-system {
    padding: 70px 0;
    gap: 40px;
  }
  #ai-system .ai-inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    padding: 0 12px;
    box-sizing: border-box;
    gap: 20px;
  }
  #ai-system .ai-divider {
    display: none;
  }
  #ai-system .ai-row {
    flex-direction: column;
    outline: 1px solid #111;
    overflow: hidden;
    justify-content: start;
    align-items: start;
  }
  #ai-system .ai-row:nth-child(even) {
    flex-direction: column-reverse;
  }
  #ai-system .ai-row--rl {
    flex-direction: column;
  }
  #ai-system .ai-img-wrap {
    width: 100%;
    flex: none;
    height: 300px;
  }
  #ai-system .ai-img--pad {
    object-fit: cover;
  }
  #ai-system .ai-text {
    justify-content: start;
    flex: none;
    width: 100%;
    padding: 20px;
    background: #f0edea;
    gap: 12px;
  }
  #ai-system .ai-deco-tr {
    top: 110px;
    right: -6%;
  }
  #ai-system .ai-dots-l,
  #ai-system .ai-dots-r {
    display: none;
  }
  #ai-system .marquee-wrap {
    display: none;
  }
  #cost {
    padding: 70px 0;
    gap: 30px;
  }
  #cost .cost-tit-area {
    gap: 8px;
  }
  #cost .cost-container {
    width: 90%;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  #cost .promo-inner {
    gap: 5px;
  }
  #cost .cost-table thead th,
  #cost .cost-table tbody td {
    font-size: 10px;
    padding: 6px 7px;
    line-height: 17px;
  }
  #cost .total-price {
    padding: 12px;
  }
  #cost .total-price {
    font-size: 12px;
  }
  #cost .total-label {
    width: 130px;
    font-size: 10px;
  }

  #cost .promo-inner {
    padding: 16px;
  }
  #cost .total-label {
    width: 110px;
    padding: 9px;
  }
  #cost .cost-table thead th.col-cat,
  #cost .cost-table tbody td.cat-cell {
    width: 110px;
  }
  #cost .cost-note {
    font-size: 9px;
  }

  #contact {
    padding: 70px 12px;
    gap: 40px;
  }
  #contact .contact-deco-left,
  #contact .contact-deco-right {
    display: none;
  }
  #contact .tit-wrap {
    gap: 8px;
  }
  #contact .st-sub-tit {
    font-size: 18px;
    line-height: 1.2;
  }
  #contact .st-tit {
    /* font-size: 34px; */
    /* line-height: 1.3; */
  }
  #contact .contact-badge {
    font-size: 16px;
    padding: 5px 14px;
    line-height: 1.2;
    text-align: center;
  }
  #contact .contact-form-outer {
    width: 100%;
    padding: 6px;
  }
  #contact .contact-form {
    padding: 20px;
    gap: 20px;
  }
  .flex-input {
    flex-direction: column;
    gap: 30px;
  }
  .form-wrap {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  .agree-wrap {
    justify-content: flex-start;
  }
  #contact .c-btn {
    width: 100%;
    height: 42px;
  }
}

@media (max-width: 650px) {
  #main {
    height: 1000px;
  }
  .main-sub-tit {
    font-size: 24px;
    letter-spacing: -0.6px;
    padding: 2px 7.5px;
  }
  .main-tit {
    font-size: 48px;
    letter-spacing: -1.2px;
  }
  .main-tit .scrolltrigger {
    padding: 0 5px;
  }
  .main-circle-wrap {
    width: 90%;
  }
  .main-circle p {
    font-size: 20px;
    letter-spacing: -0.5px;
  }
  .main-circle {
    max-width: 200px;
  }
  .main-circle div {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .main-store-div {
    width: 700px;
  }
  .support-item {
    padding: 12px 5px;
  }
  .support-item-num {
    height: 28px;
    font-size: 20px;
    letter-spacing: -0.5px;
    padding: 0 7px;
  }
  .support-item-inner {
    padding: 25px 0 20px;
    gap: 6px;
  }
  .support-item-inner p {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
  .support-item-inner div {
    font-size: 28px;
    letter-spacing: -0.7px;
  }
  .support-badge {
    max-width: 120px;
  }
  .support-img.tl {
    width: 180px;
    left: -60px;
    top: -10px;
  }
  .support-img.tr {
    width: 164px;
    right: -60px;
    top: -10px;
  }
  .support-img.bl {
    width: 196px;
    bottom: 0;
    left: -60px;
  }
  .support-img.br {
    width: 200px;
    bottom: 0;
    right: -60.5px;
  }
  .marquee-track {
    padding-right: 12px;
  }
  .marquee-track {
    gap: 12px;
  }
  .marquee-track span {
    font-size: 28px;
    letter-spacing: -0.7px;
  }
  .phone-frame {
    width: 265px;
  }
  .baemin-swiper .swiper-slide {
    width: 200px !important;
  }
  .baemin-swiper img {
    border-radius: 19px 19px 0 0;
    border: 0.5px solid #000;
  }
  .advertising-bottom .tit-div {
    gap: 6px;
  }
  .advertising-bottom .jaram-tit {
    font-size: 56px;
    letter-spacing: -1.4px;
  }
  .jaram-tit span {
    font-size: 48px;
    letter-spacing: -1.2px;
  }
  .advertising-graph-wrap {
    aspect-ratio: 1 / 0.7;
  }
  .advertising-graph-tit {
    font-size: 18px;
    letter-spacing: -0.45px;
    top: 30px;
    padding: 4px 8px;
    border-radius: 25px;
  }
  .advertising-graph {
    gap: 80px;
  }
  .advertising-graph-div {
    width: 100px;
    gap: 8px;
  }
  .advertising-graph-div.blue {
    gap: 6px;
  }
  .advertising-graph-div p {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
  .advertising-graph-div.blue p {
    font-size: 20px;
    letter-spacing: -0.5px;
  }
  .advertising-graph hr {
    bottom: 29px;
  }
  .advertising-bottom-txt {
    font-size: 20px;
    letter-spacing: -0.5px;
  }
  .advertising-graph-line {
    bottom: 38%;
  }
  .bg-coin-div {
    top: 30%;
  }
  .store-brand-tit {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .store-brand-tit img {
    width: 150px;
  }
  .store-brand-box {
    margin-top: -24px;
    padding: 40px 0 25px;
    gap: 2.5px;
  }
  .store-brand-box > svg {
    width: 15px;
    height: 15px;
  }
  .store-brand {
    width: calc(24% - 15px);
  }
  .highest-sale {
    font-size: 24px;
    letter-spacing: -0.6px;
    gap: 5px;
  }
  .highest-sale .sale {
    font-size: 40px;
    margin-left: 4px;
  }
  .highest-sale-wrap > p {
    font-size: 14px;
    letter-spacing: -0.35px;
  }
  .system-graph-div > p {
    font-size: 18px;
    letter-spacing: -0.45px;
    padding: 4.8px 9.6px;
    border-radius: 30px;
  }
  .system-txt {
    gap: 6px;
  }
  .system-txt div {
    font-size: 20px;
    letter-spacing: -0.5px;
  }
  .system-txt p {
    font-size: 28px;
    letter-spacing: -0.7px;
  }
  .clock-wrap {
    padding: 6px;
  }
  .time-div {
    font-size: 40px;
    letter-spacing: 4.4px;
  }
  .time-div svg {
    width: 30px;
    height: 30px;
  }
  .everyday-div {
    gap: 8px;
  }
  .everyday-div-sub {
    gap: 4px;
  }
  .everyday-div-sub p {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .everyday-div-tit {
    font-size: 28px;
    letter-spacing: -0.7px;
    padding: 4px 10px;
    border-radius: 6px;
  }
  .everyday-swiper .everyday-sale-item {
    width: 250px;
    border-radius: 6px;
  }
  .everyday-sale-item .item-img p {
    font-size: 20px;
    letter-spacing: -0.5px;
  }
  .everyday-sale-item .item-inner {
    font-size: 20px;
    letter-spacing: -0.5px;
    padding: 10px;
  }
  .everyday-sale-item .item-inner span {
    font-size: 28px;
    letter-spacing: -0.7px;
  }
  .everyday-sale-container > p {
    font-size: 16px;
    letter-spacing: -0.4px;
  }
  .everyday-txt-circle.right {
    bottom: unset;
    top: 0;
    right: -7%;
  }
  .everyday-txt-circle.left {
    bottom: -5%;
    left: -9%;
  }
  .review-inner {
    padding: 200px 0 250px;
    justify-content: center;
  }
  .review-circle {
    width: 93%;
  }
  .thumbup {
    width: 140px;
  }
  .review-txt {
    font-size: 14px;
    letter-spacing: -0.35px;
  }
  .left-swiper-container {
    width: 43%;
    left: 0;
  }
  .right-swiper-container {
    width: 43%;
    right: 0;
  }
  .left-swiper-container .swiper-wrapper,
  .right-swiper-container .swiper-wrapper {
    gap: 16px;
  }
  .left-swiper-container .swiper-slide,
  .right-swiper-container .swiper-slide {
    width: 100%;
  }
  .left-swiper-container img,
  .right-swiper-container img {
    border-radius: 6px;
  }
  .review-bubble.first {
    width: 52%;
    top: -21%;
  }
  .review-bubble.third {
    width: 50%;
    top: -32%;
  }
  .review-bubble.second {
    width: 60%;
    bottom: -30%;
  }
  .review-bubble.fourth {
    width: 62.5%;
    bottom: -44%;
  }
  #ai-system .ai-deco-tr {
    top: 185px;
    width: 30%;
  }
  #ai-system .ai-deco-bl {
    width: 20%;
  }
  #system .system-brand-icon {
    width: 80px !important;
  }
}

@media (max-width: 480px) {
  #main {
    height: 930px;
  }
  .main-sub-tit {
    font-size: 20px;
    letter-spacing: -0.5px;
  }
  .main-tit {
    font-size: 40px;
    letter-spacing: -1px;
  }
  .main-circle p {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
  .main-circle div {
    font-size: 21px;
    letter-spacing: -0.525px;
  }
  .main-store-div {
    width: 650px;
  }
  .support-item {
    padding: 10px 5px;
  }
  .support-item-num {
    height: 22px;
    font-size: 16px;
    letter-spacing: -0.4px;
    padding: 0 5px;
  }
  .support-item-inner p {
    font-size: 16px;
    letter-spacing: -0.4px;
  }
  .support-item-inner div {
    font-size: 25px;
    letter-spacing: -0.6px;
  }

  .support-item-inner .y b {
    font-size: 12px;
  }

  .support-badge {
    max-width: 100px;
  }
  .support-img.tl {
    width: 140px;
    left: -40px;
  }
  .support-img.tr {
    width: 124px;
    right: -40px;
  }
  .support-img.bl {
    width: 156px;
    left: -40px;
  }
  .support-img.br {
    width: 170px;
    right: -40.5px;
  }
  .marquee-track span {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .advertising-bottom .jaram-tit {
    font-size: 48px;
    letter-spacing: -1.2px;
  }
  .jaram-tit span {
    font-size: 40px;
    letter-spacing: -1px;
  }
  .advertising-graph-wrap {
    aspect-ratio: 1 / 0.85;
  }
  .advertising-graph-tit {
    font-size: 16px;
    letter-spacing: -0.4px;
  }
  .advertising-graph {
    gap: 50px;
  }
  .advertising-graph-div {
    width: 80px;
  }
  .advertising-graph-div p {
    font-size: 16px;
    letter-spacing: -0.4px;
  }
  .advertising-graph-div.blue p {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
  .advertising-graph hr {
    bottom: 26px;
  }
  .advertising-bottom-txt {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
  .advertising-graph-line {
    bottom: 39%;
  }
  .bg-coin-div {
    top: 25%;
  }
  .store-brand-tit {
    font-size: 18px;
    letter-spacing: -0.45px;
    padding: 1.583px 6.332px;
    border-radius: 6.332px;
    border-width: 0.528px;
    gap: 3px;
  }
  .store-brand-tit img {
    width: 105px;
  }
  .store-brand-box {
    margin-top: -16px;
    padding: 30px 0 20px;
    gap: 2.5px;
    border-radius: 6.332px;
    border-width: 0.528px;
    box-shadow: 0 2.111px 6.332px 0 rgba(0, 0, 0, 0.25);
  }
  .store-brand-box > svg {
    width: 10px;
    height: 10px;
  }
  .store-brand {
    width: calc(24% - 11.25px);
  }
  .highest-sale {
    font-size: 20px;
    letter-spacing: -0.5px;
    padding: 7.5px 15px;
    border-radius: 37.5px;
  }
  .highest-sale .sale {
    font-size: 32px;
    padding: 3px 6px;
    border-radius: 4.5px;
    border-width: 0.365px;
  }
  .highest-sale-wrap > p {
    font-size: 12px;
    letter-spacing: -0.3px;
  }
  .system-graph-div > p {
    font-size: 16px;
    letter-spacing: -0.4px;
  }
  .system-txt div {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
  .system-txt p {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .system-img {
    width: 37%;
  }
  .clock-wrap {
    width: 55%;
  }
  .time-div {
    font-size: 28px;
    letter-spacing: 3.4px;
  }
  .time-div svg {
    width: 25px;
    height: 25px;
  }
  .clock-img.tl {
    width: 28%;
    left: -7%;
    top: -3%;
  }
  .clock-img.tr {
    width: 25%;
    right: -5%;
    top: -3%;
  }
  .clock-img.bl {
    width: 28%;
    bottom: -5%;
  }
  .clock-img.br {
    width: 29%;
    bottom: -5%;
    right: -7%;
  }
  .everyday-div-sub p {
    font-size: 20px;
    letter-spacing: -0.5px;
  }
  .everyday-div-tit {
    font-size: 22px;
    letter-spacing: -0.55px;
  }
  .everyday-swiper .everyday-sale-item {
    width: 230px;
  }
  .everyday-sale-item .item-img p {
    font-size: 16px;
    letter-spacing: -0.4px;
  }
  .everyday-sale-item .item-inner {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
  .everyday-sale-item .item-inner span {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .everyday-sale-container > p {
    font-size: 14px;
    letter-spacing: -0.35px;
  }
  .everyday-txt-circle {
    width: 150px;
  }
  .review-inner {
    height: 800px;
    padding: 0;
  }
  .review-circle {
    margin-top: -20%;
  }
  .review-circle .tit-div {
    gap: 4px;
  }
  .thumbup {
    width: 105px;
    margin-top: -20%;
  }
  .review-bubble.third {
    top: -35%;
  }
  .review-bubble.second {
    bottom: -45%;
  }
  .review-bubble.fourth {
    bottom: -65%;
  }
  .review-absol-img {
    bottom: -20%;
  }

  .ai-process {
    gap: 6px;
  }

  .ai-process svg {
    width: 20px;
  }
  .ai-process .process-box {
    width: calc(50% - 16px);
    border-radius: 6px;

    padding: 5px;
  }
  .ai-process .process-box .process-box-inner {
    padding: 11px;
    font-size: 12px;
    line-height: 130%; /* 15.6px */
    letter-spacing: -0.3px;
    border-radius: 6px;
    padding: 10px;
  }
  .ai-process .process-box .process-box-inner img {
    width: 32px;
  }

  .ai-process .process-box .process-num {
    width: 30px;
    font-size: 10px;
    font-weight: 700;
    line-height: 120%; /* 12px */
    letter-spacing: -0.25px;
  }

  .ai-marquee-wrap {
    padding: 10px 0;
  }
  .ai-marquee-track img {
    width: 375px;
  }
  .ai-marquee-track {
    gap: 8px;
  }
  #order {
    padding: 70px 0;
    outline-width: 12px;
    gap: 40px;
  }
  #order .order-inner {
    gap: 40px;
  }

  #order .order-headline {
    font-size: 40px;
  }
  #order .order-sub-txt {
    font-size: 18px;
  }
  #order .order-question {
    font-size: 34px;
  }
  #order .order-divider {
    height: 40px;
  }
  #order .order-platform-names {
    font-size: 16px;
  }
  #order .order-badge {
    font-size: 20px;
    line-height: 1.5;
  }
  #order .order-card-wrap {
    /* flex-direction: column;
    width: 323px; */
  }
  #order .order-screen-wrap {
    width: 100%;
    max-width: 100%;
    height: 240px;
  }
  #order .order-card-body {
    padding: 20px;
    gap: 20px;
  }
  #order .order-card-tit {
    font-size: 24px;
  }
  #order .order-card-desc {
    font-size: 16px;
  }
  #order .order-closing-txt {
    flex-direction: column;
    font-size: 24px;
    gap: 4px;
  }
  #order .order-noti {
    font-size: 16px;
    padding: 10px;
    border-radius: 10px;
  }
  #order .order-noti--baemin {
    top: 230px;
  }

  #order .order-noti--yogiyo {
    top: 247px;
  }
  /* #order .order-card-wrap .order-card-contain {
        width: 100%;
    } */

  #order .order-circle-deco {
    display: none;
  }

  #brand .brand-menu-item {
    width: 120px;
  }
  #brand .brand-menu-img {
    height: 85px;
  }
  #brand .col-line {
    width: calc(100% - 24px);
    margin: 0 12px;
  }
  #brand .row-line {
    height: calc(100% - 24px);
    margin: 12px 0;
  }
  #brand .corner {
    width: 20px;
  }

  #brand .corner.corner-tl {
    top: -7px;
    left: 3px;
  }
  #brand .corner.corner-tr {
    top: -7px;
    right: 3px;
  }
  #brand .corner.corner-bl {
    bottom: -7px;
    left: 3px;
  }

  #brand .corner.corner-br {
    bottom: -7px;
    right: 3px;
  }

  #text-marquee {
    padding: 10px 0;
  }
  #text-marquee .marquee-track {
    gap: 12px;
  }

  #text-marquee .marquee-track p {
    font-size: 16px;
  }

  #profit .compare-result-gray.compare-result {
    margin: 0 7.5px 10px;
  }
  #profit .profit-note {
    margin-top: -30px;
  }
  #profit .compare-result--loekal .result-value {
    font-size: 38px;
  }

  #breakdown .breakdown-total-cat,
  #breakdown .breakdown-table thead th.col-cat {
    width: 110px;
  }
  #breakdown .breakdown-formula {
    font-size: 10px;
  }
  #breakdown .breakdown-total-cat {
    font-size: 14px;
  }
  /* #breakdown */
  #breakdown .st-tit {
    /* font-size: 34px; */
  }
  #breakdown .st-sub-tit {
    /* font-size: 18px; */
  }

  /* #ai-system */
  #ai-system .st-tit {
    /* font-size: 34px; */
  }
  #ai-system .ai-num {
    font-size: 16px;
  }
  #ai-system .ai-feature-tit {
    font-size: 24px;
    line-height: 1.3;
  }
  #ai-system .ai-feature-sub {
    font-size: 16px;
  }
  #ai-system .ai-feature-desc {
    font-size: 16px;
  }
  #ai-system .ai-deco-tr {
    top: 165px;
    width: 33%;
  }

  /* #cost */
  #cost .promo-inner {
    padding: 16px;
    gap: 6px;
  }
  #cost .promo-item {
    height: auto;
    min-height: 44px;
    gap: 8px;
  }
  #cost .promo-item.promo-waived {
    gap: 10px;
  }
  #cost .promo-item.promo-discount {
    flex-wrap: wrap;
    gap: 6px;
    min-height: auto;
    padding: 6px 0;
  }
  #cost .promo-item-left {
    gap: 10px;
  }
  #cost .promo-tag {
    font-size: 14px;
    padding: 3px 8px;
  }
  #cost .promo-price {
    font-size: 18px;
  }
  #cost .promo-desc {
    font-size: 13px;
  }
  #cost .promo-free {
    width: 60px;
  }
  #cost .promo-price.promo-arrow {
    font-size: 12px;
  }

  #cost .promo-free.promo-free2 {
    width: 91px;
  }

  #cost .cost-table-group {
    gap: 12px;
  }
  #cost .cost-table thead th,
  #cost .cost-table tbody td {
    font-size: 11px;
    padding: 6px 8px;
    line-height: 1.4;
  }
  #cost .cost-table thead th.col-cat,
  #cost .cost-table tbody td.cat-cell {
    width: 100px;
  }
  #cost .cost-table thead th.col-price,
  #cost .cost-table tbody td.price-cell {
    width: 25%;
  }
  #cost .total-label {
    width: 80px;
    font-size: 14px;
    padding: 10px 8px;
  }
  #cost .total-price {
    font-size: 16px;
    padding: 10px 8px;
  }
  #cost .cost-note {
    font-size: 11px;
    word-break: keep-all;
  }

  #system {
    padding: 70px 12px 40px;
    gap: 40px;
  }
  #system .st-sub-tit {
    font-size: 18px;
  }
  #system .st-tit {
    font-size: 34px;
  }
  #system .system-list {
    width: 100%;
  }
  #system .system-card {
    flex-direction: column;
  }
  #system .system-card--mixer .system-card-media {
    order: -1;
  }
  #system .system-card-media {
    width: 100%;
    height: 200px;
    max-width: none;
  }
  #system .system-card-body {
    padding: 20px;
  }
  #system .system-card-name {
    font-size: 24px;
  }
  #system .system-card-desc {
    font-size: 16px;
  }
  #system .system-card--mixer .system-brand-box,
  #system .system-brand-box {
    padding: 20px 20px 10px;
  }
  #system .system-brand-icons {
    gap: 5px;
  }
  #system .system-brand-icon {
    width: 65px !important;
  }
  #system .system-brand-label {
    padding: 2.5px;
  }
  #system .system-brand-label p {
    font-size: 12px;
    padding: 3px 10px;
    line-height: 145%;
  }
  .ai-process .process-box .process-box-inner {
    font-size: 12px;
    line-height: 130%; /* 15.6px */
    letter-spacing: -0.3px;
  }
  .ai-process {
    gap: 20px 6px;
  }

  .ai-process .process-box {
    width: calc(50% - 22px);
    padding: 5px;
    border-radius: 6px;
  }
}

@media (max-width: 420px) {
  #breakdown .breakdown-revenue-label {
    font-size: 20px;
  }
  #breakdown .breakdown-vat {
    font-size: 12px;
  }

  #brand .brand-top .st-tit {
    font-size: 29px;
  }
  #brand .brand-tab-name {
    font-size: 17px;
  }
  #brand .brand-catchphrase {
    font-size: 17px;
  }
  #brand .brand-bottom-tit {
    font-size: 25px;
  }
}

@media (max-width: 400px) {
  #main {
    height: 900px;
  }
  .main-store-div {
    width: 575px;
  }
  .advertising-bottom .jaram-tit {
    font-size: 40px;
    letter-spacing: -1px;
  }
  .jaram-tit span {
    font-size: 36px;
    letter-spacing: -0.9px;
  }
  .advertising-graph-tit {
    font-size: 14px;
    letter-spacing: -0.35px;
  }
  .advertising-graph {
    gap: 50px;
  }
  .advertising-graph-div {
    width: 70px;
  }
  .advertising-graph-div p {
    font-size: 14px;
    letter-spacing: -0.35px;
  }
  .advertising-graph-div.blue p {
    font-size: 16px;
    letter-spacing: -0.4px;
  }
  .advertising-graph hr {
    bottom: 24px;
  }
  .advertising-bottom-txt {
    font-size: 16px;
    letter-spacing: -0.4px;
  }
  .store-brand-tit {
    font-size: 16px;
    letter-spacing: -0.4px;
  }
  .store-brand-tit img {
    width: 90px;
  }
  .store-brand-box {
    margin-top: -14px;
    padding: 20px 0 15px;
  }
  .store-brand-box > svg {
    width: 7.5px;
    height: 7.5px;
  }
  .store-brand {
    width: calc(24% - 9.375px);
  }
  .highest-sale .sale {
    font-size: 30px;
  }
  .system-graph-div > p {
    font-size: 14px;
    letter-spacing: -0.35px;
  }
  .system-txt div {
    font-size: 16px;
    letter-spacing: -0.4px;
  }
  .time-div {
    font-size: 24px;
    letter-spacing: 2.7px;
  }
  .time-div svg {
    width: 20px;
    height: 20px;
  }
  .everyday-swiper .everyday-sale-item {
    width: 210px;
  }
  .everyday-sale-item .item-img p {
    font-size: 14px;
    letter-spacing: -0.35px;
  }
  .everyday-sale-item .item-inner span {
    font-size: 22px;
    letter-spacing: -0.55px;
  }
  .thumbup {
    width: 95px;
    margin-top: -15%;
  }
  .review-circle .st-sub-tit {
    font-size: 16px !important;
    letter-spacing: -0.4px !important;
  }
  .review-txt {
    font-size: 13px;
    letter-spacing: -0.325px;
  }
}

@media (max-width: 370px) {
  #main {
    height: 830px;
  }
  .main-circle-wrap {
    gap: 12px;
  }
  .main-circle {
    width: calc(50% - 6px);
  }
  .main-circle p {
    font-size: 16px;
    letter-spacing: -0.4px;
  }
  .main-circle div {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
  .support-item-num {
    height: 20px;
    font-size: 14px;
    letter-spacing: -0.35px;
  }
  .support-item-inner p {
    font-size: 14px;
    letter-spacing: -0.35px;
  }
  .support-item-inner div {
    font-size: 19px;
    letter-spacing: -0.55px;
  }
  .support-badge {
    max-width: 80px;
  }
  .advertising-top .st-sub-tit {
    border-radius: 8px;
  }
  .absol-line.left {
    left: 10px;
  }
  .absol-line.right {
    right: 10px;
  }
  .phone-frame {
    width: 227px;
  }
  .baemin-swiper .swiper-slide {
    width: 160px !important;
  }
  .advertising-bottom .jaram-tit {
    font-size: 36px;
    letter-spacing: -0.9px;
  }
  .jaram-tit span {
    font-size: 30px;
    letter-spacing: -0.75px;
  }
  .advertising-graph-tit {
    font-size: 12px;
    letter-spacing: -0.3px;
  }
  .advertising-graph {
    gap: 40px;
  }
  .advertising-graph-div {
    width: 60px;
  }
  .advertising-graph-div p {
    font-size: 12px;
    letter-spacing: -0.3px;
  }
  .advertising-graph-div.blue p {
    font-size: 14px;
    letter-spacing: -0.35px;
  }
  .advertising-graph hr {
    bottom: 22px;
  }
  .bg-coin-div {
    top: 20%;
  }
  .highest-sale-wrap {
    gap: 16px;
  }
  .highest-sale {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
  .highest-sale .sale {
    font-size: 28px;
  }
  .highest-sale-wrap > p {
    font-size: 10px;
    letter-spacing: -0.25px;
  }
  .system-graph-div > p {
    font-size: 12px;
    letter-spacing: -0.3px;
  }
  .system-txt div span {
    display: inline-block;
    margin-top: 4px;
  }
  .everyday-div-sub p {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
  .everyday-div-tit {
    font-size: 20px;
    letter-spacing: -0.5px;
  }
  .review-inner {
    height: 750px;
  }
  .thumbup {
    width: 85px;
    margin-top: -10%;
  }
  .review-circle .st-tit {
    font-size: 28px !important;
    letter-spacing: -0.7px !important;
  }
  .review-txt {
    font-size: 12px;
    letter-spacing: -0.3px;
    margin-top: 12px;
  }
  #system .system-brand-box {
    padding: 20px 12px 10px !important;
  }
  #system .system-brand-icon {
    width: 55px !important;
  }
}

@media (max-width: 330px) {
  .highest-sale {
    font-size: 16px;
    letter-spacing: -0.4px;
  }
  .highest-sale .sale {
    font-size: 24px;
    margin-left: 2px;
  }
  .review-inner {
    height: 620px;
  }
  .thumbup {
    width: 75px;
    margin-top: -7%;
  }
  .review-circle .st-sub-tit {
    font-size: 14px !important;
    letter-spacing: -0.35px !important;
  }
  .review-absol-img {
    bottom: -27%;
  }
  .review-bubble.first {
    top: -27%;
  }
  .review-bubble.third {
    top: -46%;
  }
  .review-bubble.second {
    bottom: -55%;
  }
  .review-bubble.fourth {
    bottom: -77%;
  }

  #cost .promo-free.promo-free2 {
    width: 83px;
  }
  #cost .promo-price {
    font-size: 15px;
  }
}

@media (max-width: 310px) {
  .support-item-inner div {
    font-size: 18px;
    letter-spacing: -0.5px;
  }
  .advertising-graph-wrap {
    aspect-ratio: 1 / 0.9;
  }
}
