/* 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;
  background: url(../img/main-bg.png);
  background-position: center center !important;
  background-size: cover !important;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border: 20px solid #162789;
}

.main-container {
  display: flex;
  max-width: 1300px;
  width: 90%;
  padding-bottom: 80px;
  flex-direction: column;
  align-items: flex-start;
  gap: 60px;
}

.main-logo {
  width: 233px;
}

.main-tit {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  color: #fff;
  font-family: "Sandoll Kukdetopokki";
  font-size: 64px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%; /* 72.8px */
  letter-spacing: -1.28px;
  word-break: keep-all;
  z-index: 4;
}

.main-tit .line-animation {
  padding: 0 8px;
}

.main-tit .line-animation span {
  filter: drop-shadow(0px 4px 2px rgba(0, 0, 0, 0.35));
  background: linear-gradient(91deg, #fbe734 7.46%, #ffca0b 37.18%, #fff9c5 52.25%, #e6a100 74.22%, #fbe734 97.05%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.main-txt {
  color: rgba(255, 255, 255, 0.9);
  font-family: "Paperlogy";
  font-size: 28px;
  font-weight: 400;
  line-height: 140%; /* 39.2px */
  letter-spacing: -0.7px;
}

.main-marquee-container {
  height: 100%;
  display: flex;
  gap: 30px;
  position: absolute;
  right: 60px;
  top: 0;
}

.main-marquee {
  width: fit-content;
  height: 100%;
  overflow: hidden;
  box-sizing: border-box;
  z-index: 3;
}

.main-marquee .swiper-wrapper {
  display: flex;
  flex-direction: column;
  height: max-content;
  gap: 30px;
}

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

.left-marquee .swiper-wrapper {
  animation: scroll-up 17s linear infinite;
}

.right-marquee .swiper-wrapper {
  animation: scroll-down 21s linear infinite;
}

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

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

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

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

.main-marquee img {
  border-radius: 12px;
  width: 320px;
}

/* section2 */
#section2 {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #162789;
  overflow: hidden;
}

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

.st2-inner .st-tit {
  font-size: 96px;
  line-height: 120%; /* 115.2px */
  letter-spacing: -1.92px;
}

.st2-inner .st-sub-tit {
  font-size: 40px;
  letter-spacing: -1px;
}

.st2-cloud {
  position: absolute;
  animation: cloud 2s linear infinite;
}

.st2-cloud.left {
  left: -10px;
  top: 190px;
}

.st2-cloud.right {
  right: -39.86px;
  bottom: 483.5px;
}

@keyframes cloud {
  0% {
    transform: translateX(-5px);
  }
  50% {
    transform: translateX(5px);
  }
  100% {
    transform: translateX(-5px);
  }
}

.st2-container {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  max-width: 1300px;
  width: 90%;
  z-index: 3;
}

.st2-receipt-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px 60px;
  flex-wrap: wrap;
}

.st2-receipt {
  max-width: 380px;
  width: calc(32.3% - 40px);
  position: relative;
  transition: unset;
}

.st2-receipt img {
  width: 100%;
}

.st2-receipt-price {
  color: #fff;
  text-align: center;
  font-family: "Paperlogy";
  font-size: 28px;
  font-weight: 700;
  line-height: 180%; /* 50.4px */
  box-sizing: border-box;
  padding: 0 10px;
  background: #ff3131;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 26.5%;
  white-space: nowrap;
  display: flex;
  align-items: flex-end;
  gap: 2px;
}

.st2-receipt-price .count {
  color: #fff;
  text-align: center;
  text-shadow: 1px 2px 0 #000;
  font-family: "Pretendard";
  font-size: 50px;
  font-weight: 800;
  line-height: 130%; /* 65px */
}

.st2-container > p {
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%; /* 24px */
  letter-spacing: -0.4px;
}

.line-icon-div {
  max-width: 800px;
  width: 90%;
  z-index: 3;
}

.line-icon-div img {
  width: 100%;
}

.st2-txt {
  color: #fff;
  text-align: center;
  font-family: "Paperlogy";
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 42px */
  letter-spacing: -1px;
  z-index: 3;
}

.st2-txt span {
  display: inline-block;
}

.st2-img {
  position: absolute;
  width: 548px;
}

.st2-img.left {
  left: -90px;
  bottom: -110px;
}

.st2-img.right {
  right: -100px;
  bottom: -120px;
}

/* text marquee */
.text-marquee-swiper {
  width: 100%;
  height: fit-content;
  overflow: hidden;
  box-sizing: border-box;
  padding: 12px 0;
  border-top: 1px solid #030303;
  border-bottom: 1px solid #030303;
  background: #fff;
}

.text-marquee-swiper .swiper-wrapper {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 24px;
  animation: marquee-scroll 15s linear infinite;
}

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

.marquee-txt {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #162789;
  text-align: center;
  font-family: "Paperlogy";
  font-size: 20px;
  font-weight: 500;
  line-height: 100%; /* 20px */
  letter-spacing: -0.4px;
}

/* section3 */
#section3 {
  width: 100%;
  background: url(../img/st3-bg.png);
  background-position: center center !important;
  background-size: cover !important;
}

.st3-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  position: relative;
  overflow: hidden;
  border: 2px solid #162789;
}

.st3-cloud {
  width: 270px;
  position: absolute;
  animation: cloud 2s linear infinite;
}

.st3-cloud.left {
  left: -100px;
  top: 214px;
}

.st3-cloud.right {
  right: -16.91px;
  top: -21px;
}

#section3 .st-tit {
  color: #030303;
  font-size: 96px;
  letter-spacing: -1.92px;
}

#section3 .st-sub-tit {
  color: #444;
  font-size: 40px;
  letter-spacing: -1px;
}

.st3-container {
  max-width: 1252px;
  width: 90%;
  height: 550px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  z-index: 5;
}

.st3-item-wrap {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}

.st3-item {
  width: 258px;
  z-index: 3;
  transition: unset;
}

.piechart-div {
  max-width: 650px;
  width: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.piechart {
  width: 100%;
  z-index: 4;
  position: relative;
}

.profit-pie {
  width: 48%;
  position: absolute;
  right: -2%;
  top: 11%;
  animation: zoom 1.2s linear infinite;
  z-index: 3;
}

.piechart-ellipse {
  width: 57%;
  position: absolute;
  left: 49%;
  top: 56%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

@keyframes zoom {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}

.st3-container .dash-line {
  max-width: 840px;
  width: 70%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 80px;
}

.st3-txt {
  color: #444;
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  line-height: 140%; /* 28px */
  letter-spacing: -0.5px;
  word-break: keep-all;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.70);
  display: flex;
  box-sizing: border-box;
  padding: 20px;
  justify-content: center;
  align-items: center;
  z-index: 5;
  margin-top: -35px;
}

.st3-txt .line-animation {
  padding: 0 10px;
}

.st3-txt .line-animation::before {
  background: #bf2124;
}

.bottom-wave {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: -5%;
}

.mo-wave {
  display: none;
}

/* section4 */
#section4 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: url(../img/st4-bg.png);
  background-position: center center !important;
  background-size: cover !important;
  gap: 60px;
}

.st4-inner {
  width: 100%;
  border: 1px solid #fff;
  background: rgba(17, 17, 17, 0.5);
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  position: relative;
  overflow: hidden;
}

.st4-inner .st-tit {
  font-size: 96px;
  letter-spacing: -1.92px;
}

.st4-inner .st-sub-tit {
  font-size: 40px;
  letter-spacing: -1px;
  color: rgba(255, 255, 255, 0.75);
}

.st4-inner.second .st-tit {
  font-size: 80px;
  letter-spacing: -1.6px;
}

.st4-inner .st-sub-tit span {
  color: #ffe89b;
  font-weight: 700;
}

.st4-container {
  max-width: 1300px;
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.st4-con-txt {
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%; /* 24px */
  letter-spacing: -0.4px;
  word-break: keep-all;
}

.st4-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
  gap: 50px;
}

.st4-change-wrap {
  max-width: 1100px;
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
}

.st4-wrap .st4-change-wrap {
  width: calc(64% - 25px);
}

.change-box {
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.12);
  overflow: hidden;
}

.before-box {
  width: 46%;
  background: #d9d9d9;
  border-radius: 20px 0 0 20px;
}

.after-box {
  width: 54%;
  border-radius: 20px;
  background: linear-gradient(180deg, #ff714a 0%, #d85936 100%);
  box-shadow: 8px 16px 40px 0 rgba(0, 0, 0, 0.2);
}

.st4-wrap .before-box,
.st4-wrap .after-box {
  width: 50%;
}

.change-box-tit {
  width: 100%;
  color: #444;
  font-family: "Paperlogy";
  font-size: 32px;
  font-style: normal;
  font-weight: 800;
  line-height: 130%; /* 41.6px */
  display: flex;
  box-sizing: border-box;
  padding: 30px 20px 10px 20px;
  justify-content: center;
  align-items: center;
}

.st4-inner.second .change-box-tit {
  font-size: 40px;
}

.change-box-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  box-sizing: border-box;
  padding: 30px 20px;
}

.after-box .change-box-inner {
  gap: 20px;
}

.st4-inner.second .before-box .change-box-inner {
  padding: 30px 20px 50px;
}

.st4-img {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #fff;
}

.before-txt1 {
  color: #767676;
  font-family: "Paperlogy";
  font-size: 28px;
  font-weight: 600;
  line-height: 130%; /* 36.4px */
  letter-spacing: -0.7px;
}

.before-txt2 {
  color: #767676;
  text-align: center;
  font-family: "Paperlogy";
  font-size: 40px;
  font-weight: 600;
  line-height: 140%; /* 56px */
  letter-spacing: -1px;
}

.before-txt3 {
  color: #767676;
  font-family: "Paperlogy";
  font-size: 48px;
  font-weight: 600;
  line-height: 130%; /* 41.6px */
  letter-spacing: -1.2px;
}

.pyeong {
  color: #767676;
  text-align: center;
  font-family: "Paperlogy";
  font-size: 32px;
  font-weight: 600;
  line-height: 140%; /* 44.8px */
  letter-spacing: -0.8px;
  display: flex;
  box-sizing: border-box;
  padding: 8px 32px;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  background: #fff;
}

.after-box .pyeong {
  color: #bf2124;
  margin-top: -4px;
}

.after-txt1 {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-family: "Paperlogy";
  font-size: 32px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.8px;
}

.after-txt2 {
  color: #fff;
  font-family: "Paperlogy";
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 57.6px */
  letter-spacing: 0.48px;
  white-space: nowrap;
}

.st4-inner.second .change-box .after-txt2 {
  font-size: 64px;
  letter-spacing: 0.64px;
}

.st4-arrow-div {
  max-width: 250px;
  width: 38%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.st4-arrow-div img {
  width: 100%;
}

.st4-graph-box {
  width: calc(36% - 25px);
  display: flex;
  height: 662px;
  box-sizing: border-box;
  padding: 30px 20px;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, #fff 100%);
  overflow: hidden;
  position: relative;
}

.st4-bar-bubble {
  max-width: 250px;
  width: 57%;
  position: absolute;
  top: 10px;
  left: 0;
}

.tada {
  --base-rotate: 0deg;
  transform: rotate(var(--base-rotate));
  transform-origin: center;
}

@keyframes tada-tilted {
  0% {
    transform: rotate(var(--base-rotate)) scale(1);
  }
  5%,
  10% {
    transform: rotate(calc(var(--base-rotate) - 3deg)) scale(0.9);
  }
  15%,
  25%,
  35%,
  45% {
    transform: rotate(calc(var(--base-rotate) + 3deg)) scale(1.1);
  }
  20%,
  30%,
  40% {
    transform: rotate(calc(var(--base-rotate) - 3deg)) scale(1.1);
  }
  50% {
    transform: rotate(var(--base-rotate)) scale(1);
  }
}

.ani-tada {
  animation: tada-tilted 2s cubic-bezier(0.215, 0.61, 0.355, 1) both infinite;
}

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

.st4-bar-div {
  width: 100%;
  height: 500px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  border-bottom: 1px solid rgba(0, 0, 26, 0.3);
  overflow: hidden;
}

.st4-bar {
  box-sizing: border-box;
  max-width: 180px;
  width: 50%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
}

.st4-bar img {
  max-width: 140px;
  width: 70%;
  transition: unset;
}

.mo-bar {
  display: none;
}

.st4-bar-txt {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  color: #666;
  text-align: center;
  font-family: 'Paperlogy';
  font-size: 20px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.5px;
  white-space: nowrap;
  top: -35%;
}

.st4-bar-txt.after {
  color: #FFF;
  text-align: center;
  font-family: 'Paperlogy';
  font-size: 28px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.7px;
  box-sizing: border-box;
  padding: 10px;
  border-radius: 50px;
  background: rgba(0, 0, 0, 0.70);
  top: 35%;
}

.st4-graph-inner .graph-txt {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 10px;
}

.st4-graph-inner .graph-txt p {
  white-space: nowrap;
  max-width: 180px;
  width: 50%;
  color: #505050;
  text-align: center;
  font-family: "Paperlogy";
  font-size: 24px;
  font-weight: 600;
  line-height: normal;
}

.st4-graph-inner .graph-txt p.primary {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.st4-txt {
  color: #fff;
  text-align: center;
  font-family: "Paperlogy";
  font-size: 40px;
  font-weight: 400;
  line-height: 150%; /* 48px */
  letter-spacing: -1px;
}

.st4-txt span {
  color: #ffe89b;
  font-weight: 700;
}

/* section5 */
#section5 {
  width: 100%;
  background: #fbe734;
}

.st5-inner {
  box-sizing: border-box;
  padding: 120px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  width: 100%;
  overflow: hidden;
  position: relative;
  border: 1px solid #bf2124;
}

.st5-bg-icon {
  width: 213px;
  position: absolute;
  top: -62px;
}

.st5-bg-icon.left {
  left: 30px;
}

.st5-bg-icon.right {
  right: 30px;
}

.st5-inner .st-tit {
  color: #030303;
  font-size: 96px;
  letter-spacing: -1.92px;
}

.st5-inner .st-sub-tit {
  color: #444;
  font-size: 40px;
  letter-spacing: -1px;
}

.st5-container {
  max-width: 1300px;
  width: 90%;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  z-index: 5;
}

.st5-item {
  width: calc(33.3% - 21.3px);
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 12px;
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.12);
  overflow: hidden;
  background: #fff;
}

.st5-item img {
  width: 100%;
}

.st5-item-div {
  display: flex;
  box-sizing: border-box;
  padding: 30px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  align-self: stretch;
  background: #fff;
}

.st5-item-div .item-num {
  color: #bf2124;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.5px;
}

.st5-item-div .item-tit {
  color: #222;
  font-family: "Paperlogy";
  font-size: 28px;
  font-weight: 600;
  line-height: 130%; /* 36.4px */
  word-break: keep-all;
}

.st5-item-div .item-content {
  color: #505050;
  font-size: 18px;
  font-weight: 400;
  line-height: 26px; /* 144.444% */
  letter-spacing: -0.45px;
  word-break: keep-all;
}

.st5-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  z-index: 5;
}

.st5-cost-box {
  min-width: 1235px;
  position: relative;
  display: flex;
  box-sizing: border-box;
  padding: 30px 40px;
  justify-content: center;
  align-items: center;
  gap: 24px;
  border-radius: 100px;
  background: rgba(159, 14, 17, 0.80);
  box-shadow: 0 8px 24px 0 rgba(0, 0, 0, 0.20);
  color: #FBE734;
  text-align: center;
  font-family: "Sandoll Kukdetopokki";
  font-size: 56px;
  font-weight: 700;
  line-height: 140%; /* 78.4px */
  letter-spacing: -1.4px;
}

.st5-cost-box::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 100px;
  padding: 4px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0.10));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.st5-cost {
  color: #FFF;
  font-size: 56px;
  font-family: 'Pretendard';
  font-weight: 700;
  line-height: 120%; /* 67.2px */
  letter-spacing: -1.4px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.st5-cost .cost-count {
  color: #FFF;
  font-size: 92px;
  font-weight: 700;
  line-height: 120%; /* 110.4px */
  box-sizing: border-box;
  padding: 8px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: linear-gradient(180deg, #111 0%, #505050 49%, #111 50%), #111;
}

.st5-wrap .st4-con-txt {
  color: rgba(17, 17, 17, 0.70);
}

.st5-txt {
  color: #111;
  font-family: 'Paperlogy';
  font-size: 50px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%; /* 70px */
}

.st5-txt span {
  display: inline-block;
}


/* section6 */
#section6 {
  background: url(../img/st6-bg.png);
  background-attachment: fixed;
  background-position: center center !important;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  padding: 80px 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.st6-inner {
  max-width: 1500px;
  width: 100%;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 24px 0 rgba(0, 0, 0, 0.12);
  display: flex;
  box-sizing: border-box;
  padding: 20px;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 5;
}

.st6-container {
  display: flex;
  width: 100%;
  box-sizing: border-box;
  justify-content: center;
  align-items: center;
  position: relative;
  border-radius: 8px;
  border: 1.5px solid #162789;
  background: #fff;
  overflow: hidden;
}

.roof {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 6;
}

.st6-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: stretch;
}

.st6-circle {
  width: 50%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.st6-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 5;
}

.st6-content {
  width: 50%;
  box-sizing: border-box;
  padding: 80px 40px 60px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}

.st6-div {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.st6-div p {
  color: #162789;
  font-family: "Sandoll Kukdetopokki";
  font-size: 48px;
  font-weight: 700;
  line-height: 150%; /* 72px */
  letter-spacing: -1.2px;
}

.st6-div img {
  width: 490px;
}

.st6-txt {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  color: #162789;
  font-size: 24px;
  font-weight: 400;
  line-height: 150%; /* 30px */
  letter-spacing: -0.6px;
  word-break: keep-all;
}

.st6-txt br {
  display: none;
}

.st6-txt span {
  word-break: keep-all;
}

/* section7 */
#section7 {
  width: 100%;
  background: #162789;
}

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

.st7-inner .st-tit {
  font-size: 96px;
  letter-spacing: -1.92px;
}

.st7-container {
  display: flex;
  max-width: 1300px;
  width: 90%;
  justify-content: flex-start;
  align-items: center;
}

.st7-box {
  display: flex;
  box-sizing: border-box;
  padding: 0 40px;
  box-shadow: 0 16px 24px 0 rgba(0, 0, 0, 0.16);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  z-index: 3;
}

.deco-icon {
  position: absolute;
}

.deco-icon.tl {
  left: -1px;
  top: -1px;
}

.deco-icon.tr {
  right: -1px;
  top: -1px;
  transform: rotate(90deg);
}

.deco-icon.bl {
  left: -1px;
  bottom: -1px;
  transform: rotate(-90deg);
}

.deco-icon.br {
  right: -1px;
  bottom: -1px;
  transform: rotate(180deg);
}

.st7-box p {
  color: #FFF;
  font-family: 'Paperlogy';
  font-size: 32px;
  font-weight: 400;
  line-height: 150%; /* 48px */
  letter-spacing: -0.8px;
}

.st7-box p span {
  color: #FFDC80;
  font-weight: 600;
}

.st7-img {
  width: 466px;
  position: absolute;
  right: 12%;
  bottom: 0;
}

/* section8 */
#section8 {
  width: 100%;
  background: url(../img/review-bg.png);
  background-position: center center !important;
  background-size: cover !important;
  box-sizing: border-box;
  padding: 20px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  overflow: hidden;
  position: relative;
}

.review-swiper-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.review-swiper {
  width: 100%;
}

.review-swiper .swiper-wrapper {
  transition-timing-function: linear;
}

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

.review-swiper img {
  width: 100%;
}

.review-wrap {
  max-width: 700px;
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: url(../img/review-bg.png);
  background-position: center center !important;
  background-size: cover !important;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 50px;
  border-right: 1px solid rgba(0, 0, 0, 0.20);
  border-left: 1px solid rgba(0, 0, 0, 0.20);
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.24);
}

.review-wrap .review-div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.review-wrap .review-div .review-icon {
  width: 283px;
}

.review-wrap .review-div .st-tit {
  color: #111;
  font-size: 80px;
  letter-spacing: -2px;
}

.review-wrap .review-div .st-sub-tit {
  color: #111;
  font-size: 32px;
  letter-spacing: -0.8px;
}

.review-wrap .phone-frame-div {
  max-width: 300px;
  width: 50%;
  position: relative;
  overflow: hidden;
  border-radius: 38.653px 38.653px 0 0;
}

.review-wrap .phone-frame-div .phone-frame {
  width: 100%;
  position: relative;
  z-index: 2;
}

.review-wrap .phone-frame-div .phone-reel {
  position: absolute;
  top: 0.5;
  left: 2%;
  width: 96%;
  height: 105%;
  overflow: hidden;
  z-index: 1;
}

.review-wrap .phone-frame-div .phone-reel iframe {
  width: 100%;
  height: 100%;
  border: none;
}


/* section9 */
#section9 {
  width: 100%;
  display: flex;
  padding: 120px 0;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  background: #fbe734;
  position: relative;
  overflow: hidden;
}

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

.st9-img.tl {
  max-width: 668px;
  width: 35%;
  left: -14%;
  top: -9%;
}

.st9-img.br {
  max-width: 528px;
  width: 32%;
  right: -8%;
  bottom: -14%;
}

.st9-vector {
  width: 100%;
  position: absolute;
  left: 0;
  top: 40%;
}

#section9 .st-tit {
  color: #111;
}

#section9 .st-sub-tit {
  color: #030303;
}

.st9-container {
  max-width: 1300px;
  width: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 3;
}

.media-swiper {
  width: calc(100% - 148px);
  overflow: hidden;
}

.media-ex {
  background: #111;
  width: 100%;
}

.media-ex iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.nav-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 5;
}

.nav-btn {
  width: 54px;
  aspect-ratio: 1 / 1;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #162789;
  background: #fff;
  pointer-events: initial;
  transition: 0.1s;
  cursor: pointer;
}

.nav-btn:hover {
  border: 1px solid #fff;
  background: rgba(0, 0, 0, 0.5);
}

.nav-btn svg {
  transition: 0.1s;
}

.nav-btn:hover svg path {
  fill: #fff;
}

#section9 .st2-txt {
  color: #222;
}

/* section10 */
#section10 {
  width: 100%;
  background: linear-gradient(180deg, #162789 0%, #171717 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 100px;
  position: relative;
  overflow: hidden;
}

.st10-bg-img {
  width: 420px;
  position: absolute;
}

.st10-bg-img.first {
  left: -70px;
  top: -70px;
}

.st10-bg-img.second {
  right: -60px;
  bottom: 37%;
}

.st10-bg-img.third {
  width: 400px;
  left: -170px;
  bottom: -27px;
}

.st10-box {
  max-width: 1500px;
  width: 90%;
  display: flex;
  box-sizing: border-box;
  padding: 20px;
  justify-content: center;
  align-items: center;
  background: #fff;
  box-shadow: 0 8px 24px 0 rgba(0, 0, 0, 0.12);
  z-index: 5;
}

.st10-box-inner {
  width: 100%;
  display: flex;
  box-sizing: border-box;
  padding: 100px 0 60px 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 60px;
  overflow: hidden;
  background: #111;
  position: relative;
}

.st10-box:first-of-type .st10-box-inner {
  background: url(../img/st10-box-bg.png);
  background-position: center center !important;
  background-attachment: fixed;
  background-size: cover !important;
}

.st10-box-container {
  width: 92%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  gap: 40px;
}

.st10-img-div {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
}

.st10-img-div img {
  width: calc(50% - 15px);
  border-radius: 12px;
  border: 1px solid #fff;
  object-fit: cover;
  transition: 0.15s;
}

.st10-box.second .st10-img-div img {
  width: 100%;
}

.st10-item-div {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 20px 30px;
}

.st10-item {
  width: calc(50% - 15px);
  display: flex;
  box-sizing: border-box;
  padding: 10px 20px;
  justify-content: center;
  align-items: center;
  color: #FFF;
  text-align: center;
  font-family: 'Paperlogy';
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 145%; /* 58px */
  letter-spacing: -1px;
  border-radius: 12px;
  background: #16215E;
}

.st10-box.second .st10-item {
  background: #BF2124;
}

#contact {
  box-sizing: border-box;
  width: 100%;
  padding: 120px 0;
  gap: 60px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  background-attachment: fixed;
  background-position: center center !important;
  position: relative;
  background: radial-gradient(85.67% 50% at 50% 40.96%, rgba(17, 17, 17, 0.5) 42.45%, #111 100%), url("../img/contact-bg.png");
  background-attachment: fixed;
  overflow: hidden;
}

.contact-tit-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;  
  gap: 8px;
}

.contact-tit-wrap .st-tit {
  font-size: 96px;
  line-height: 150%; /* 144px */
  letter-spacing: -2.4px;
}

.contact-tit-div {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-tit-div .st-sub-tit {
  font-size: 40px;
  letter-spacing: -1px;
}

.contact-tit-div .contact-num {
  color: #FFF;
  text-align: center;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  font-size: 72px;
  font-weight: 900;
  line-height: 145%; /* 104.4px */
}

#contact .wave,
#contact .mo-wave {
  position: absolute;
  bottom: 0;
  width: 100%;
}
#contact .mo-wave {
  display: none;
}
#contact .wave {
  display: flex;
}

.contact-form-wrap {
  border: 1.5px solid #fff;
  background: var(--Logo-color, #162789);
  box-shadow: 0 8px 24px 0 rgba(0, 0, 0, 0.12);
  max-width: 1260px;
  display: flex;
  width: 90%;
  box-sizing: border-box;
  padding: 20px;
}

.contact-form {
  display: flex;
  padding: 60px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
  gap: 24px;
  background: #fff;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
}

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

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

.contact-form input[type="text"],
input[type="tel"],
textarea {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  height: 44px;
  padding: 10px;
  color: #1a1a1a;
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 150%; /* 21px */
  letter-spacing: -0.4px !important;
  background: #fff;

  align-items: center;
  border: 1px solid rgba(17, 17, 17, 0.5);
  background: #fff;
}

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

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

textarea {
  resize: none;
  overflow: hidden;
}

.item label {
  box-sizing: border-box;
  font-size: 16px !important;
  line-height: 150% !important; /* 23.4px */
  letter-spacing: -0.4px !important;
  font-weight: 700 !important;
  color: #111;
}
.item label span {
  color: #999;
}

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

.form-tab {
  width: 50%;
  height: 44px;
  box-sizing: border-box;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1.2px solid rgba(168, 168, 168, 0.3);
  background: #fff;
  color: #6b6b6b;
  font-size: 14px;
  line-height: 24px; /* 150% */
  font-weight: 500;
  letter-spacing: -0.35px;
  cursor: pointer;
  transition: 0.1s !important;
}

.have {
  color: #393b85;
  border: 2px solid #393b85;
  font-weight: 700;
}

.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-form .round-checkbox {
  width: 30px;
  height: 30px;
  border: none;
  border-radius: 50px;
  appearance: none;
  position: relative;
  cursor: pointer;
  background: #fff;
  border: 1.2px solid rgba(168, 168, 168, 0.3);
}

.contact-form .round-checkbox:checked::before {
  font-size: 100%;
  color: #fff;
  position: relative;
}

.contact-form .round-checkbox:checked {
  background-image: url("../img/check.png");
  background-size: 17px !important;
  background-position: center center !important;
  background-color: #162789;
  background-repeat: no-repeat;
  border: none;
}

.contact-form .agree {
  color: #333;
  font-size: 16px !important;
  font-weight: 400;
  line-height: 24px !important;
  letter-spacing: -0.4px !important;
  cursor: pointer;
  word-break: keep-all;
}

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

.c-btn {
  width: 160px;
  background: #162789;
  display: flex;
  box-sizing: border-box;
  padding: 15px 32px;
  justify-content: center;
  align-items: center;
  gap: 30px;
  color: #fff;
  font-size: 18px;
  line-height: normal;
  font-weight: 600;
  letter-spacing: -0.45px;
  border: none;
  border-radius: 8px;
}

.c-btn:hover {
  background: #000d56;
}

#esg {
  overflow: hidden;
  background: var(--Yellow, #fbe734);
  backdrop-filter: blur(6px);
  position: relative;
}
#esg .esg-wrap {
  display: flex;
  padding: 120px 0 60px 0;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  align-self: stretch;
}
#esg .st-tit {
  color: #111;
  word-break: keep-all;
  font-size: 96px;
  letter-spacing: -1.92px;
}
#esg .st-tit span {
  color: var(--Red, #bf2124);
}

#esg .title-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}

#esg .sub-info {
  color: #111;
  text-align: center;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 36px */
  letter-spacing: -0.8px;
}

#esg .frame-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

#esg .frame-wrap .frame-box {
  width: 330%;
  display: flex;
  height: 400px;
  padding: 30px;
  justify-content: center;
  align-items: center;
  flex: 1 0 0;
}

#esg .frame-wrap .frame-box::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.55;

  transform: scale(1); /* 기본 100% */
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
  will-change: opacity, transform;
  pointer-events: none;
}
#esg .frame-wrap .frame-box:nth-child(1)::before {
  background: url("../img/esg-bg-1.png") center / cover no-repeat;
}
#esg .frame-wrap .frame-box:nth-child(2)::before {
  background: url("../img/esg-bg-2.png") center / cover no-repeat;
}
#esg .frame-wrap .frame-box:nth-child(3)::before {
  background: url("../img/esg-bg-3.png") center / cover no-repeat;
}

/* hover: 더 어둡게(이미지 20%), 줌 120% */
#esg .frame-wrap .frame-box:hover::before {
  opacity: 0.2; /* 이미지 20% */
  transform: scale(1.2); /* 줌 120% */
}

#esg .frame-wrap .frame-box > * {
  position: relative; /* 내용이 이미지 위로 오게 */
  z-index: 1;
}

#esg .frame-wrap .frame-box {
  background-position: center center !important;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
  background: #111111; /* 컬러 100% */
}

#esg .frame-wrap .frame-box:hover .info-tit span:first-child {
  transform: scale(1.15);
  display: inline-block;
}

#esg .frame-wrap .frame {
  position: relative;
  border: 1px solid #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  flex: 1 0 0;
  align-self: stretch;
}
#esg .frame-wrap .frame-box .info-tit {
  color: var(--Yellow, #fbe734);
  text-align: center;
  font-family: "Sandoll Kukdetopokki";
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%; /* 52px */
  letter-spacing: -1px;
}
#esg .frame-wrap .frame-box .info-tit span:last-child {
  color: #fff;
  display: block;
}
#esg .frame-wrap .frame-box .info-sub {
  color: #fff;
  text-align: center;
  font-family: Pretendard;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 30px */
  letter-spacing: -0.5px;
}

#esg .frame-wrap .num-box {
  top: -15px;
  position: absolute;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#esg .frame-wrap .num-box svg {
  width: 100%;
  height: 100%;
}
#esg .frame-wrap .num-box p {
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  color: #111;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 24px */
  letter-spacing: -0.5px;
}

#local-brand {
  width: 100%;
  position: relative;
  background: var(--Logo-color, #162789);
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}
#local-brand .wave {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  z-index: 1;
}
#local-brand .brand-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  padding: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #fff;
  max-width: 1500px;
  width: 100%;
  box-shadow: 0 8px 24px 0 rgba(0, 0, 0, 0.12);
}
#local-brand .brand-wrap .brand-box {
  border-radius: 8px;
  border: 1.5px solid var(--Logo-color, #162789);
  position: relative;
  width: 100%;
  overflow-x: hidden;
  padding: 100px 0 60px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

#local-brand .brand-wrap .roof {
  /* position: absolute;
  top: 0;
  left: 0;
  width: 100%; */
  border-radius: 8px 0 0 8px;
  width: 100%;
}

#local-brand .brand-box .tit-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  margin-bottom: 20px;
}
#local-brand .brand-box .tit-wrap .sub-tit {
  color: #111;
  text-align: center;
  font-family: Paperlogy;
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 52px */
  letter-spacing: -1px;
}
#local-brand .brand-box .tit-wrap .tit {
  color: #111;
  font-family: "Sandoll Kukdetopokki";
  font-size: 56px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  letter-spacing: -1.4px;
}
#local-brand .brand-box .tit-wrap .tit b {
  color: var(--Logo-color, #162789);
}

#local-brand .icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
#local-brand .icon-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding: 20px 0;
  width: 25%;
  text-align: center;
}

#local-brand .icon-box svg {
  width: 50%;
  height: 50%;
  max-width: 100px;
  max-height: 100px;

  aspect-ratio: 1/1;
}
#local-brand .icon-box p {
  color: #111;
  text-align: center;
  font-family: Pretendard;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 145%; /* 34.8px */
  letter-spacing: -0.6px;
  word-break: keep-all;
}

#local-brand .brand-swiper-container {
  height: 100%;
  overflow-x: hidden;
  width: 100%;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

#local-brand .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

#local-brand .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#signature {
  overflow-x: hidden;
  background-color: #fbe734;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  position: relative;
}

#signature .fixed {
  position: absolute;
  bottom: 0;
  right: 0;
  max-width: 721px;
  max-height: 462px;
  width: 45%;
  aspect-ratio: 103 / 66;
  z-index: 0;
}

.signature-wrap {
  background-image: url("../img/signature-menu-bg.png");
  background-position: center center !important;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  padding: 100px 0;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  align-self: stretch;
  overflow: hidden;
  position: relative;
}

.signature-bg-img {
  position: absolute;
  width: 250px;
}

.signature-bg-img.left {
  left: 40px;
  top: 12px;
}

.signature-bg-img.right {
  right: 40px;
  top: 56px;
}

.signature-wrap .tit-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.signature-wrap .menu-img-wrap {
  max-width: 900px;
  width: 75%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  position: relative;
}

.signature-wrap .menu-img-wrap .menu-info {
  width: 100%;
  aspect-ratio: 437 / 353;
  position: relative;
}

.signature-wrap .menu-img-wrap .menu-info .menu-img, .menu-img img {
  width: 100%;
}

.menu-img .signature-menu {
  width: 100%;
}

.menu-img .signature-menu-name {
  width: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.menu-img.left-wrap .signature-menu-name {
  width: 130%;
}

.signature-wrap .menu-info .menu-img {
  position: absolute;
  width: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.signature-wrap .menu-info .menu-img.active {
  opacity: 1;
  pointer-events: auto;
}

.menu-title-div {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.menu-title {
  color: #bf2124;
  text-align: center;
  font-family: 'Paperlogy';
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 48px */
  letter-spacing: -1px;
  display: flex;
  width: 450px;
  padding: 16px 0;
  justify-content: center;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--mainColor, #381804);
  box-shadow: 0 8px 24px 0 rgba(0, 0, 0, 0.12);
  position: relative;
  background: #FFF;
}

.menu-title-div .menu-title {
  width: 250px;
  cursor: pointer;
  transition: opacity 0.3s ease, background 0.3s ease;
  background: #7B7B7B;
  opacity: 0.5;
}

.menu-title-div .menu-title.active {
  opacity: 1;
  background: #FFF;
}

.menu-title span {
  background: var(--Red, #bf2124);
  position: absolute;
  top: 50%;
  height: 70px;
  width: 8px;
  transform: translateY(-50%);
}
.menu-title span:nth-child(1) {
  border-radius: 0 4px 4px 0;
  left: 0;
}
.menu-title span:nth-child(2) {
  border-radius: 4px 0 0 4px;
  right: 0;
}

.signature-wrap .menu-info .menu-text-wrap {
  background: #fff;
  border-radius: 0 0 12px 12px;
  padding: 30px 20px 40px;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-direction: column;
}

.signature-wrap .menu-info .menu-text-title {
  color: #111;
  text-align: center;
  font-family: Paperlogy;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 48px */
  letter-spacing: -1px;
  display: flex;
  justify-content: center;
  gap: 16px;
  align-items: center;
}

.signature-wrap .menu-info .menu-text-wrap .menu-sub-title {
  color: var(--Logo-color, #162789);
  text-align: center;
  font-family: Pretendard;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 26.4px */
  letter-spacing: -0.55px;
  word-break: keep-all;
}

/* marquee (CSS keyframes) */
.marquee-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  padding: 20px 0;
  border-top: 1px solid rgba(3, 3, 3, 0.1);
  border-bottom: 1px solid rgba(3, 3, 3, 0.1);
  background: var(--Yellow, #fbe734);
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 40px;
  flex-wrap: nowrap;
  will-change: transform;
}

.marquee-track > span {
  flex: 0 0 auto;
  color: #111;
  text-align: center;
  font-family: Paperlogy;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: -0.48px;
}
/* wrap1 왼쪽으로 */
@keyframes marquee-left {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

.marquee-wrap1 .marquee-track {
  animation: marquee-left 25s linear infinite;
}

/* wrap2는 오른쪽으로 */
@keyframes marquee-right {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.marquee-wrap2 .marquee-track {
  animation: marquee-right 25s linear infinite;
}

.marquee-img-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  padding: 30px 0;

  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.marquee-img-wrap img {
  width: 240px;
  height: 240px;
  object-fit: cover;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
}

.marquee-img-track {
  display: inline-flex;
  align-items: center;
  gap: 40px;
  flex-wrap: nowrap;
  will-change: transform;
  animation: marquee-img 20s linear infinite;
}

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

#cost {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--Logo-color, #162789);
  flex-direction: column;
  gap: 60px;
  align-self: stretch;
}

#cost .cost-container {
  padding-top: 100px;
  width: 100%;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 50px;
}

#cost .cost-container .st-tit {
  margin-bottom: 16px;
  color: var(--Logo-color, #162789);
}
#cost .cost-container .st-sub-tit {
  color: var(--Black, #030303);
}

#cost .cost-table-wrap {
  width: 90%;
  max-width: 1200px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 16px;
}
#cost .cost-table {
  width: 100%;

  background: #fff;
  border-collapse: collapse;
  color: #505050;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 23.4px */
  letter-spacing: -0.5px;

  border-top: 0 none !important;
  border-left: 0 none !important;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.cost-table-wrap .pc {
  display: revert;
}

#cost .cost-table thead tr th {
  border-top: none !important;
}
#cost .cost-table .category {
  border-left: none !important;
}
#cost .cost-table th.category {
  border-right: none;
  border-top: none !important;
}
#cost .cost-table thead tr th:nth-child(2) {
  border-left: none !important;
}

#cost .cost-table td[colspan="3"] {
  border-left: none !important;
  font-family: 'Pretendard';
}

#cost .cost-table td[rowspan="3"] {
  font-family: 'Pretendard';
}

#cost .cost-table .bold {
  color: #111;
  font-weight: 700;
}

#cost .cost-table .highlight {
  color: #999;
}
#cost .cost-table .del {
  text-decoration-line: line-through;
}

#cost .cost-table .highlight span:nth-child(1) {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 140% */
  letter-spacing: -0.5px;
  text-decoration-line: line-through;
}
#cost .cost-table .highlight span:nth-child(2) {
  margin-left: 10px;
  color: var(--Red, #bf2124);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px; /* 140% */
  letter-spacing: -0.5px;
}

#cost .cost-table tbody td {
  text-align: center;
  vertical-align: middle;
  padding: 12px 16px;
  word-break: keep-all;
}

/* 숫자(금액) 부분만 두껍게 */
#cost .cost-table tbody td strong {
  display: block;
  margin-top: 5px;
  font-weight: bold;
  font-size: 1.1em;
}

#cost .cost-table tr > *:first-child {
  border-right: none !important;
}
#cost .cost-table tr:last-child .details {
  border-right: none !important;
  border-left: none !important;
}
#cost .cost-table tr:last-child .category {
  border-left: none !important;
}

#cost .cost-table th {
  color: #111;
  font-size: 20px !important;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  letter-spacing: -0.5px;
}
#cost .cost-table th span {
  font-weight: 400;
}

#cost .cost-table th,
#cost .cost-table td {
  border: 1px solid #ddd;
  padding: 12px;
  text-align: center;
}

#cost .cost-table td {
  font-family: 'Paperlogy';
}

.cost-table thead tr th.category {
  border-radius: 12px 12px 0 0;
}
.cost-table tbody tr:last-child .category {
  border-radius: 0 0 12px 12px;
}
#cost .cost-table .category {
  width: 200px;
  padding: 12px 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  background: #c6d0e8;
  color: #111;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 23.4px */
  letter-spacing: -0.55px;
}

#cost .cost-table .details {
  text-align: left;
  color: #505050;
  /* font-size: 18px; */
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 23.4px */
  letter-spacing: -0.45px;
}

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

#cost .cost-table .waiver-wrap {
  position: relative;
}

#cost .cost-table .waiver.bling {
  animation: 1.5s linear 0s infinite bling;
}
#cost .cost-table .waiver {
  position: absolute;
  left: 50px;
  top: -43px;
}
#cost .notes {
  color: #767676;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 20.8px */
  letter-spacing: -0.4px;
  width: 100%;
  text-align: left;

}

#cost .limited-wrap {
  width: 100%;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}
#cost .limited-wrap .limited-box {
  display: inline-flex;
  width: auto;
  padding: 10px 24px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 99px;
  background: #d62737;
  color: #fff;
  text-align: center;
  font-family: Paperlogy;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%; /* 41.6px */
}

#cost .limited-wrap .limited-tit {
  color: var(--Red, #bf2124);
  text-align: center;
  font-family: Paperlogy;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%; /* 52px */
  letter-spacing: -1px;
  margin-top: 12px;
}

.cost-container .graph-section {
  max-width: 1180px;
  width: 90%;
  margin: 24px auto 50px;
}
.cost-container .progress-container {
  width: 100%;
  overflow: hidden;

  display: flex;
  height: 60px;
  align-items: center;
  border-radius: 12px;
  background: #c6b9b9;
}
.cost-container .progress-fill {
  width: 0%; /* 시작은 0% */
  height: 100%;
  text-align: center;

  padding: 17px 0 16px 0;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  background: radial-gradient(51.78% 88.51% at 34.13% 10.34%, #fe384a 0%, #d62737 100%), var(--Red, #bf2124);
  box-shadow: 4px 8px 16px 0 rgba(0, 0, 0, 0.12);
  transition: unset;
}
.cost-container .progress-text {
  white-space: nowrap;
  color: #fff;
  text-align: center;
  font-family: Paperlogy;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 31.2px */
}

.benefit-container {
  position: relative;
  padding: 100px 60px;
  width: 100%;
  overflow: hidden;
  background-position: center center !important;
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.75) 100%),
    url(../img/cost-benefit-bg.png) lightgray 50% / cover no-repeat;
}
.benefit-container .parallax-container {
  z-index: 0;
}

.benefit-container .corner {
  position: absolute;
}

.benefit-container .corner.left-top,
.benefit-container .corner.right-top {
  top: -1px;
}
.benefit-container .corner.left-bottom,
.benefit-container .corner.right-bottom {
  bottom: -1px;
}
.benefit-container .corner.left-top,
.benefit-container .corner.left-bottom {
  left: -1px;
}
.benefit-container .corner.right-top,
.benefit-container .corner.right-bottom {
  right: -1px;
}

.benefit-container .coin {
  position: absolute;
  transition: unset;
}
.benefit-container .benefit-content-wrap {
  display: flex;
  flex-direction: column;
  gap: 60px;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 3;
}

.benefit-container .benefit-content-wrap .st-tit {
  color: var(--Yellow, #fbe734);
}
.benefit-container .benefit-wrap {
  width: 100%;
  display: flex;
  /* justify-content: space-between; */
  justify-content: center;
  align-items: center;

  gap: 20px;
}
.benefit-container .benefit-wrap .benefit {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-direction: column;
  width: 25%;
  max-width: 310px;

  padding: 40px 20px;

  border-radius: 400px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 24px 0 rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(6px);

  aspect-ratio: 1 / 1;
}

.benefit-container .benefit-wrap .benefit:hover {
  background: #FBE734;
}

.benefit-container .benefit-wrap .benefit p {
  word-break: keep-all;
  color: #333;
  text-align: center;
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%; /* 32.5px */
  letter-spacing: -0.5px;
}
.benefit-container .benefit-wrap .benefit span {
  color: var(--Red, #bf2124);
}

.coin {
  position: absolute;
  transform-origin: center center;
  opacity: 1 !important; /* 항상 보이게 설정 (애니메이션에서 조절) */
  will-change: transform; /* 성능 최적화 */
}
/* top은 지우고 가로 위치(left/right)만 남깁니다 */
.coin-1 {
  left: 10%;
  width: 80px;
  z-index: 3;
}
.coin-5 {
  right: 15%;
  width: 90px;
  z-index: 3;
}
.coin-2 {
  right: 20%;
  width: 60px;
  z-index: 2;
}
.coin-9 {
  left: 30%;
  width: 70px;
  z-index: 2;
}
.coin-3 {
  left: 5%;
  width: 40px;
  filter: blur(2px);
  z-index: 1;
}
.coin-6 {
  left: 40%;
  width: 50px;
  filter: blur(1px);
  z-index: 1;
}
.coin-4 {
  right: 5%;
  width: 30px;
  filter: blur(3px);
  z-index: 1;
}
.coin-7 {
  right: 40%;
  width: 35px;
  filter: blur(3px);
  z-index: 1;
}
.coin-10 {
  left: 25%;
  width: 25px;
  filter: blur(4px);
  z-index: 1;
}
.coin-8 {
  left: 60%;
  width: 55px;
  z-index: 2;
}

@media (min-width: 1700px) {
  .st7-img {
    right: 17%;
  }
}

@media (max-width: 1550px) {
  .st2-receipt-price {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .st2-receipt-price .count {
    font-size: 44px;
  }
  .st2-img {
    width: 470px;
  }
  .st4-bar-txt {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
  .st4-bar-txt.after {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  #local-brand .icon-box p,
  .benefit-container .benefit-wrap .benefit p {
    font-size: 21px;
  }
  #local-brand .brand-box .tit-wrap .sub-tit {
    font-size: 36px;
  }
  #local-brand .brand-box .tit-wrap .tit {
    font-size: 50px;
  }
  .benefit-container .benefit-wrap .benefit {
    padding: 20px;
    gap: 20px;
  }
  .benefit-container .benefit-wrap .benefit svg {
    width: 40%;
    height: 40%;
    aspect-ratio: 1 / 1;
  }
}

@media (max-width: 1500px) {
  .main-tit {
    font-size: 56px;
    letter-spacing: -1.12px;
  }
  .main-marquee-container {
    right: 40px;
  }
  .main-marquee .swiper-wrapper {
    gap: 20px;
  }
  .main-marquee img {
    width: 250px;
  }
  .st2-txt {
    font-size: 32px;
    letter-spacing: -0.8px;
  }
  .dash-line.red {
    transform: translateX(-50%) rotate(5deg);
  }
  .dash-line.blue {
    transform: translateX(-50%) rotate(-5deg);
  }
  .st4-wrap {
    gap: 30px;
  }
  .st4-wrap .st4-change-wrap {
    width: calc(64% - 15px);
  }
  .st4-graph-box {
    width: calc(36% - 15px);
  }
  .change-box-tit {
    font-size: 28px;
    letter-spacing: -0.7px;
  }
  .before-txt1 {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .before-txt2 {
    font-size: 32px;
    letter-spacing: -0.8px;
  }
  .before-txt3 {
    font-size: 40px;
    letter-spacing: -1px;
  }
  .pyeong {
    font-size: 28px;
    letter-spacing: -0.7px;
    padding: 6px 24px;
  }
  .after-txt1 {
    font-size: 28px;
    letter-spacing: -0.7px;
  }
  .after-txt1 img {
    width: 96px;
  }
  .after-txt2 {
    font-size: 40px;
    letter-spacing: -1px;
  }
  .st4-graph-box {
    height: 582px;
  }
  .st4-bar-div {
    height: 435px;
  }
  .st4-graph-inner .graph-txt p {
    font-size: 20px;
    letter-spacing: -0.5px;
  }
  .st4-graph-inner .graph-txt p img {
    width: 70px;
  }
  .st4-bar-txt {
    font-size: 16px;
    letter-spacing: -0.4px;
  }
  .st4-bar-txt.after {
    font-size: 20px;
    letter-spacing: -0.5px;
    padding: 6px;
  }
  .st5-cost-box {
    min-width: 787px;
    flex-direction: column;
    gap: 4px;
    border-radius: 50px;
  }
  .st5-cost-box::before {
    border-radius: 50px;
  }
  .st5-cost {
    gap: 6px;
  }
  .st5-txt {
    font-size: 40px;
  }
  .st6-circle {
    width: 40%;
  }
  .st6-content {
    width: 60%;
  }
  .st6-div p {
    font-size: 32px;
    letter-spacing: -0.8px;
  }
  .st6-div img {
    width: 380px;
  }
  .st6-txt {
    font-size: 20px;
    letter-spacing: -0.5px;
  }
  .st10-item {
    font-size: 32px;
    letter-spacing: -0.8px;
  }
  #esg .sub-info {
    font-size: 26px;
    letter-spacing: -.55px;
  }
  .menu-img.left-wrap .signature-menu-name {
    width: 125%;
  }
  .contact-tit-div .contact-num {
    font-size: 64px;
  }
}

@media (max-width: 1350px) {
  .main-marquee-container {
    gap: 20px;
  }
  .main-marquee img {
    width: 220px;
  }
  .st2-txt {
    font-size: 28px;
    letter-spacing: -0.7px;
  }
  .st2-receipt-price {
    font-size: 20px;
    letter-spacing: -0.5px;
  }
  .st2-receipt-price .count {
    font-size: 40px;
  }
  .st7-img {
    width: 420px;
    right: 3%;
  }
  .st7-box-inner {
    width: 650px;
  }
  .contact-tit-div .contact-num {
    font-size: 56px;
  }
  .signature-bg-img {
    width: 220px;
  }
}

@media (max-width: 1280px) {
  .main-container {
    gap: 40px;
    padding-bottom: 40px;
  }
  .main-logo {
    width: 183px;
  }
  .main-tit {
    font-size: 48px;
    letter-spacing: -1.2px;
  }
  .main-txt {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .main-marquee-container {
    right: 30px;
  }
  .main-marquee img {
    width: 200px;
  }
  .st2-receipt-wrap {
    gap: 30px 40px;
  }
  .st2-receipt {
    width: calc(33.3% - 26.6px);
  }
  .st2-cloud.left {
    width: 240px;
  }
  .st2-cloud.right {
    width: 190px;
  }
  .st2-img {
    width: 420px;
  }
  .st2-txt {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .st3-cloud {
    width: 200px;
  }
  .st3-cloud.left {
    left: -50px;
  }
  .st3-item {
    width: 220px;
  }
  .st3-container .dash-line {
    height: 65%;
    width: auto;
    bottom: 60px;
  }
  .dash-line.red {
    transform: translateX(-50%) rotate(8deg);
  }
  .dash-line.blue {
    transform: translateX(-50%) rotate(-8deg);
  }
  .st3-txt {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
  .st4-container {
    max-width: 1000px;
  }
  .st4-wrap {
    flex-direction: column;
    gap: 50px;
  }
  .st4-wrap .st4-change-wrap {
    width: 100%;
  }
  .change-box-tit {
    padding: 20px 8px 6px;
  }
  .change-box-inner {
    padding: 20px;
  }
  .st4-wrap .before-box {
    width: 46%;
  }
  .st4-wrap .after-box {
    width: 54%;
  }
  .st4-graph-box {
    max-width: 700px;
    width: 100%;
  }
  .st4-bar-bubble {
    left: 100px;
  }
  .st4-txt {
    font-size: 28px;
    letter-spacing: -0.7px;
  }
  .before-txt3 {
    font-size: 32px;
    letter-spacing: -0.8px;
  }
  .st4-inner.second .change-box .after-txt2 {
    font-size: 48px;
    letter-spacing: 0.52px;
  }
  .st4-inner.second .before-box .change-box-inner {
    padding: 20px;
  }
  .st5-inner {
    padding: 100px 0;
  }
  .st5-container {
    gap: 20px;
  }
  .st5-item {
    width: calc(33.3% - 13.3px);
  }
  .st5-item-div {
    padding: 20px;
    gap: 12px;
  }
  .st5-item-div .item-num {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
  .st5-item-div .item-tit {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .st5-item-div .item-content {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.4px;
  }
  .st5-cost-box {
    min-width: 700px;
  }
  .st5-cost-box, .st5-cost {
    font-size: 48px;
    letter-spacing: -1.2px;
  }
  .st5-cost .cost-count {
    font-size: 80px;
  }
  .st5-txt {
    font-size: 36px;
  }
  #section6 {
    padding: 80px 40px;
  }
  .st6-div p {
    font-size: 28px;
    letter-spacing: -0.7px;
  }
  .st6-div img {
    width: 290px;
  }
  .st6-txt {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
  .st7-inner {
    gap: 60px;
  }
  .st7-img {
    width: 380px;
  }
  .st7-box .big-br {
    display: block;
  }
  .st7-box p {
    font-size: 28px;
    letter-spacing: -0.7px;
  }
  .review-wrap {
    width: 47%;
  }
  .review-wrap .review-div .review-icon {
    width: 240px;
  }
  .review-swiper .swiper-slide {
    width: 270px !important;
  }
  .review-wrap .phone-frame-div {
    max-width: 280px;
    width: 70%;
  }
  #section9 {
    padding: 100px 0;
  }
  #section10 {
    gap: 90px;
  }
  .st10-box-inner {
    padding: 90px 0 60px;
  }
  .st10-img-div {
    gap: 20px;
  }
  .st10-img-div img {
    width: calc(50% - 10px);
  }
  .st10-item-div {
    gap: 20px;
  }
  .st10-item {
    width: calc(50% - 10px);
    font-size: 28px;
    letter-spacing: -0.7px;
  }
  #local-brand .brand-box .tit-wrap .sub-tit,
  #esg .frame-wrap .frame-box .info-tit {
    font-size: 32px;
  }
  #esg .esg-wrap {
    padding: 100px 0 60px;
  }
  #esg .frame-wrap .num-box p,
  #esg .frame-wrap .frame-box .info-sub {
    font-size: 16px;
  }

  #esg .sub-info {
    font-size: 20px;
  }

  #esg .frame-wrap .frame-box {
    height: 320px;
    padding: 20px;
  }
  #local-brand .brand-box .tit-wrap .tit {
    font-size: 40px;
  }

  #local-brand .icon-box svg {
    width: 45%;
    height: 45%;
  }

  .signature-bg-img {
    width: 180px;
  }
  .marquee-img-wrap img {
    width: 200px;
    height: 200px;
  }

  .menu-title-div {
    gap: 20px;
  }

  .menu-title {
    font-size: 38px;
  }

  .signature-wrap .menu-info .menu-text-wrap .menu-sub-title {
    font-size: 18px;
  }

  .benefit-container .benefit-wrap .benefit {
    padding: 20px;
    gap: 15px;
  }
  .benefit-container .benefit-wrap .benefit svg {
    width: 30%;
    height: 30%;
  }

  #local-brand .icon-box p,
  .benefit-container .benefit-wrap .benefit p {
    font-size: 18px;
  }

  .benefit-container {
    /* padding: 100px 45px; */
    padding: 70px 45px;
  }

  .contact-form {
    padding: 40px 30px;
  }

  .benefit-container .corner {
    width: 40px;
    height: 40px;
  }
  #contact {
    padding: 100px 0;
  }
}

@media (max-width: 1150px) {
  .st2-receipt-price {
    font-size: 18px;
    letter-spacing: -0.45px;
    bottom: 27.5%;
  }
  .st2-receipt-price .count {
    font-size: 32px;
  }
}

@media (max-width: 1100px) {
  #main {
    flex-direction: column;
    gap: 48px;
    min-height: 100vh;
    height: 900px;
  }
  .main-container {
    gap: 30px;
    padding-bottom: 0;
  }
  .main-tit {
    margin-top: -2px;
  }
  .main-marquee-container {
    width: 100%;
    height: fit-content;
    position: static;
    flex-direction: column;
    gap: 15px;
  }
  .main-marquee {
    width: 100%;
    height: fit-content;
  }
  .main-marquee .swiper-wrapper {
    flex-direction: row;
    width: max-content;
    gap: 10px;
  }
  .left-marquee .swiper-wrapper {
    animation: marquee-scroll 13s linear infinite;
  }
  .right-marquee .swiper-wrapper {
    animation: marquee-scroll2 16s linear infinite;
  }
  .benefit-container .benefit-wrap .benefit p {
    font-size: 16px;
  }
}

@media (max-width: 1024px) {
  #main {
    border-top: none;
    border-bottom: none;
  }
  .st2-receipt-wrap {
    gap: 20px 30px;
  }
  .st2-receipt {
    width: calc(33.3% - 20px);
  }
  .st2-cloud.left {
    width: 180px;
  }
  .st2-cloud.right {
    width: 140px;
    right: -20px;
  }
  .st2-img {
    width: 350px;
  }
  .st2-receipt-price {
    font-size: 16px;
    letter-spacing: -0.4px;
    bottom: 27.5%;
  }
  .st2-receipt-price .count {
    font-size: 28px;
  }
  .st3-item {
    width: 190px;
  }
  .st3-container {
    height: 430px;
  }
  .st3-container .dash-line {
    height: 50%;
    bottom: 100px;
  }
  .st5-item {
    width: calc(50% - 10px);
  }
  .st5-txt {
    font-size: 32px;
  }
  .st6-inner {
    padding: 15px;
  }
  .st6-wrap {
    width: 100%;
    flex-direction: column;
    align-self: initial;
  }
  .st6-circle,
  .st6-content {
    width: 100%;
  }
  .st6-circle {
    aspect-ratio: 1 / 0.8;
  }
  .st6-content,
  .st6-div {
    align-items: center;
  }
  .st6-img.pc {
    display: none;
  }
  .st6-img.mobile {
    display: block;
  }
  .st6-content {
    padding: 40px 20px 50px;
  }
  .st6-txt {
    align-items: center;
    text-align: center;
  }
  .st6-txt br {
    display: block;
  }
  .st7-box {
    padding: 0 20px;
    align-items: center;
    gap: 30px;
  }
  .st7-box p {
    text-align: center;
  }
  .st7-img {
    position: static;
    max-width: 500px;
    width: 70%;
  }
  .st7-inner {
    padding: 100px 0 0;
  }
  .st7-container {
    flex-direction: column;
    gap: 5px;
  }
  .review-wrap {
    width: 55%;
  }
  .review-wrap .review-div .review-icon {
    width: 180px;
  }
  .review-swiper .swiper-slide {
    width: 240px !important;
  }
  #section9 {
    padding: 80px 0;
    gap: 50px;
  }
  .st9-container,
  .media-swiper {
    width: 100%;
  }
  .nav-wrap {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .st10-bg-img {
    width: 320px;
  }
  .st10-bg-img.second {
    bottom: 44%;
  }
  .st10-bg-img.third {
    width: 300px;
    left: -80px;
  }
  .st10-box {
    padding: 7.5px;
  }
  .st10-box-container {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .st10-item {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .flex-input {
    gap: 24px;
  }

  #local-brand .brand-box .tit-wrap .sub-tit,
  #esg .frame-wrap .frame-box .info-tit {
    font-size: 26px;
  }

  #esg .frame-wrap .frame-box {
    height: 278px;
    padding: 20px;
  }

  #esg .frame-wrap .num-box p,
  #esg .frame-wrap .frame-box .info-sub {
    font-size: 13px;
  }

  #esg .sub-info {
    font-size: 18px;
  }

  #local-brand .icon-box p {
    font-size: 14px;
  }

  #local-brand .icon-box svg {
    width: 40%;
    height: 40%;
  }

  #local-brand .brand-box .tit-wrap .tit {
    word-break: keep-all;
  }

  .signature-wrap .menu-info .menu-text-title {
    font-size: 22px;
  }
  .menu-title {
    font-size: 30px;
  }
  .menu-title span {
    height: 50px;
    width: 6px;
  }
  .signature-wrap .menu-info .menu-text-wrap .menu-sub-title {
    font-size: 14px;
  }

  #signature .fixed {
    width: 40%;
  }
  .signature-bg-img {
    width: 150px;
  }
  .signature-bg-img.left {
    left: 20px;
  }
  .signature-bg-img.right {
    right: 20px;
  }
  .signature-wrap {
    padding: 80px 0;
    gap: 35px;
  }

  .marquee-wrap {
    padding: 10px 0;
  }
  .marquee-img-wrap {
    padding: 20px 0;
  }

  .marquee-track > span {
    font-size: 18px;
  }
  .marquee-img-wrap img {
    width: 150px;
    height: 150px;
  }

  #cost .cost-table .highlight span:nth-child(1),
  #cost .cost-table .highlight span:nth-child(2),
  #cost .cost-table {
    font-size: 16px;
  }

  #cost .notes {
    font-size: 14px;
  }
  #cost .cost-table .waiver {
    width: 170px;
    top: -35px;
  }

  #cost .cost-table .category {
    width: 90px;
  }

  #cost .cost-table th,
  #cost .cost-table td,
  #cost .cost-table .category,
  #cost .cost-table tbody td {
    padding: 7px 6px;
  }

  #cost .cost-table thead tr th:nth-child(2) {
    width: 150px;
  }

  #cost .cost-table thead tr th:nth-child(3) {
    width: 80px;
  }

  #cost .cost-table th {
    font-size: 18px !important;
  }

  #cost .limited-wrap .limited-box {
    font-size: 25px;
  }
  #cost .limited-wrap .limited-tit {
    font-size: 33px;
  }
  .cost-container .progress-text {
    font-size: 20px;
  }

  .benefit-container {
    padding: 70px 25px;
  }
  .benefit-container .benefit-wrap .benefit {
    padding: 10px;
  }
  .benefit-container .benefit-content-wrap {
    gap: 40px;
  }

  .benefit-container .benefit-wrap .benefit p {
    font-size: 12px;
  }

  .contact-form {
    padding: 30px;
  }
}

@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: 800px;
  }
  .main-logo {
    width: 153px;
  }
  .main-txt {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
  .st2-inner {
    gap: 50px;
  }
  .st2-receipt {
    width: calc(45% - 20px);
  }
  .st2-receipt-price {
    font-size: 20px;
    letter-spacing: -0.5px;
    bottom: 26.5%;
  }
  .st2-receipt-price .count {
    font-size: 36px;
  }
  .st2-img {
    bottom: 18% !important;
    width: 300px;
  }
  .st2-img.left {
    left: -16%;
  }
  .st2-img.right {
    right: -18%;
  }
  .text-marquee-swiper {
    padding: 10px 0;
  }
  .text-marquee-swiper .swiper-wrapper {
    gap: 16px;
  }
  .marquee-txt {
    font-size: 18px;
    letter-spacing: -0.45px;
    gap: 16px;
  }
  .marquee-txt img {
    width: 25px;
  }
  .st3-container {
    height: 350px;
  }
  .st3-item {
    width: 160px;
  }
  .st3-container .dash-line {
    height: 55%;
    bottom: 60px;
  }
  .dash-line.red {
    transform: translateX(-50%) rotate(5deg);
  }
  .dash-line.blue {
    transform: translateX(-50%) rotate(-5deg);
  }
  .st3-txt {
    font-size: 16px;
    letter-spacing: -0.4px;
    padding: 15px;
    border-radius: 12px;
  }
  .st4-inner {
    gap: 50px;
  }
  .st4-wrap {
    gap: 40px;
  }
  .change-box-tit {
    font-size: 24px !important;
    letter-spacing: -0.6px !important;
  }
  .change-box-inner {
    gap: 12px;
  }
  .after-box .change-box-inner {
    gap: 16px;
  }
  .before-txt1 {
    font-size: 20px;
    letter-spacing: -0.5px;
  }
  .before-txt2 {
    font-size: 28px;
    letter-spacing: -0.7px;
  }
  .before-txt3 {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .pyeong {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .after-txt1 {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .after-txt1 img {
    width: 85px;
  }
  .after-txt2 {
    font-size: 32px;
    letter-spacing: -0.8px;
  }
  .st4-graph-inner .graph-txt p {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
  .st4-graph-inner .graph-txt p.primary {
    gap: 4px;
  }
  .st4-graph-inner .graph-txt p img {
    width: 58px;
  }
  .st4-txt {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .st4-inner.second .change-box .after-txt2 {
    font-size: 40px;
    letter-spacing: 0.47px;
  }
  .st5-inner {
    padding: 80px 0;
  }
  .st5-bg-icon {
    width: 155px;
    top: -46px;
  }
  .st5-bg-icon.left {
    left: 15px;
  }
  .st5-bg-icon.right {
    right: 15px;
  }
  .st5-cost-box {
    min-width: 546px;
  }
  .st5-cost-box {
    padding: 15px 20px;
    border-radius: 24px;
  }
  .st5-cost-box::before {
    border-radius: 24px;
  }
  .st5-cost-box, .st5-cost {
    font-size: 40px;
    letter-spacing: -1px;
  }
  .st5-cost .cost-count {
    font-size: 64px;
  }
  .st5-wrap {
    gap: 15px;
  }
  .st5-txt {
    font-size: 28px;
    margin-top: -26px;
    text-align: center;
  }
  #section6 {
    padding: 80px 20px;
  }
  .roof {
    width: 150%;
  }
  .st7-inner {
    padding: 80px 0 0;
    gap: 50px;
  }
  #section10 {
    gap: 80px;
  }
  .st10-box-inner {
    padding: 80px 0 60px;
    gap: 50px;
  }
  .st10-box {
    padding: 6px 12px;
  }
  .st10-box-container {
    gap: 20px;
  }
  .st10-item-div {
    gap: 12px;
  }
  .st10-item {
    width: calc(50% - 6px);
    font-size: 20px;
    letter-spacing: -0.5px;
  }
  #esg .esg-wrap {
    padding: 80px 0;
  }
  .menu-title {
    width: 350px;
  }
  #local-brand .brand-wrap .brand-box {
    padding: 80px 0 50px;
  }
  #local-brand .brand-box .tit-wrap {
    margin-bottom: 0;
  }
  #cost .cost-container {
    padding-top: 80px;
  }
  .cost-table-wrap .pc {
    display: revert !important;
  }
  .cost-table-wrap .mobile {
    display: none;
  }

  .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;
  }
  #contact {
    padding: 80px 0;
    gap: 50px;
  }
  .contact-tit-div .contact-num {
    font-size: 48px;
  }
}

@media (max-width: 768px) {
  .layer-popup {
    position: fixed;
    top: 5%;
    left: 5%;
  }
  #section2 {
    gap: 40px;
  }
  .st2-cloud,
  .st3-cloud {
    display: none;
  }
  .st2-container {
    gap: 20px;
  }
  .st2-receipt {
    width: calc(50% - 20px);
  }
  .st3-container {
    width: 95%;
    height: 300px;
  }
  .st3-item {
    width: 140px;
  }
  .st3-container .dash-line {
    height: 65%;
    bottom: 40px;
  }
  .st4-inner {
    gap: 40px;
  }
  .st4-container {
    width: 93%;
  }
  .st4-wrap {
    gap: 24px;
  }
  .st4-inner.second .change-box .after-txt2 {
    font-size: 32px;
    letter-spacing: 0.42px;
  }
  .st5-inner {
    padding: 70px 0;
    gap: 40px;
  }
  .st5-wrap {
    gap: 10px;
  }
  .st5-txt {
    margin-top: -16px;
  }
  .st5-container {
    width: 95%;
  }
  .st7-inner {
    padding: 70px 0 0;
    gap: 40px;
  }
  .st7-box p {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .st7-container {
    width: 95%;
  }
  #section9 {
    padding: 70px 0;
    gap: 40px;
  }
  #section10 {
    gap: 70px;
  }
  .st10-box {
    width: 95%;
  }
  .st10-img-div {
    gap: 6px;
  }
  .st10-img-div img {
    width: calc(50% - 3px);
  }
  .st10-box-inner {
    padding: 70px 0 50px;
    gap: 40px;
  }
  .st10-item {
    width: 100%;
    font-size: 22.8px;
    line-height: 145%; /* 33.06px */
    letter-spacing: -0.57px;
  }
  .marquee-track > span {
    font-size: 15px;
    letter-spacing: -0.3px;
  }

  .marquee-img-track {
    gap: 10px;
  }

  .marquee-img-wrap img {
    width: 100px;
    height: 100px;
    border-radius: 4px;
  }

  #signature .fixed {
    width: 40%;
  }
  .signature-bg-img {
    display: none;
  }
  #signature .fixed {
    bottom: -20px;
    right: -20px;
  }
  #local-brand .brand-wrap {
    padding: 10px;
  }
  #local-brand .brand-wrap .brand-box {
    padding: 70px 0 40px;
  }
  #local-brand .brand-wrap .roof {
    width: auto;
    height: 40px;
  }
  #local-brand .icon-box p {
    font-size: 16px;
  }
  #local-brand .brand-box .tit-wrap .sub-tit {
    font-size: 20px;
  }
  #local-brand .brand-box .tit-wrap .tit {
    font-size: 30px;
  }
  #local-brand .icon-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
  }
  #local-brand .icon-box {
    width: 100%;
  }

  /* 마지막 아이콘만 2칸 차지 + 가운데 */
  #local-brand .icon-wrap .icon-box:last-child {
    grid-column: 1 / -1;
    justify-self: center;
    width: 50%;
  }

  .signature-wrap .menu-info {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .signature-wrap .menu-info .menu-img {
    width: 100%;
  }
  .signature-wrap .menu-info .menu-text-wrap {
    padding: 20px 10px 25px;
    gap: 7.5px;
  }
  .signature-wrap .menu-info .menu-text-title svg {
    width: 20px;
    height: 20px;

    aspect-ratio: 1/1;
  }

  .signature-wrap {
    padding: 70px 0;
    gap: 40px;
  }

  .menu-title {
    font-size: 24px;
    padding: 10px 0;
  }
  .menu-title span {
    height: 38px;
    width: 5px;
  }
  #esg .esg-wrap {
    padding: 70px 0;
    gap: 40px;
  }
  #esg .sub-info {
    font-size: 16px;
  }

  #esg .frame-wrap {
    flex-direction: column;
  }
  #esg .frame-box {
    /* height: 300px; */
    width: 100%;
  }
  #esg .frame-wrap .frame-box {
    height: 300px;
    padding: 20px;
    flex: none;
    width: 100%;
  }

  #esg .frame-wrap .num-box p {
    font-size: 20px;
  }
  #esg .frame-wrap .frame-box .info-sub {
    font-size: 18px;
  }

  #esg .frame-wrap .frame-box .info-tit {
    font-size: 32px;
  }
  #esg .esg-wrap {
    padding: 70px 0;
    gap: 40px;
  }

  .marquee-img-wrap img {
    width: 100px;
    height: 100px;
  }
  .cost-table-wrap .pc {
    display: none !important;
  }
  .cost-table-wrap .mobile {
    display: revert !important;
  }

  #cost .cost-table .highlight span:nth-child(1),
  #cost .cost-table .highlight span:nth-child(2),
  #cost .cost-table {
    font-size: 12px;
    line-height: 18px;
    letter-spacing: -0.3px;
  }
  #cost .cost-table thead tr th:nth-child(2) {
    width: 150px;
  }
  #cost .cost-table thead tr th:nth-child(3) {
    width: 180px;
  }
  #cost .cost-table tbody td strong {
    display: inline;
  }
  #cost .cost-table .waiver {
    width: 120px;
    top: -26px;
    left: 40px;
  }

  #cost .cost-table .bold {
    font-size: 14px;
    font-weight: 700;
    line-height: 24px; /* 171.429% */
    letter-spacing: -0.35px;
  }
  #cost .notes {
    font-size: 12px;
    line-height: 130%; /* 15.6px */
    letter-spacing: -0.3px;
  }

  #cost .cost-table .category {
    width: 74px;
  }

  #cost .cost-table th {
    font-size: 12px !important;
  }

  #cost .limited-wrap .limited-box {
    font-size: 18px;
  }
  #cost .limited-wrap .limited-tit,
  .cost-container .progress-text {
    font-size: 22px;
  }

  #cost .cost-container {
    padding-top: 70px;
    gap: 40px;
  }

  #cost .cost-container,
  .benefit-container {
    padding-top: 70px;
  }

  #cost .limited-wrap .limited-box {
    font-size: 18px;
  }

  .benefit-container .corner {
    width: 20px;
    height: 20px;
  }

  .benefit-container {
    padding: 70px 30px;
  }
  .benefit-container .benefit-wrap .benefit p {
    font-size: 13px;
  }
  .benefit-container .benefit-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .benefit-container .benefit-wrap .benefit {
    width: 100%;
  }

  .layer-popup {
    position: fixed;
    top: 5%;
    left: 5%;
  }

  .flex-input {
    gap: 30px;
  }

  .contact-form-wrap {
    padding: 10px;
  }

  #contact {
    background:
      radial-gradient(85.67% 50% at 50% 40.96%, rgba(17, 17, 17, 0.5) 42.45%, #111 100%),
      url("../img/contact-bg.png") 50% / cover no-repeat,
      #111;
    padding: 70px 0;
    gap: 40px;
  }
  #contact .mo-wave {
    display: flex;
  }
  #contact .wave {
    display: none;
  }
}

@media (max-width: 650px) {
  #main {
    border-width: 10px;
  }
  .main-logo {
    width: 123px;
  }
  .main-tit {
    font-size: 40px;
    letter-spacing: -1px;
  }
  .main-txt {
    font-size: 16px;
    letter-spacing: -0.4px;
  }
  .main-marquee img {
    width: 170px;
    border-radius: 6px;
  }
  .left-marquee .swiper-wrapper {
    animation: marquee-scroll 10s linear infinite;
  }
  .right-marquee .swiper-wrapper {
    animation: marquee-scroll2 13s linear infinite;
  }
  .st2-container {
    width: 95%;
  }
  .st2-receipt-wrap {
    gap: 16px 12px;
  }
  .st2-receipt {
    width: calc(50% - 6px);
  }
  .st2-receipt-price {
    padding: 0 2.824px;
  }
  .st2-img {
    bottom: 23% !important;
    width: 250px;
  }
  .st2-container > p {
    font-size: 14px;
    letter-spacing: -0.35px;
  }
  .st2-txt {
    font-size: 20px;
    letter-spacing: -0.5px;
  }
  .text-marquee-swiper {
    padding: 10px 0;
  }
  .marquee-txt {
    font-size: 15px;
    letter-spacing: -0px;
  }
  .marquee-txt img {
    width: 22px;
  }
  .st3-container {
    width: 95%;
    height: auto;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    justify-content: center;
  }
  .st3-container .dash-line {
    display: none;
  }
  .st3-item-wrap {
    width: calc(50% - 8px);
    margin-top: 14px;
    gap: 16px;
  }
  .st3-item-wrap:first-child {
    order: 2;
    align-items: flex-end;
  }
  .st3-item-wrap:nth-child(2) {
    order: 3;
    align-items: flex-start;
  }
  .st3-item {
    width: 80%;
  }
  .piechart-div {
    width: 90%;
    position: relative;
    transform: none;
    top: 0;
    left: 0;
    order: 1;
    margin: 0 auto;
  }
  .st3-txt {
    font-size: 14px;
    letter-spacing: -0.35px;
    padding: 10px;
    border-radius: 8px;
    margin-top: -20px;
    background: none;
  }
  .pc-wave {
    display: none;
  }
  .mo-wave {
    display: block;
    bottom: 0;
  }
  .before-box {
    width: 50% !important;
    border-radius: 8px 0 0 8px;
  }
  .after-box {
    width: 50% !important;
    border-radius: 8px;
  }
  .change-box-tit {
    font-size: 20px !important;
    letter-spacing: -0.5px !important;
    padding: 12px 8px 4px 8px;
  }
  .change-box-inner {
    padding: 12px 8px !important;
    gap: 6.4px;
  }
  .after-box .change-box-inner {
    gap: 8px;
  }
  .st4-img {
    border-radius: 4px;
    border-width: 0.4px;
  }
  .before-txt1 {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
  .before-txt2 {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .before-txt3 {
    font-size: 20px;
    letter-spacing: -0.5px;
  }
  .pyeong {
    font-size: 20px;
    letter-spacing: -0.5px;
    padding: 3.2px 12.8px;
  }
  .after-txt1 {
    font-size: 20px;
    letter-spacing: -0.5px;
    gap: 4px;
  }
  .after-txt1 img {
    width: 72px;
  }
  .after-txt2 {
    font-size: 28px !important;
    letter-spacing: -0.7px !important;
  }
  .st4-graph-box {
    border-radius: 11.228px;
    padding: 18.713px 14.035px;
    height: auto;
  }
  .st4-bar-div {
    height: auto;
  }
  .st4-bar img {
    max-width: 100px;
  }
  .st4-con-txt {
    font-size: 14px;
    letter-spacing: -0.35px;
  }
  .mo-bar {
    display: block;
  }
  .pc-bar {
    display: none;
  }
  .st4-bar-bubble {
    width: 190px;
    left: 17%;
  }
  .st4-txt {
    font-size: 20px;
    letter-spacing: -0.5px;
  }
  .st5-bg-icon {
    width: 125px;
    top: -36px;
  }
  .st5-bg-icon.left {
    left: 0;
  }
  .st5-bg-icon.right {
    right: 0;
  }
  .st5-container {
    gap: 12px;
  }
  .st5-item {
    width: 100%;
    flex-direction: row;
    align-items: stretch;
    border-radius: 6px;
  }
  .st5-item img {
    width: 45%;
    object-fit: cover;
  }
  .st5-item-div {
    width: 55%;
    gap: 8px;
    justify-content: center;
  }
  .st5-cost-box::before {
    padding: 2px;
  }
  .st5-cost-box {
    min-width: 416px;
  }
  .st5-cost-box, .st5-cost {
    font-size: 32px;
    letter-spacing: -0.8px;
  }
  .st5-cost .cost-count {
    font-size: 48px;
    padding: 4px 8px;
    border-radius: 6px;
    border-width: 0.5px;
  }
  .st5-txt {
    font-size: 24px;
  }
  #section6 {
    padding: 80px 10px;
  }
  .st6-inner {
    padding: 10px;
  }
  .st6-circle {
    aspect-ratio: 1 / 1;
  }
  .st6-div p {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .st6-div img {
    width: 267px;
  }
  .st6-txt {
    align-items: flex-start;
    text-align: left;
    font-size: 16px;
    letter-spacing: -0.4px;
  }
  .st6-txt br {
    display: none;
  }
  .st7-box {
    width: 100%;
    gap: 24px;
    align-items: flex-start;
  }
  .st7-box p {
    font-size: 20px;
    letter-spacing: -0.5px;
    text-align: left;
  }
  #section7 .st-tit {
    white-space: nowrap;
  }
  .review-wrap {
    width: 65%;
    padding: 0 16px;
  }
  .review-swiper-container {
    gap: 8px;
  }
  .review-wrap .phone-frame-div {
    width: 100%;
  }
  #section9 {
    padding: 70px 0 140px;
  }
  .nav-btn {
    width: 40px;
  }
  .nav-btn svg {
    width: 24px;
    height: 24px;
  }
  .st9-img.br {
    width: 45%;
    bottom: -10%;
    right: -6%;
  }
  .st10-bg-img {
    width: 220px;
  }
  .st10-bg-img.first {
    left: -21px;
    top: -45px;
  }
  .st10-bg-img.third {
    width: 210px;
    left: -50px;
    bottom: -15px;
  }
  .st10-box:first-of-type .st10-box-inner {
    background-attachment: unset;
  }
  .st10-img-div img {
    border-radius: 6px;
    border-width: 0.5px;
  }
  .st10-item {
    border-radius: 7.2px;
    padding: 6px;
  }
  .signature-wrap .menu-img-wrap {
    width: 90%;
  }
  .signature-wrap .menu-img-wrap .menu-info {
    width: 85%;
  }
  .menu-title {
    width: 300px;
  }
  .menu-title-div {
    width: 100%;
    gap: 15px;
  }
  .menu-title-div .menu-title {
    width: calc(50% - 7.5px);
  }
  #contact {
    background-attachment: unset;
    background-position: top center !important;
  }
  .contact-form {
    padding: 20px;
  }
  .flex-input {
    flex-wrap: wrap;
  }
  .form-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .c-btn {
    width: 100%;
  }
  .contact-tit-div .contact-num {
    font-size: 32px;
  }
}

@media (max-width: 550px) {
  .st2-receipt-price {
    font-size: 16px;
    letter-spacing: -0.4px;
  }
  .st2-receipt-price .count {
    font-size: 30px;
  }
  .st5-item img {
    width: 40%;
  }
  .st5-item-div {
    width: 60%;
  }
}

@media (max-width: 480px) {
  .main-logo {
    width: 106px;
  }
  .main-tit {
    font-size: 32px;
    letter-spacing: -0.8px;
  }
  .main-txt {
    font-size: 14px;
    letter-spacing: -0.35px;
  }
  .main-marquee img {
    width: 135px;
  }
  .st2-receipt-price {
    font-size: 14px;
    letter-spacing: -0.35px;
  }
  .st2-receipt-price .count {
    font-size: 26px;
  }
  .st2-txt {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
  .st2-img {
    width: 200px;
  }
  .change-box-tit {
    font-size: 18px !important;
    letter-spacing: -0.45px !important;
  }
  .before-box {
    border-radius: 4.8px 0 0 4.8px;
  }
  .after-box {
    border-radius: 4.8px;
  }
  .before-txt1 {
    font-size: 16px;
    letter-spacing: -0.4px;
  }
  .before-txt2 {
    font-size: 20px;
    letter-spacing: -0.5px;
  }
  .before-txt3 {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
  .pyeong {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
  .after-txt1 {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
  .after-txt1 img {
    width: 60px;
  }
  .after-txt2 {
    font-size: 24px !important;
    letter-spacing: -0.6px !important;
  }
  .st4-bar img {
    max-width: 90px;
  }
  .st4-con-txt {
    font-size: 12px;
    letter-spacing: -0.3px;
  }
  .st4-bar-bubble {
    width: 190px;
    left: 3%;
    top: 0;
  }
  .st4-txt {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
  .st5-bg-icon {
    width: 110px;
    top: -32px;
  }
  .st5-item-div {
    padding: 12px;
  }
  .st5-item-div .item-num {
    font-size: 14px;
    letter-spacing: -0.35px;
  }
  .st5-item-div .item-tit {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
  .st5-item-div .item-content {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.35px;
  }
  .st5-item-div .item-content br {
    display: none;
  }
  .st5-cost-box {
    min-width: 360px;
  }
  .st5-cost-box, .st5-cost {
    font-size: 28px;
    letter-spacing: -0.7px;
  }
  .st5-cost .cost-count {
    font-size: 40px;
  }
  .st5-txt {
    font-size: 20px;
  }
  .st6-container {
    padding: 60px 0;
  }
  .st7-box p {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
  .review-wrap .review-div .st-tit .primary {
    font-size: 40px;
    letter-spacing: -1px;
    display: inline-block;
    margin-top: 5%;
  }
  .review-wrap {
    width: 60%;
  }
  .review-wrap .phone-frame-div {
    margin-bottom: -15%;
  }
  .review-swiper .swiper-slide {
    width: 220px !important;
  }
  .st10-bg-img {
    width: 180px;
  }
  .st10-bg-img.first {
    left: -21px;
    top: -45px;
  }
  .st10-bg-img.second {
    right: -40px;
    bottom: 46%;
  }
  .st10-bg-img.third {
    width: 170px;
    left: -35px;
    bottom: -15px;
  }
  .signature-wrap .menu-info .menu-text-wrap {
    padding: 14px 10px 19px;
  }

  #local-brand .icon-box p {
    font-size: 12px;
    letter-spacing: -0.3px;
  }
  #local-brand .brand-wrap .roof {
    height: 20px;
  }

  #local-brand .brand-box .tit-wrap .sub-tit {
    font-size: 16px;
  }
  #local-brand .brand-box .tit-wrap .tit {
    font-size: 28px;
  }

  #cost .cost-table th,
  #cost .cost-table td,
  #cost .cost-table .category,
  #cost .cost-table tbody td {
    padding: 5px 4px;
  }

  #cost .cost-table thead tr th:nth-child(2) {
    width: auto;
  }
  #cost .cost-table thead tr th:nth-child(3),
  #cost .cost-table thead tr th:nth-child(4) {
    width: 22%;
  }
  #cost .cost-table .category {
    width: 50px;
  }

  #cost .limited-wrap .limited-box {
    font-size: 16px;
  }
  #cost .limited-wrap .limited-tit,
  .cost-container .progress-text {
    font-size: 20px;
  }

  #cost .cost-table .waiver {
    width: 77px;
    top: -11px;
    left: 28px;
  }
  #cost .cost-container,
  .benefit-container {
    width: 100%;
  }
  .benefit-container {
    padding: 70px 7px;
  }

  .benefit-container .benefit-wrap .benefit {
    padding: 20.645px 10.323px;
  }
  .benefit-container .benefit-wrap .benefit svg {
    width: 47.484px;
    height: 46.452px;
  }
  .benefit-container .benefit-wrap .benefit p {
    font-size: 12.903px;
    letter-spacing: -0.258px;
  }

  .benefit-container .benefit-wrap .benefit p {
    font-size: 12px;
  }

  .contact-form {
    padding: 12px;
  }
}

@media(max-width: 440px) {
  .review-swiper .swiper-slide {
    width: 210px !important;
  }
  .review-wrap .phone-frame-div {
    border-radius: 34px 34px 0 0;
  }
}

@media (max-width: 400px) {
  .main-tit {
    font-size: 28px;
    letter-spacing: -0.7px;
  }
  .main-marquee img {
    width: 100px;
  }
  .st2-receipt-price {
    font-size: 13.176px;
    letter-spacing: -0.325px;
  }
  .st2-receipt-price .count {
    font-size: 22px;
  }
  .st2-container > p {
    font-size: 12px;
    letter-spacing: -0.3px;
  }
  .st2-txt {
    font-size: 16px;
    letter-spacing: -0.4px;
  }
  .st2-img {
    width: 160px;
    bottom: 26% !important;
  }
  .change-box-tit {
    font-size: 14px !important;
    letter-spacing: -0.35px !important;
  }
  .before-txt1 {
    font-size: 12px;
    letter-spacing: -0.3px;
  }
  .before-txt2 {
    font-size: 16px;
    letter-spacing: -0.4px;
  }
  .before-txt3 {
    font-size: 14px;
    letter-spacing: -0.35px;
  }
  .pyeong {
    font-size: 14px;
    letter-spacing: -0.35px;
  }
  .after-txt1 {
    font-size: 14px;
    letter-spacing: -0.35px;
  }
  .after-txt1 img {
    width: 42px;
  }
  .after-txt2 {
    font-size: 20px !important;
    letter-spacing: -0.5px !important;
  }
  .st4-graph-inner .graph-txt p {
    font-size: 16px;
    letter-spacing: -0.4px;
  }
  .st4-bar img {
    max-width: 80px;
  }
  .st4-txt {
    font-size: 16px;
    letter-spacing: -0.4px;
  }
  .st4-bar-bubble {
    width: 165px;
  }
  .st4-bar-txt {
    font-size: 16px;
    letter-spacing: -0.4px;
  }
  .st4-bar-txt.after {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
  .st5-item-div .item-num {
    font-size: 12px;
    letter-spacing: -0.3px;
  }
  .st5-item-div .item-tit {
    font-size: 16px;
    letter-spacing: -0.4px;
  }
  .st5-item-div .item-content {
    font-size: 13px;
    line-height: 140%;
    letter-spacing: -0.325px;
  }
  .st5-cost-box {
    min-width: 334px;
  }
  .st5-cost .cost-count {
    font-size: 36px;
  }
  .st5-txt {
    font-size: 18px;
  }
  .st6-container {
    padding: 50px 0;
  }
  .review-swiper .swiper-slide {
    width: 200px !important;
  }
  .st10-bg-img {
    width: 140px;
  }
  .st10-bg-img.first {
    left: -11px;
    top: -35px;
  }
  .st10-bg-img.second {
    right: 10px;
    bottom: 47%;
  }
  .st10-bg-img.third {
    width: 150px;
    left: -20px;
    bottom: -5px;
  }
  .contact-tit-div .contact-num {
    font-size: 24px;
  }
}

@media(max-width: 380px) {
  .st10-item {
    font-size: 20px;
    letter-spacing: -0.5px;
  }
}

@media (max-width: 370px) {
  .st2-receipt-price {
    font-size: 13.176px;
    letter-spacing: -0.325px;
  }
  .st2-receipt-price .count {
    font-size: 20px;
  }
  .st2-img {
    bottom: 32% !important;
  }
  .st3-item {
    width: 85%;
  }
  .st5-cost-box {
    min-width: 293px;
  }
  .st5-cost-box {
    padding: 12px 15px;
    border-radius: 12px;
  }
  .st5-cost-box::before {
    border-radius: 12px;
  }
  .st5-cost-box, .st5-cost {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .st5-cost .cost-count {
    font-size: 32px;
  }
  .st5-txt {
    font-size: 16px;
  }
  .st6-div p {
    font-size: 20px;
    letter-spacing: -0.5px;
    border-radius: 24px;
  }
  .st6-div img {
    width: 237px;
  }
  .st6-txt {
    gap: 16px;
    font-size: 14px;
    letter-spacing: -0.35px;
  }
  .review-wrap {
    width: 65%;
  }
  .review-wrap .phone-frame-div {
    margin-bottom: -35%;
  }
  .review-swiper .swiper-slide {
    width: 185px !important;
  }
  .review-wrap .phone-frame-div {
    border-radius: 32px 32px 0 0;
  }
  .xxxs-none {
    display: none;
  }
  .menu-title {
    width: 250px;
    font-size: 20px;
    letter-spacing: -0.5px;
  }
}

@media (max-width: 350px) {
  .st5-item-div {
    gap: 6px;
  }
  .st5-item-div .item-num {
    font-size: 11px;
    letter-spacing: -0.275px;
  }
  .st5-item-div .item-tit {
    font-size: 14px;
    letter-spacing: -0.35px;
  }
  .st5-item-div .item-content {
    font-size: 12px;
    letter-spacing: -0.3px;
  }
  .st5-cost-box {
    min-width: 262px;
  }
  .st5-cost-box, .st5-cost {
    font-size: 20px;
    letter-spacing: -0.5px;
  }
  .st5-cost .cost-count {
    font-size: 28px;
  }
  .review-wrap .phone-frame-div {
    border-radius: 30px 30px 0 0;
  }
}

@media (max-width: 330px) {
  .st2-receipt-price {
    font-size: 12px;
    letter-spacing: -0.3px;
  }
  .st2-receipt-price .count {
    font-size: 18px;
  }
  .change-box-tit,
  .before-txt3,
  .pyeong,
  .after-txt1 {
    font-size: 12px !important;
    letter-spacing: -0.3px !important;
  }
  .before-txt1 {
    font-size: 11px;
    letter-spacing: -0.275px;
  }
  .before-txt2 {
    font-size: 14px;
    letter-spacing: -0.35px;
  }
  .after-txt1 img {
    width: 34px;
  }
  .after-txt2 {
    font-size: 18px !important;
    letter-spacing: -0.45px !important;
  }
  .st4-bar img {
    max-width: 70px;
  }
  .st4-bar-bubble {
    width: 170px;
    left: 1%;
  }
  .st4-graph-inner .graph-txt p {
    font-size: 14px;
    letter-spacing: -0.35px;
  }
  .st4-graph-inner .graph-txt p img {
    width: 50px;
  }
  .review-wrap .review-div .review-icon {
    width: 160px;
  }
  .review-swiper .swiper-slide {
    width: 175px !important;
  }
  .review-wrap .phone-frame-div {
    border-radius: 28px 28px 0 0;
  }
}
