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

.mobile {
  display: none;
}

.layer-popup {
  /* position: absolute; */
  z-index: 9999;
  background-color: #fff;
  box-shadow: 2px 3px 10px #555;
  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;
}


/* main */
#main {
  width: 100%;
  height: 100vh;
  min-height: 900px;
  background: url(../img/main-bg.png);
  background-position: center center !important;
  background-size: cover !important;
  position: relative;
  padding-top: 7%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow: hidden;
}

.main-flag {
  width: 200px;
  position: absolute;
  top: 13%;
  left: 40px;
  z-index: 3;
}

.main-flag2 {
  width: 210px;
  position: absolute;
  bottom: 13%;
  left: 78px;
  z-index: 3;
}

.main-txt {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.main-txt .st-sub-tit {
  display: flex;
  align-items: center;
  gap: 12px;
}

.wide {
  animation: wide 0.8s linear forwards;
  -webkit-animation: wide 0.8s linear forwards;
}

@keyframes wide {
  0% {
    clip-path: inset(0 100%);
  }
  100% {
    clip-path: inset(0 0);
  }
}

.main-tit {
  color: #FFF;
  text-align: center;
  text-shadow: 0 0 12px #EE2C28;
  -webkit-text-stroke-width: 3px;
  -webkit-text-stroke-color: #F00;
  font-family: "MBC 1961";
  font-size: 98px;
  font-weight: 400;
  line-height: 140%; /* 137.2px */
  letter-spacing: -2.45px;
  z-index: 10;
  paint-order: stroke fill;
}

.main-tit span {
  color: #F00;
  text-shadow: 0 0 12px #FFF;
  -webkit-text-stroke-color: #FFF;
  font-size: 120px;
  letter-spacing: -3px;
}

.main-img-container {
  width: 1044px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -22%;
}

.main-badge-div {
  width: 208px;
  position: absolute;
  right: -150px;
  top: 7%;
}

.main-badge-div img {
  width: 100%;
}

.main-maratang {
  width: 100%;
}

.main-img-txt {
  display: flex;
  width: 65%;
  max-width: 615px;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 40%;
  z-index: 7;
}

.main-smoke {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: -7%;
  bottom: 50%;
  z-index: 5;
}

.smoke {
  animation: smoke 2.5s infinite;
}

@keyframes smoke {
  0% {
    transform: translate(0, 30%) rotate(0);
    opacity: 0.2;
  }
  25% {
    transform: translate(calc(random() * 100vw), 100vh) rotate(50deg) translateX(10px);
    opacity: 1;
  }
  50% {
    transform: translate(calc(random() * 100vw), 100vh) rotate(50deg) translateX(50px);
    opacity: 1;
  }
  75% {
    transform: translate(calc(random() * 100vw), 100vh) rotate(50deg) translateX(50px);
    opacity: 1;
  }
  100% {
    transform: translate(calc(random() * 100vw), 200vh) rotate(0) translateX(70px);
    opacity: 0.2;
  }
}

.event-badge {
  width: 200px;
  position: absolute;
  right: 40px;
  bottom: 90px;
}


.clip_off02 {
  clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  transition: all 0.8s;
}

.clip_off {
  clip-path: polygon(50% 0, 50% 0, 50% 100%, 50% 100%);
  transition: all 0.8s;
}

.clip_on {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%) !important;
}


/* section2 */
#section2 {
  width: 100%;
  min-height: 800px;
  background: url(../img/st2-bg.png);
  background-position: top center !important;
  background-size: cover !important;
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  padding: 150px 0;
}

#section2 .st-tit {
  line-height: 140%;
}

.w-line-txt {
  color: #EE2C28 !important;
  text-shadow: 0 0 12px #FFF;
  -webkit-text-stroke-width: 3px;
  -webkit-text-stroke-color: #FFF;
  paint-order: stroke fill;
}

.st2-swiper-container {
  max-width: 1112px;
  width: 90%;
  height: 350px;
  overflow: hidden;
}

.st2-item {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  scale: 0.88;
  opacity: 0.3;
  display: flex;
  box-sizing: border-box;
  padding: 20px 0 16px;
  justify-content: center;
  align-items: center;
  gap: 20px;
  background: #FFF;
  color: #000;
  text-align: center;
  font-size: 32px;
  font-weight: 500;
  line-height: 140%; /* 44.8px */
  letter-spacing: -0.8px;
}

.st2-item span {
  text-align: center;
  font-family: "MBC 1961";
  font-size: 48px;
  font-weight: 400;
  line-height: 140%; /* 67.2px */
  letter-spacing: -1.2px;
}

.st2-swiper-container .swiper-slide-active .st2-item {
  scale: 1;
  opacity: 1;
  border: 2px solid #EE2C28;
}

.st2-swiper-container .swiper-slide-active .st2-item span {
  color: #EE2C28;
}

.st2-swiper-container .swiper-slide-next .st2-item {
  scale: 0.95;
  opacity: 0.7;
  transform: translateY(2%);
}

.st2-swiper-container .swiper-slide-next + div .st2-item {
  scale: 0.88;
  opacity: 0.3;
  transform: translateY(-7%);
}


/* section3 */
#section3 {
  width: 100%;
  border-top: 1px solid #FFF;
  background: #EE2C28;
  padding-top: 20px;
  position: relative;
  z-index: 3;
}

#section3>.st3-img {
  display: none;
  z-index: 4;
}

.st3-inner {
  width: 100%;
  background: url(../img/st3-bg.png);
  background-position: center center !important;
  background-size: cover !important;
  position: relative;
  border-top: 1px solid #FFF;
  box-sizing: border-box;
  padding-top: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.st3-container {
  display: flex;
  flex-direction: column;
  gap: 60px;
  box-sizing: border-box;
  padding: 99px 67px 58px 66px;
  justify-content: center;
  align-items: center;
  border-radius: 999px 999px 0 0;
  border-top: 2px solid #FFF;
  border-right: 2px solid #FFF;
  border-left: 2px solid #FFF;
  background: url(../img/st3-inner.png);
  background-position: center center !important;
  background-size: cover !important;
}

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

.st3-sub-tit {
  color: #FFF;
  text-align: center;
  font-size: 52px;
  font-weight: 700;
  line-height: 140%; /* 72.8px */
  letter-spacing: -1.3px;
}

.st3-tit {
  color: #FFF;
  text-align: center;
  font-family: "MBC 1961";
  font-size: 72px;
  font-weight: 400;
  line-height: 120%; /* 86.4px */
  letter-spacing: -1.8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  white-space: nowrap;
}

.st3-tit>span {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.st3-box {
  display: flex;
  box-sizing: border-box;
  padding: 16px 40px 10px 40px;
  justify-content: center;
  align-items: center;
  gap: 20px;
  border: 2px solid #EE2C28;
  background: #000;
  color: #FFF;
  text-align: center;
  font-family: "MBC 1961";
  font-size: 72px;
  font-weight: 400;
  line-height: 140%; /* 100.8px */
  letter-spacing: -1.8px;
}

.r-line-txt {
  color: #FFF !important;
  text-shadow: 0 0 12px #EE2C28;
  -webkit-text-stroke-width: 4px;
  -webkit-text-stroke-color: #EE2C28;
  paint-order: stroke fill;
}

.st3-box .r-line-txt {
  text-shadow: none;
}

.st3-bottom {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.st3-bottom hr {
  width: 100%;
  height: 2px;
  background: #FFF;
  border: none;
}

.st3-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.st3-content-tit {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: #FFF;
  text-align: center;
  font-family: "Noto Serif KR";
  font-size: 32px;
  font-weight: 700;
  line-height: 140%; /* 44.8px */
  letter-spacing: -0.8px;
  position: relative;
}

.st3-content-tit .w-line-txt {
  text-shadow: 0 0 4px #FFF;
  paint-order: stroke fill;
}

.st3-content-tit span {
  display: flex;
  align-items: center;
  gap: 2px;
}

.txt-dot {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  position: absolute;
  top: -5px;
  right: 27.5%;
}

.wide2 {
  animation: wide2 1.3s linear forwards;
  -webkit-animation: wide2 1.3s linear forwards;
}

@keyframes wide2 {
  0% {
    clip-path: inset(0 100%);
  }
  100% {
    clip-path: inset(-5px 0);
  }
}

.st3-content-txt {
  color: #FFF;
  text-align: center;
  font-size: 28px;
  font-weight: 400;
  line-height: 140%; /* 39.2px */
  letter-spacing: -0.7px;
  word-break: keep-all;
}

.st3-bottom>p {
  color: #FFF;
  text-align: center;
  font-family: "MBC 1961";
  font-size: 52px;
  font-weight: 400;
  line-height: 140%; /* 72.8px */
  letter-spacing: -1.3px;
}

.st3-img {
  position: absolute;
  max-width: 632px;
  width: 39%;
  left: -8%;
  top: 48px;
}

.st3-img2 {
  position: absolute;
  max-width: 622px;
  width: 38%;
  right: -11%;
  bottom: 94px;
}


/* marquee */
.marquee-swiper {
  width: 100%;
  overflow: hidden;
  display: flex;
  box-sizing: border-box;
  padding: 10px 0;
  position: relative;
  z-index: 10;
}

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

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

.marquee-item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.marquee-item p:first-child {
  color: #EE2C28;
  font-family: MiSans;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 44.8px */
  letter-spacing: -0.8px;
}

.marquee-item p:last-child {
  color: #EE2C28;
  font-family: "MBC 1961";
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 39.2px */
  letter-spacing: -0.7px;
}

.b-marquee {
  border-top: 1px solid #FFF;
  border-bottom: 1px solid #FFF;
  background: #000;
}

.w-marquee {
  border-top: 1px solid #EE2C28;
  border-bottom: 1px solid #EE2C28;
  background: #FFF;
}


/* section4 */ 
#section4 {
  width: 100%;
  box-sizing: border-box;
  padding: 0 40px;
  background: #EE2C28 0%;
}

.st4-inner {
  width: 100%;
  background: url(../img/st4-bg.png);
  background-position: center center !important;
  background-size: cover !important;
  box-sizing: border-box;
  padding: 80px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.st4-container {
  max-width: 1450px;
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  overflow: hidden;
}

.st4-top {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.st4-top hr {
  width: 50%;
  height: 2px;
  background: #EE2C28;
  border: none;
}

.st4-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.knowhow-tit {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.knowhow-tit p:first-child {
  color: #EE2C28;
  text-align: right;
  font-size: 60px;
  font-weight: 900;
  line-height: 160%; /* 96px */
  letter-spacing: -1.5px;
}

.knowhow-tit p:last-child {
  color: #000;
  font-size: 40px;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: -1px;
}

.st4-img {
  width: 43%;
  animation: bigSmall 1.5s linear infinite;
}

@keyframes bigSmall {
  0% {
    transform: scale(1);
  }
  50% {
    transform: matrix(1.05, 0.01, 0.01, 1.05, 0, -15);
  }
  100% {
    transform: scale(1);
  }
}
  
.st4-container>img {
  width: 100%;
}

.st4-circle-wrap {
  width: 100%;
  gap: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.st4-circle {
  position: relative;
  max-width: 200px;
  width: calc(25% - 9px);
  aspect-ratio: 1 / 1;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #EE2C28;
  text-align: center;
  font-size: 32px;
  font-weight: 500;
  line-height: 120%; /* 38.4px */
  letter-spacing: -0.8px;
  border-radius: 999px;
  border: 2px solid #EE2C28;
  background: #FFF;
}

.st4-circle-num {
  display: flex;
  width: 60px;
  height: 60px;
  box-sizing: border-box;
  justify-content: center;
  align-items: center;
  gap: 10px;
  position: absolute;
  left: 50%;
  top: -30px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #EE2C28;
  border: 1px solid #EE2C28;
  color: #FFF;
  text-align: center;
  font-family: "MBC 1961";
  font-size: 28px;
  font-weight: 400;
  line-height: 100%; /* 28px */
  letter-spacing: -0.7px;
}

.st4-circle.active {
  background: #EE2C28;
  color: #FFF;
}

.st4-circle.active .st4-circle-num {
  background: #FFF;
  color: #EE2C28;
}

.r-marquee {
  border-top: 1px solid #FFF;
  border-bottom: 1px solid #FFF;
  background: #EE2C28;
}


/* section5 */
#section5 {
  width: 100%;
  background: url(../img/st5-bg.png);
  background-position: center center !important;
  background-size: cover !important;
  box-sizing: border-box;
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  overflow: hidden;
}

.st5-top {
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.st5-top .st-tit:last-child {
  line-height: 140%;
}

.st5-top hr {
  width: 100%;
  height: 2px;
  background: #FFF;
  border: none;
}

#section5>.r-line-txt {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "MBC 1961";
  font-size: 80px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 96px */
  letter-spacing: -2px;
}

#section5>.r-line-txt>span {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.st5-container {
  max-width: 1200px;
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.st5-graph-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.st5-graph-wrap>p {
  color: #FFF;
  text-align: center;
  font-size: 28px;
  font-weight: 400;
  line-height: 120%; /* 38.4px */
  letter-spacing: -0.7px;
}

.st5-graph-div {
  width: 100%;
  position: relative;
  padding-top: 130px;
}

.st5-arrow {
  width: 518.339px;
  position: absolute;
  left: 13%;
  top: 14%;
  animation: arrow 8s linear infinite;
  -webkit-animation: arrow 8s linear infinite;
}

@keyframes arrow {
  0% {
    clip-path: inset(0 100% 0 0); /* 전부 잘려서 안 보임 */
  }
  13% {
    clip-path: inset(0 100% 0 0);
  }
  20% {
    clip-path: inset(0 0 0 0); /* 다 보임 */
  }
  50% {
    clip-path: inset(0 0 0 0);
  }
  100% {
    clip-path: inset(0 0 0 0); /* 다 보임 */
  }
}

.st5-chart-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 40px;
  align-self: stretch;
  position: relative;
}

.st5-chart {
  width: 126px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
}

.chart-div {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  animation: toUp 8s linear infinite;
  -webkit-animation: toUp 8s linear infinite;
}

.chart-div p {
  color: #FFF;
  text-align: center;
  font-size: 28px;
  font-weight: 500;
  line-height: 120%; /* 33.6px */
  letter-spacing: -0.7px;
}

.red-chart {
  width: 100%;
  background: linear-gradient(180deg, #EE2C28 0%, #881917 100%);
}

.chart1 {
  height: 232px;
}

.chart2 {
  height: 338px;
}

.chart3 {
  height: 357px;
}

.chart4 {
  height: 396px;
}

.chart5 {
  height: 661px;
}

.chart6 {
  height: 700px;
}

@keyframes toUp {
  0% {
    clip-path: inset(100% 0 0 0);
  }
  13% {
    clip-path: inset(0 0 0 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}

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

.st5-chart-container hr {
  width: 100%;
  height: 2px;
  background: #EE2C28;
  border: none;
  position: absolute;
  bottom: 58px;
}

.st5-graph-tit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  position: absolute;
  top: -240px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  animation: zoomOut 8s infinite;
  -webkit-animation: zoomOut 8s infinite;
}

@keyframes zoomOut {
  0% {
    opacity: 0;
    transform: translateX(-50%) scale(1.3);
  }
  20% {
    opacity: 0;
    transform: translateX(-50%) scale(1.3);
  }
  40% {
    opacity: 1;
    transform: translateX(-50%) scale(1);
  }
  100% {
    opacity: 1;
    transform: translateX(-50%) scale(1);
  }
}

.st5-graph-tit>p {
  color: #EE2C28;
  text-align: center;
  font-size: 48px;
  font-weight: 900;
  line-height: 120%; /* 57.6px */
  letter-spacing: -1.2px;
  display: flex;
  box-sizing: border-box;
  padding: 0 10px;
  justify-content: center;
  align-items: center;
  background: #FFF;
  white-space: nowrap;
  animation: blink 1.5s linear infinite;
  -webkit-animation: blink 1.5s linear infinite;
}

.chart-mara {
  width: 262px;
}

.st5-graph-tit .r-line-txt {
  font-family: "MBC 1961";
  text-align: center;
  font-size: 60px;
  font-weight: 400;
  line-height: 100%; /* 60px */
  letter-spacing: -1.5px;
  margin-top: -50px;
}

.st5-bottom {
  width: 100%;
  border-radius: 40px;
  border: 2px solid #EE2C28;
  background: #000;
  box-shadow: 0 0 20px 0 #EE2C28;
  display: flex;
  padding: 12px 20px;
  justify-content: center;
  align-items: center;
}

.st5-box {
  width: 33.3%;
  display: flex;
  padding: 20px 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  border-right: 2px solid #FFF;
}

.st5-box:last-child {
  border-right: none;
}

.st5-box p:first-child {
  color: #FFF;
  text-align: center;
  font-size: 28px;
  font-weight: 500;
  line-height: 140%; /* 39.2px */
  letter-spacing: -0.7px;
}

.st5-img-div {
  position: absolute;
  width: 644px;
  left: 50%;
  bottom: 58px;
  transform: translateX(-50%);
}

.st5-img {
  width: 100%;
}


/* section6 */
#section6 {
  width: 100%;
  min-height: 900px;
  background: url(../img/st6-bg.png);
  background-position: bottom center !important;
  background-size: cover !important;
  position: relative;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.st6-point {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.st6-bg-div {
  position: absolute;
  left: 20px;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.st6-store {
  position: absolute;
  width: 990px;
  bottom: 3%;
  left: 0;
}

.st6-img {
  width: 440px;
  z-index: 10;
  margin-left: 116px;
}

.st6-mo-img {
  display: none;
}

.st6-container {
  max-width: 1450px;
  width: 90%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  z-index: 5;
}

.st6-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.st6-point:last-child {
  top: unset;
  bottom: 0;
  left: 0;
}

.st6-logo {
  width: 175px;
}

.st6-bubble {
  box-sizing: border-box;
  padding: 80px;
  gap: 10px;
  align-self: stretch;
  border-radius: 40px;
  background: #FFF;
  color: #000;
  text-align: center;
  font-size: 40px;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: -1px;
  position: relative;
  z-index: 5;
}

.st6-bubble-icon {
  position: absolute;
  z-index: 6;
  left: -28px;
  top: -48px;
}

.st6-bubble-icon2 {
  position: absolute;
  right: -28px;
  bottom: -48px;
  z-index: 6;
  transform: rotate(180deg);
}


/* section7 */
#section7 {
  width: 100%;
  background: url(../img/st7-bg.png);
  background-position: center center !important;
  background-size: cover !important;
  display: flex; 
  padding: 60px 0;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  overflow: hidden;
}

.st7-marquee-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.st7-top-marquee, .st7-bottom-marquee, .st7-top-marquee2, .st7-bottom-marquee2 {
  width: 100%;
  overflow: hidden;
}

.st7-top-marquee .swiper-wrapper, .st7-bottom-marquee .swiper-wrapper, .st7-top-marquee2 .swiper-wrapper, .st7-bottom-marquee2 .swiper-wrapper {
  transition-timing-function: linear;
}

.st7-top-marquee .swiper-slide, .st7-bottom-marquee .swiper-slide, .st7-top-marquee2 .swiper-slide, .st7-bottom-marquee2 .swiper-slide {
  width: auto !important;
}

.st7-bottom-marquee, .st7-bottom-marquee2 {
  margin-top: -20px;
}

.st7-top-marquee p, .st7-top-marquee2 p {
  color: #EE2C28;
  font-size: 120px;
  font-style: normal;
  font-weight: 900;
  line-height: 100%; /* 164px */
  letter-spacing: -3px;
  white-space: nowrap;
}

.st7-bottom-marquee p, .st7-bottom-marquee2 p {
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #EE2C28;
  font-size: 120px;
  font-weight: 900;
  line-height: 100%; /* 164px */
  letter-spacing: -3px;
  color: transparent;
  white-space: nowrap;
}

.st7-container {
  max-width: 1450px;
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}

.st7-tit-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.st7-tit-wrap .st-tit {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.st7-tit-wrap .r-line-txt {
  font-size: 80px;
  font-weight: 400;
  line-height: 140%; /* 112px */
  letter-spacing: -2px;
}

.st7-circle-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
  justify-content: center;
  position: relative;
}

.st7-circle {
  width: calc(50% - 20px);
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  background-size: cover !important;
  background-position: center center !important;
  position: relative;
  overflow: hidden;
}

.st7-circle img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.st7-circle:hover img {
  transform: scale(1.1);
}

.st7-circle>p {
  color: #000;
  text-align: center;
  font-size: 52px;
  font-weight: 600;
  line-height: 140%; /* 72.8px */
  letter-spacing: -1.3px;
  display: flex;
  box-sizing: border-box;
  padding: 0 24px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 99px;
  background: #FFF;
  z-index: 5;
}

.st7-circle-div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  z-index: 5;
}

.st7-circle-div p:first-child {
  color: #FFF;
  text-align: center;
  font-size: 52px;
  font-weight: 400;
  line-height: 120%; /* 62.4px */
  letter-spacing: -1.3px;
}

.st7-circle-div p:last-child {
  color: #FFF;
  text-align: center;
  font-family: "MBC 1961";
  font-size: 80px;
  font-weight: 400;
  line-height: 120%; /* 96px */
  letter-spacing: -2px;
}

.st7-circle-tit {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
}

.st7-circle-wrap .r-line-txt {
  font-size: 120px;
  font-weight: 900;
  line-height: 100%; /* 164px */
  letter-spacing: -3px;
  color: #FFF;
}


/* section8 */
#section8 {
  width: 100%;
  background: url(../img/st8-bg.png);
  height: 650px;
  background-size: cover !important;
  background-position: center center !important;
  display: flex;
  justify-content: center;
  align-items: center;
}

.st8-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}


/* section9 */
#section9 {
  width: 100%;
  background: #EE2C28;
  padding-top: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

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

.st9-badge {
  display: inline-flex;
  box-sizing: border-box;
  padding: 20px 40px;
  justify-content: center;
  align-items: center;
  border-radius: 99px;
  background: #EE2C28;
}

.st9-badge img {
  width: 72px;
}

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

.st9-div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.star {
  width: 334px;
}

.st9-txt {
  color: #FFF;
  text-align: center;
  font-size: 28px;
  font-weight: 500;
  line-height: 120%; /* 33.6px */
  letter-spacing: -0.7px;
}

.st9-mara-div {
  max-width: 779px;
  width: 60%;
  position: relative;
}

.st9-mara {
  width: 100%;
}

.st9-mo-mara {
  display: none;
}

.st9-mara-div .main-smoke {
  animation: smoke 5s infinite;
  -webkit-animation: smoke 5s infinite;
}

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

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

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

.left-swiper-container .swiper-wrapper, .right-swiper-container .swiper-wrapper {
  transition-timing-function: linear;
}

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

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

.st9-circle {
  position: absolute;
  bottom: 0%;
  /* width: 88%; */
  width: 0%;
  transition: all 0.3s;
}

.st9-mo-circle {
  display: none;
}


/* mo-review */
#mo-review {
  display: none;
  width: 100%;
  background: #EE2C28;
  position: absolute;
  z-index: 10;
  left: 0;
  bottom: 100px;
}

.review-swiper-container {
  width: 100%;
  height: fit-content;
}

.review-swiper-container .swiper-wrapper {
  align-items: center;
}

.review-swiper-container img {
  width: 100%;
  border-radius: 20px;
}

.review-swiper-container .swiper-slide-active {
  z-index: 15;
}

.review-swiper-container .swiper-slide-active img {
  border: 2px solid #000;
  transform: scale(1.3);
  transform-origin: center center;
}


/* section10 */
#section10 {
  width: 100%;
  display: flex;
  box-sizing: border-box;
  padding: 80px 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #000;
  position: relative;
}

.st10-container {
  width: 100%;
  position: sticky;
  top: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}

.st10-top {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.st10-icon {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 13.2px;
  animation: neon 1.5s linear infinite;
  -webkit-animation: neon 1.5s linear infinite;
  top: 0;
}

.st10-left-icon {
  left: -20px;
}

.st10-right-icon {
  right: -20px;
}

@keyframes neon {
  0% {
    filter: drop-shadow(0 0 0px #EE2C28);
  }
  50% {
    filter: drop-shadow(0 0 6px #EE2C28);
  }
  100% {
    filter: drop-shadow(0 0 0px #EE2C28);
  }
}

.st10-top .primary {
  text-align: center;
  font-family: "MBC 1961";
  font-size: 80px;
  font-weight: 400;
  line-height: 140%; /* 112px */
  letter-spacing: -2px;
}

.st10-top>p {
  color: #FFF;
  text-align: center;
  font-size: 32px;
  font-weight: 500;
  line-height: 100%; /* 32px */
  letter-spacing: -0.8px;
  word-break: keep-all;
}

.st10-card-wrap {
  max-width: 1450px;
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1vw;
  position: relative;
}

.st10-card {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(120%);
  box-shadow: 0 4px 40px 0 rgba(76, 0, 0, 0.40);
  position: absolute;
}

.st10-card[data-aos="fade-up"] {
  opacity: 1 !important;
  transform: none !important;
}

.st10-card img {
  width: 403px;
}

.st10-card .st-sub-tit {
  width: calc(100% - 463px);
}

.card1 {
  background: #FFEDED;
  transform: translateY(0%);
  box-shadow: none;
  position: relative;
}

.card2 {
  background: #FFCECD;
}

.card3 {
  background: #FF9F9D;
}

.card4 {
  background: #FF5451;
}

.card5 {
  background: #EE2C28;
}

.st10-bottom {
  width: 100%;
  height: 200vh;
}


/* section11 */
#section11 {
  background: #FFF;
  display: flex;
  box-sizing: border-box;
  padding: 80px 0;
  flex-direction: column;
  align-items: center;
  gap: 80px;
  align-self: stretch;
  position: relative;
  overflow: hidden;
  z-index: 5;
}

.st11-left-fixed {
  width: 220px;
  position: absolute;
  left: -20px;
  top: 8px;
}

.st11-right-fixed {
  width: 220px;
  position: absolute;
  right: -34px;
  top: 8px;
}

.menu-container {
  max-width: 1450px;
  width: 90%;
  display: flex;
  flex-direction: column;
  z-index: 5;
}

.menu-wrap {
  width: 100%;
  display: flex;
  padding: 20px 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
  border: 2px solid #EE2C28;
  background: #FFF;
}

.menu-wrap:last-child {
  margin-top: -1px;
}

.menu-wrap-inner {
  width: 100%;
  border-top: 2px solid #EE2C28;
  border-bottom: 2px solid #EE2C28;
  display: flex;
  align-items: stretch;
}

.menu-tit {
  display: flex;
  flex-direction: column;
  width: 280px;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  border-right: 2px solid #EE2C28;
  line-height: 100%;
}

.menu-swiper-container {
  width: calc(100% - 280px);
  overflow: hidden;
  padding: 40px 0;
}

.menu-swiper-container .swiper-wrapper {
  transition-timing-function: linear;
  align-items: flex-end;
}

.menu-swiper-container img {
  width: 100%;
}

.menu-item {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.menu-item p {
  color: #EE2C28;
  text-align: center;
  font-family: "MBC 1961";
  font-size: 24px;
  font-weight: 400;
  line-height: 120%; /* 28.8px */
  letter-spacing: -0.6px;
  white-space: nowrap;
}


/* section12 */
#section12 {
  width: 100%;
  display: flex;
  box-sizing: border-box;
  padding: 40px;
  justify-items: center;
  align-items: center;
  background: #FF9F9D;
  position: relative;
  overflow: hidden;
}

.st12-inner {
  width: 100%;
  border-radius: 20px;
  background: #FFF;
  padding: 80px 0 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

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

.st12-top .st-tit {
  color: #000;
}

.st12-big-tit {
  color: #EE2C28;
  text-align: center;
  font-family: "MBC 1961";
  font-size: 72px;
  font-weight: 400;
  line-height: 120%; /* 86.4px */
  letter-spacing: -1.8px;
}

.profit-container {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.profit-inner {
  max-width: 1450px;
  width: 95%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 5;
}

.profit-container>hr {
  width: 100%;
  display: inline-block !important;
  opacity: 1;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 2px;
  background: #EE2C28;
  border: none;
}

.profit-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 60px;
}

.profit-div {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  color: #000;
  text-align: center;
  font-size: 24px;
  font-weight: 400;
  line-height: 120%; /* 28.8px */
  letter-spacing: -0.6px;
  align-items: center;
}

.profit-div>span {
  color: #EE2C28;
  text-align: center;
  font-size: 40px;
  font-weight: 900;
  line-height: 120%; /* 48px */
  letter-spacing: -1px;
}

.profit-num {
  font-size: 100px !important;
  letter-spacing: -2.5px !important;
}

.profit-wrap {
  height: 140px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

.profit-wrap:first-child {
  justify-content: flex-end;
}

.profit-graph-div {
  max-width: 494px;
  width: 35%;
  position: relative;
}

.profit-graph {
  width: 100%;
}

.profit-rate {
  display: flex;
  box-sizing: border-box;
  padding: 4px 12px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  background: #FFF;
  color: #EE2C28;
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  line-height: normal;
  position: absolute;
  left: 37.5%;
  bottom: 11%;
  animation: scale 0.8s infinite;
}

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

.profit-img {
  max-width: 801px;
  width: 80%;
  left: 50%;
  transform: translateX(-50%);
  bottom: -25%;
  position: absolute;
}

.profit-img img {
  width: 100%;
}

.profit-table-container {
  max-width: 413px;
  width: 30%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.profit-table-txt {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.profit-table-txt p {
  color: #EE2C28;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 120%; /* 24px */
  letter-spacing: -0.45px;
}

.profit-table-div {
  width: 100%;
  border: 2px solid #EE2C28;
  background: #FFF;
}

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

.profit-table td {
  color: #000;
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  line-height: 120%; /* 24px */
  letter-spacing: -0.45px;
  box-sizing: border-box;
  padding: 10px;
}

.profit-table tr:first-child td {
  background: #FFEDED;
}

.profit-result {
  width: 100%;
  background: #EE2C28;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 12px 0;
}

.profit-result div {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
  color: #FFF;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 120%; /* 28.8px */
  letter-spacing: -0.6px;
  padding-top: 10px;
}

.profit-result hr {
  width: 90%;
  height: 1px;
  background: transparent;
  border: none;
  border-bottom: 1px dotted #FFF;
}

.profit-result .w-line-txt {
  text-shadow: 0 0 4px #FFF;
  -webkit-text-stroke-width: 4px;
  font-family: "MBC 1961";
  font-size: 42px;
  font-style: normal;
  font-weight: 400;
  line-height: 79%; /* 33.18px */
  letter-spacing: -1.05px;
}

.profit-result p {
  color: #FFF;
  text-align: center;
  font-size: 32px;
  font-weight: 800;
  line-height: 120%; /* 38.4px */
  letter-spacing: -0.8px;
}

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

.top-border {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

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

.st13-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.st13-txt {
  color: #000;
  text-align: center;
  font-size: 40px;
  font-weight: 600;
  line-height: 120%; /* 48px */
  letter-spacing: -1px;
  display: flex;
  align-items: center;
  gap: 13px;
  justify-content: center;
}

.txt-box {
  color: #FFF;
  display: flex;
  box-sizing: border-box;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: #EE2C28;
}


/* highlight */
.highlight-wrap {
  position: relative;
  display: inline-block;
  color: #FFF;
  white-space: nowrap;
  padding: 10px 12px 0 12px;
}

.highlight {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #EE2C28;
  z-index: 1;
  transition: width 0.6s ease-out;
}

.highlight-txt {
  position: relative;
  z-index: 5;
  display: inline-block;
}

.st13-txt .highlight-wrap {
  padding: 0 5px;
}

.cost-container {
  max-width: 1200px;
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  position: relative;
}

.cost-table-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  filter: blur(8px);
}

.cost-table {
  width: 100%;
  border-top: 2px solid #EE2C28;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.60);
}

.cost-table th {
  height: 65px;
  border-bottom: 1px solid #EE2C28;
  box-sizing: border-box;
  padding: 0 20px;
  text-align: center;
  color: #EE2C28;
  font-size: 24px;
  font-weight: 700;
  line-height: 140%; /* 39.2px */
  letter-spacing: -0.6px;
  word-break: keep-all;
}

.cost-table th span {
  font-size: 16px;
  line-height: 140%;
  font-weight: 400;
  letter-spacing: -0.4px;
}

.cost-table td {
  color: #000;
  text-align: center;
  font-size: 18px;
  line-height: 140%; /* 28px */
  letter-spacing: -0.45px;
  height: 65px;
  border-bottom: 1px solid #EE2C28;
  box-sizing: border-box;
  padding: 0 20px;
  word-break: keep-all;
}

.total-div {
  width: 100%;
  display: flex;
  box-sizing: border-box;
  padding: 12px 0;
  padding-left: 3.5%;
  padding-right: 21%;
  align-items: center;
  justify-content: space-between;
  background: #EE2C28;
}

.total-div p {
  color: #FFF;
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  line-height: 140%; /* 56px */
  letter-spacing: -1px;
  white-space: nowrap;
}

.total-div p:last-child {
  font-weight: 900;
  animation: blink 1.5s linear infinite;
  -webkit-animation: blink 1.5s linear infinite;
}

.total {
  font-size: 60px;
  line-height: 110%;
  letter-spacing: -1.5px;
}

@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.cost-table th:nth-child(2), .cost-table td:nth-child(2) {
  text-align: left;
}

.cost-table td:nth-child(3), .cost-table td:last-child {
  font-weight: 700;
}

.table-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.table-div {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

.cost-table .r-line-txt {
  -webkit-text-stroke-width: 5px;
  font-size: 24px;
  line-height: 140%;
  font-weight: 900;
  letter-spacing: -0.6px;
}

.caution {
  color: #000;
  font-size: 16px;
  line-height: 140%; /* 22.4px */
  letter-spacing: -0.4px;
  word-break: keep-all;
  filter: blur(8px);
}

.cost-box {
  display: flex;
  max-width: 600px;
  width: 90%;
  height: 520px;
  padding: 40px 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  background: #191919;
  box-shadow: 4px 8px 40px 0 rgba(0, 0, 0, 0.16);
  position: absolute;
  left: 50%;
  top: 45%;
  transform: translate(-50%, -50%);
  overflow: hidden;
}

.cost-box-logo {
  width: 175px;
}

.cost-box div {
  display: flex;
  box-sizing: border-box;
  padding: 20px 30px;
  flex-direction: column;
  align-items: center;
  background: #000;
  color: #FFF;
  text-align: center;
  font-family: "MBC 1961";
  font-size: 40px;
  font-weight: 400;
  line-height: 140%; /* 56px */
  letter-spacing: -1px;
  cursor: pointer;
}

.cost-box div span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.cost-box p {
  color: #FFF;
  text-align: center;
  font-size: 20px;
  line-height: 150%; /* 30px */
  letter-spacing: -0.5px;
}

/* contact */
#contact {
  width: 100%;
  display: flex;
  box-sizing: border-box;
  padding: 80px 0;
  flex-direction: column;
  align-items: center;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #EE2C28;
  position: relative;
  overflow: hidden;
}

.contact-container {
  max-width: 1200px;
  width: 90%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  z-index: 7;
}

.contact-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  padding-top: 40px;
}

.contact-txt {
  color: #FFF;
  font-size: 26px;
  font-weight: 500;
  line-height: 120%; /* 31.2px */
  letter-spacing: -0.65px;
}

.contact-call {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  cursor: pointer;
}

.contact-form {
  display: flex;
  width: 620px;
  box-sizing: border-box;
  padding: 40px;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  background: #FFF;
}

.contact-form-div {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.item {
  width: 100%;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  padding: 16px 0;
  gap: 20px;
  border-bottom: 1px solid #EE2C28;
}

.input, .radio-wrap {
  width: calc(100% - 120px);
}

.contact-form input[type="text"], input[type="tel"] {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%; /* 21px */
  letter-spacing: -0.4px;
  border: none;
  background: #FFF;
}

.contact-form input[type="text"]:focus, .contact-form input[type="tel"]:focus {
  outline: none;
  border: none !important;
  box-shadow: none !important;
}

.contact-form input[type="text"]::placeholder, .contact-form input[type="tel"]::placeholder {
  color: #BBB;
  font-size: 16px;
  font-weight: 300;
  line-height: 24px; /* 150% */
  letter-spacing: -0.4px;
}

.item label {
  display: block;
  width: 100px;
  box-sizing: border-box; 
  color: #EE2C28;
  font-size: 18px;
  font-weight: 400;
  line-height: 140%; /* 33.6px */
  letter-spacing: -0.45px;
}

.radio-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px 40px;
  flex-wrap: wrap;
}

.radio-div {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
}

.radio-div label {
  width: auto !important;
  font-size: 16px !important;
  letter-spacing: -0.4px !important;
}

.etc-div {
  width: 100%;
}

.etc-div .item {
  padding: 0;
}

[type="radio"] {
  appearance: none;
  border: 1px solid #EE2C28;
  border-radius: 50%;
  width: 22px;
  height: 22px;
}

[type="radio"]:checked {
  background-image: url("../img/check.png");
  background-size: 12px !important;
  background-position: center center !important;
  background-color: #EE2C28;
  background-repeat: no-repeat;
  border: none;
}

.agree-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 0;
}

.contact-form .round-checkbox {
  width: 24px;
  height: 24px;
  border: none;
  appearance: none;
  position: relative;
  cursor: pointer;
  background: #FFF;
  border: 1px solid #EE2C28;
}

.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: 15px !important;
  background-position: center center !important;
  background-color: #EE2C28;
  background-repeat: no-repeat;
  border: none;
}

.contact-form .agree {
  color: #EE2C28;
  font-size: 18px !important;
  font-weight: 500;
  line-height: 150% !important; 
  letter-spacing: -0.45px !important;
  cursor: pointer;
}

.contact-form .agree-open {
  font-weight: 700 !important;
  text-decoration: underline;
}

.c-btn {
  width: 200px;
  background: #EE2C28;
  display: flex;
  box-sizing: border-box;
  padding: 8px 20px;
  height: 58px;
  justify-content: center;
  align-items: center;
  color: #FFF;
  font-size: 20px;
  line-height: 140%; /* 140% */
  font-weight: 700;
  letter-spacing: -0.6px;
  border: none;
}

.c-btn:hover {
  background: #d3231f;
}

.contact-img {
  position: absolute;
  left: -6%;
  bottom: -38%;
  width: 1104px;
}

.contact-img img {
  width: 100%;
}

@media(min-width: 1700px) {
  .st6-bg-div {
    left: 50px;
  }
  .menu-tit {
    width: 300px;
  }
  .menu-swiper-container {
    width: calc(100% - 300px);
  }
}

@media (max-width: 1500px) {
  #main {
    padding-top: 9%;
  }
  .main-tit {
    font-size: 88px;
    letter-spacing: -1.8px;
  }
  .main-tit span {
    font-size: 100px;
    letter-spacing: -2.5px;
  }
  .main-badge-div {
    right: -80px;
  }
  .st6-bg-div {
    left: -5%;
  }
  #section9 {
    padding-top: 100px;
  }
  .left-swiper-container {
    left: 40px;
  }
  .right-swiper-container {
    right: 40px;
  }
  .left-swiper-container .swiper-slide, .right-swiper-container .swiper-slide {
    width: 250px !important;
  }
  .profit-div>span {
    font-size: 36px;
    letter-spacing: -0.9px;
  }
  .profit-num {
    font-size: 88px !important;
    letter-spacing: -2.2px;
  }
}

@media(max-width: 1400px) {
  .knowhow-tit p:first-child {
    font-size: 56px;
    letter-spacing: -1.4px;
  }
  .knowhow-tit p:last-child {
    font-size: 32px;
    letter-spacing: -0.8px;
  }
  .st4-img {
    width: 40%;
  }
  .st6-bubble {
    padding: 60px;
  }
  .st12-inner {
    padding: 80px 0;
  }
  .profit-container hr {
    display: none !important;
  }
  .profit-inner {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 40px;
  }
  .profit-left {
    width: 42%;
    order: 1;
    gap: 10px;
  }
  .profit-wrap {
    height: auto;
  }
  .profit-table-container {
    width: 50%;
    order: 2;
  }
  .profit-graph-div {
    max-width: 600px;
    width: 70%;
    order: 3;
  }
  .profit-rate {
    left: 39.5%;
    bottom: 13%;
  }
  .profit-img {
    bottom: -20%;
  }
  .cost-table th:last-child {
    width: 27%;
  }
}

@media (max-width: 1280px) {
  #main {
    padding-top: 12%;
  }
  .main-tit {
    font-size: 72px;
    letter-spacing: -1.6px;
  }
  .main-tit span {
    font-size: 88px;
    letter-spacing: -1.8px;
  }
  .main-flag {
    width: 170px;
    top: 17%;
  }
  .main-flag2 {
    width: 180px;
    bottom: 17%;
  }
  .main-img-container {
    width: 900px;
    bottom: -15%;
  }
  .main-img-txt {
    bottom: 35%;
  }
  .main-badge-div {
    width: 180px;
    right: -40px;
  }
  .event-badge {
    width: 170px;
    right: 20px;
  }
  #section2 {
    padding: 120px 0;
  }
  .st2-img {
    width: 220px;
  }
  .st2-item {
    font-size: 28px;
    letter-spacing: -0.7px;
    padding: 15px 0 12px;
    gap: 12px;
  }
  .st2-item span {
    font-size: 40px;
    letter-spacing: -1px;
  }
  .st2-swiper-container {
    height: 310px;
  }
  .st3-container {
    padding: 99px 50px 58px 50px;
  }
  .st3-sub-tit {
    font-size: 48px;
    letter-spacing: -1.2px;
  }
  .st3-tit, .st3-box {
    font-size: 64px;
    letter-spacing: -1.6px;
  }
  .st3-content-tit {
    font-size: 28px;
    letter-spacing: -0.7px;
  }
  .st3-content-txt {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .st3-bottom>p {
    font-size: 48px;
    letter-spacing: -1.2px;
  }
  .txt-dot {
    gap: 21px;
  }
  .knowhow-tit p:first-child {
    font-size: 48px;
    letter-spacing: -1.2px;
  }
  .knowhow-tit p:last-child {
    font-size: 28px;
    letter-spacing: -0.7px;
  }
  .st4-img {
    width: 37%;
  }
  .st4-circle-num {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .st4-circle {
    font-size: 28px;
    letter-spacing: -0.7px;
  }
  #section5>.r-line-txt {
    font-size: 72px;
    letter-spacing: -1.8px;
  }
  .st5-graph-div {
    padding-top: 100px;
  }
  .st5-graph-wrap>p {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .st5-arrow {
    width: 450px;
    left: 11%;
    top: 10%;
  }
  .st5-chart {
    width: 110px;
  }
  .chart1 {
    height: 172px;
  }
  .chart2 {
    height: 298px;
  }
  .chart3 {
    height: 317px;
  }
  .chart4 {
    height: 356px;
  }
  .chart5 {
    height: 580px;
  }
  .chart6 {
    height: 610px;
  }
  .st5-img-div {
    width: 550px;
  }
  .st5-graph-tit {
    gap: 20px;
    top: -220px;
  }
  .st5-graph-tit>p {
    font-size: 40px;
    letter-spacing: -1px;
  }
  .chart-mara {
    width: 230px;
  }
  .st5-graph-tit .r-line-txt {
    font-size: 48px;
    letter-spacing: -1.2px;
    margin-top: -30px;
  }
  #section6 {
    min-height: 800px;
  }
  .st6-img {
    width: 400px;
  }
  .st6-bubble {
    font-size: 32px;
    letter-spacing: -0.8px;
  }
  .st6-bubble-icon, .st6-bubble-icon2 {
    width: 90px;
    height: 70px;
  }
  .st6-bubble-icon {
    left: -20px;
    top: -30px;
  }
  .st6-bubble-icon2 {
    right: -20px;
    bottom: -30px;
  }
  #section7 {
    gap: 40px;
  }
  .st7-container {
    gap: 40px;
  }
  .st7-top-marquee p, .st7-top-marquee2 p, .st7-bottom-marquee p, .st7-bottom-marquee2 p, .st7-circle-wrap .r-line-txt {
    font-size: 100px;
    letter-spacing: -2.6px;
  }
  .st7-tit-wrap .st-tit {
    flex-direction: column;
    gap: 8px;
  }
  .st7-tit-wrap .r-line-txt {
    margin-top: -20px;
    font-size: 72px;
    letter-spacing: -1.8px;
  }
  .st7-circle-wrap {
    gap: 20px;
  }
  .st7-circle {
    width: calc(50% - 10px);
  }
  .st7-circle>p {
    font-size: 40px;
    letter-spacing: -1px;
  }
  .st7-circle-div p:first-child {
    font-size: 48px;
    letter-spacing: -1.2px;
  }
  .st7-circle-div p:last-child {
    font-size: 72px;
    letter-spacing: -1.8px;
  }
  .st8-container {
    gap: 12px;
  }
  .st8-container .st-big-tit {
    line-height: 130%;
  }
  .left-swiper-container {
    left: 20px;
  }
  .right-swiper-container {
    right: 20px;
  }
  .left-swiper-container .swiper-slide, .right-swiper-container .swiper-slide {
    width: 250px !important;
  }
  .st9-badge {
    padding: 16px 25px;
  }
  .st9-badge img {
    width: 67px;
  }
  .star {
    width: 310px;
  }
  .st9-txt {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .marquee-item {
    gap: 15px;
  }
  .marquee-item p:first-child {
    font-size: 28px;
    letter-spacing: -0.7px;
  }
  .marquee-item p:last-child {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .marquee-item p:first-child {
    font-size: 28px;
    letter-spacing: -0.7px;
  }
  .marquee-item p:last-child {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .st10-top .primary {
    font-size: 72px;
    letter-spacing: -1.6px;
  }
  .st10-top>p {
    font-size: 28px;
    letter-spacing: -0.7px;
  }
  .st10-icon svg:first-child {
    width: 160px;
    height: 130px;
  }
  .st10-icon svg:last-child {
    width: 160px;
    height: 135px;
  }
  .st10-container {
    top: 200px;
  }
  .st10-card img {
    width: 350px;
  }
  .st10-card .st-sub-tit {
    width: calc(100% - 390px);
  }
  #section11 {
    gap: 60px;
  }
  .st11-left-fixed, .st11-right-fixed {
    width: 180px;
  }
  #section12 {
    padding: 20px;
  }
  .st12-big-tit {
    font-size: 64px;
    letter-spacing: -1.6px;
  }
  .st13-txt {
    font-size: 32px;
    letter-spacing: -0.8px;
  }
  .profit-left {
    width: 45%;
  }
  .st13-txt .highlight-wrap {
    padding: 2px 5px 0;
  }
  .total-div p {
    font-size: 32px;
    letter-spacing: -0.8px;
  }
  .total {
    font-size: 56px;
    letter-spacing: -1.4px;
  }
  .contact-txt {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .contact-call svg {
    width: 50px;
    height: 50px;
  }
  .contact-form {
    width: 520px;
  }
  .contact-img {
    width: 1000px;
    bottom: -30%;
  }
}

@media(max-width: 1100px) {
  .st3-sub-tit {
    font-size: 40px;
    letter-spacing: -1px;
  }
  .st3-tit, .st3-box {
    font-size: 56px;
    letter-spacing: -1.4px;
  }
  .st3-content-tit {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .st3-content-txt {
    font-size: 20px;
    letter-spacing: -0.5px;
  }
  .st3-bottom>p {
    font-size: 40px;
    letter-spacing: -1px;
  }
  .txt-dot {
    gap: 16px;
  }
  .knowhow-tit p:first-child {
    font-size: 40px;
    letter-spacing: -1px;
  }
  .knowhow-tit p:last-child {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .st4-img {
    width: 35%;
  }
  .st5-box {
    padding: 20px 10px;
  }
  .st6-img {
    width: 350px;
  }
  .st6-bubble {
    padding: 40px;
  }
  .left-swiper-container .swiper-slide, .right-swiper-container .swiper-slide {
    width: 230px !important;
  }
  .st9-wrap {
    gap: 16px;
  }
  .st9-container {
    gap: 20px;
  }
  .st10-card {
    padding: 10px 5px;
  }
  .st10-card img {
    width: 300px;
  }
  .st10-card .st-sub-tit {
    width: calc(100% - 330px);
    font-size: 28px;
    letter-spacing: -0.7px;
  }
  .profit-left {
    width: 50%;
  }
  .profit-num {
    font-size: 72px !important;
    letter-spacing: -1.8px !important;
  }
  .contact-left {
    gap: 20px;
    align-items: center;
    padding-top: 0;
  }
  .contact-container {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .contact-form {
    max-width: 800px;
    width: 90%;
  }
}

@media(max-width: 1024px) {
  #main {
    height: auto;
    min-height: 800px;
  }
  .main-tit {
    font-size: 72px;
    letter-spacing: -1.6px;
  }
  .main-tit span {
    font-size: 88px;
    letter-spacing: -1.8px;
  }
  .main-flag {
    width: 150px;
    top: 18%;
  }
  .main-flag2 {
    width: 160px;
    bottom: 18%;
  }
  .main-img-container {
    width: 800px;
  }
  .main-badge-div {
    width: 150px;
    right: 0;
  }
  .event-badge {
    width: 150px;
  }
  .st2-img {
    width: 210px;
  }
  .st2-item {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .st2-item span {
    font-size: 28px;
    letter-spacing: -0.7px;
  }
  .st2-swiper-container {
    height: 260px;
  }
  .st2-swiper-container .swiper-slide-next .st2-item {
    transform: translateY(4%);
  }
  .st3-container {
    max-width: 900px;
    width: 90%;
    gap: 40px;
    padding: 80px 50px 60px;
  }
  .st3-box {
    flex-direction: column;
    line-height: 130%;
    gap: 0;
  }
  .st3-bottom {
    gap: 20px;
  }
  .st3-bottom>p {
    line-height: 120%;
  }
  .st5-chart-container {
    gap: 25px;
  }
  .st5-arrow {
    width: 400px;
    left: 8%;
  }
  .st5-chart {
    width: 100px;
  }
  .chart-div p {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .st5-img-div {
    width: 480px;
  }
  .st5-box {
    gap: 10px;
  }
  .st5-box .st-tit {
    font-size: 48px;
    letter-spacing: -1.2px;
  }
  #section6 {
    min-height: auto;
    padding-top: 100px;
    flex-direction: column-reverse;
    background-position: center center !important;
  }
  .st6-point {
    z-index: 11;
  }
  .st6-container {
    justify-content: center;
  }
  .st6-bg-div {
    width: 100%;
    position: relative;
    bottom: 0;
    left: 0;
  }
  .st6-store {
    width: 70%;
    left: unset;
    bottom: 0;
  }
  .st6-img {
    margin-left: 0;
  }
  .st6-pc-img {
    display: none;
  }
  .st6-mo-img {
    display: block;
  }
  .st7-circle>p {
    font-size: 32px;
    letter-spacing: -0.8px;
  }
  .st7-circle-div p:first-child {
    font-size: 40px;
    letter-spacing: -1px;
  }
  .st7-circle-div p:last-child {
    font-size: 64px;
    letter-spacing: -1.6px;
  }
  .st7-circle-wrap .r-line-txt {
    font-size: 88px;
    letter-spacing: -2.2px;
  }
  .menu-tit {
    width: 250px;
  }
  .menu-swiper-container {
    width: calc(100% - 250px);
    padding: 30px 0;
  }
  .cost-table th, .cost-table .r-line-txt {
    font-size: 20px;
    letter-spacing: -0.6px;
  }
  .cost-table .r-line-txt {
    text-shadow: 0 0 10px #EE2C28;
  }
  .cost-table th span {
    font-size: 14px;
    letter-spacing: -0.35px;
  }
  .cost-table td {
    font-size: 16px;
    letter-spacing: -0.4px;
  }
  .total-div p:first-child {
    font-size: 28px;
    letter-spacing: -0.7px;
  }
  .caution {
    font-size: 14px;
    letter-spacing: -0.35px;
  }
}

@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 {
    min-height: 720px;
    padding-top: 14%;
  }
  .main-tit {
    font-size: 64px;
    letter-spacing: -1.4px;
  }
  .main-tit span {
    font-size: 72px;
    letter-spacing: -1.6px;
  }
  .main-flag {
    width: 130px;
    top: 19%;
  }
  .main-flag2 {
    width: 140px;
    bottom: 19%;
  }
  .main-img-container {
    width: 700px;
    bottom: -10%;
  }
  .main-img-txt {
    bottom: 23%;
  }
  .main-badge-div {
    width: 130px;
    right: 0;
  }
  .event-badge {
    width: 130px;
    bottom: 40px;
  }
  #section2 {
    padding: 100px 0 90px;
  }
  .st2-img {
    width: 190px;
  }
  .st2-swiper-container {
    height: 240px;
  }
  .st3-sub-tit {
    font-size: 32px;
    letter-spacing: -0.8px;
  }
  .st3-tit, .st3-box {
    font-size: 48px;
    letter-spacing: -1.2px;
  }
  .st3-content-tit {
    font-size: 20px;
    letter-spacing: -0.5px;
    gap: 6px;
  }
  .st3-content-txt {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
  .st3-bottom>p {
    font-size: 32px;
    letter-spacing: -0.8px;
  }
  .st3-img {
    top: 15px;
  }
  .st3-img2 {
    bottom: 25px;
  }
  .txt-dot {
    gap: 14px;
  }
  .txt-dot img {
    width: 5px;
  }
  #section4 {
    padding: 0 20px;
  }
  .st4-container {
    gap: 50px;
  }
  .st4-wrap {
    flex-direction: column;
    gap: 20px;
  }
  .knowhow-tit {
    align-items: center;
  }
  .st4-img {
    width: 80%;
  }
  .st4-circle-wrap {
    gap: 10px;
  }
  .st4-circle-num {
    width: 50px;
    height: 50px;
    font-size: 20px;
    letter-spacing: -0.5px;
    top: -25px;
  }
  .st4-circle {
    width: calc(25% - 7.5px);
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .st4-container>img {
    width: 200%;
  }
  #section5>.r-line-txt {
    font-size: 64px;
    letter-spacing: -1.6px;
  }
  #section5>.r-line-txt>span {
    gap: 12px;
  }
  .st5-graph-wrap>p {
    font-size: 20px;
    letter-spacing: -0.5px;
  }
  .st5-graph-div {
    padding-top: 100px;
  }
  .st5-chart-container {
    gap: 20px;
  }
  .st5-arrow {
    width: 350px;
    left: 8%;
  }
  .chart1 {
    height: 172px;
  }
  .chart2 {
    height: 268px;
  }
  .chart3 {
    height: 287px;
  }
  .chart4 {
    height: 296px;
  }
  .chart5 {
    height: 480px;
  }
  .chart6 {
    height: 500px;
  }
  .chart-div p {
    font-size: 20px;
    letter-spacing: -0.5px;
  }
  .st5-chart>p {
    font-size: 28px;
    letter-spacing: -0.7px;
  }
  .st5-img-div {
    width: 450px;
  }
  .st5-chart-container hr, .st5-img-div {
    bottom: 53px;
  }
  .st5-graph-tit {
    gap: 20px;
    top: -190px;
  }
  .st5-graph-tit>p {
    font-size: 32px;
    letter-spacing: -0.8px;
  }
  .chart-mara {
    width: 170px;
  }
  .st5-graph-tit .r-line-txt {
    font-size: 40px;
    letter-spacing: -1px;
    margin-top: -20px;
  }
  .st5-box p:first-child {
    font-size: 24px;
    left: -0.6px;
  }
  .st5-box .st-tit {
    font-size: 40px;
    letter-spacing: -1px;
  }
  #section6 {
    padding-top: 80px;
  }
  .st6-store {
    width: 80%;
  }
  .st6-logo {
    width: 135px;
  }
  .st6-bubble-icon, .st6-bubble-icon2 {
    width: 72px;
    height: 60px;
  }
  .st6-bubble {
    padding: 30px;
    font-size: 28px;
    letter-spacing: -0.7px;
  }
  .st7-top-marquee p, .st7-top-marquee2 p, .st7-bottom-marquee p, .st7-bottom-marquee2 p {
    font-size: 88px;
    letter-spacing: -2.2px;
  }
  .st7-bottom-marquee, .st7-bottom-marquee2 {
    margin-top: -15px;
  }
  .st7-tit-wrap .r-line-txt {
    font-size: 62px;
    letter-spacing: -1.6px;
  }
  .st7-circle {
    gap: 16px;
  }
  .st7-circle>p {
    font-size: 28px;
    letter-spacing: -0.7px;
  }
  .st7-circle-div {
    gap: 12px;
  }
  .st7-circle-div p:first-child {
    font-size: 32px;
    letter-spacing: -0.8px;
  }
  .st7-circle-div p:last-child {
    font-size: 52px;
    letter-spacing: -1.3px;
  }
  .st7-circle-wrap .r-line-txt {
    font-size: 80px;
    letter-spacing: -2px;
  }
  #section8 {
    height: 500px;
    background-position: right center !important;
  }
  #section9 {
    padding-top: 80px;
  }
  .left-swiper-container .swiper-slide, .right-swiper-container .swiper-slide {
    width: 210px !important;
  }
  .st9-badge img {
    width: 60px;
  }
  .star {
    width: 280px;
  }
  .st9-txt {
    font-size: 20px;
    letter-spacing: -0.5px;
  }
  .marquee-item {
    gap: 12px;
  }
  .marquee-item p:first-child {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .marquee-item p:last-child {
    font-size: 20px;
    letter-spacing: -0.5px;
  }
  .st10-top .primary {
    font-size: 64px;
    letter-spacing: -1.6px;
  }
  .st10-top>p {
    font-size: 24px;
    letter-spacing: -0.6px;
    line-height: 140%;
  }
  .st10-icon svg:first-child {
    width: 130px;
    height: 110px;
  }
  .st10-icon svg:last-child {
    width: 130px;
    height: 115px;
  }
  .st10-container {
    top: 200px;
  }
  .st10-card img {
    width: 260px;
  }
  .st10-card .st-sub-tit {
    width: calc(100% - 270px);
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .st11-left-fixed, .st11-right-fixed {
    width: 150px;
  }
  .menu-tit {
    width: 220px;
  }
  .menu-swiper-container {
    width: calc(100% - 220px);
  }
  .menu-item p {
    font-size: 22px;
    letter-spacing: -0.55px;
  }
  .st12-inner {
    gap: 40px;
  }
  .st12-big-tit {
    font-size: 56px;
    letter-spacing: -1.4px;
  }
  .profit-inner {
    width: 90%;
    gap: 25px;
  }
  .profit-left {
    order: 2;
    width: 100%;
    align-items: center;
  }
  .profit-table-container {
    width: 90%;
    max-width: 800px;
    order: 1;
  }
  .profit-graph-div {
    max-width: 700px;
  }
  .profit-wrap>p {
    text-align: center;
  }
  .profit-rate {
    left: 38%;
    bottom: 12%;
  }
  .profit-div {
    font-size: 20px;
    letter-spacing: -0.5px;
  }
  .profit-div>span {
    font-size: 40px;
    letter-spacing: -1px;
  }
  .profit-num {
    font-size: 64px !important;
    letter-spacing: -1.6px !important;
  }
  .st13-txt {
    font-size: 28px;
    letter-spacing: -0.7px;
    gap: 6px;
  }
  .top-border, .bottom-border {
    width: 150%;
  }
  .total-div {
    padding-right: 25%;
  }
  .total {
    font-size: 48px;
    letter-spacing: -1.2px;
  }
  .contact-container {
    gap: 250px;
  }
  .contact-txt {
    font-size: 20px;
    letter-spacing: -0.5px;
  }
  .contact-call svg {
    width: 40px;
    height: 40px;
  }
  .contact-form {
    padding: 30px;
  }
  .contact-img {
    width: 70%;
    bottom: unset;
    top: 21%;
    left: 10%;
  }
}

@media (max-width: 768px) {
  .layer-popup {
    position: fixed;
    top: 5%;
    left: 5%;
  }
  #main {
    min-height: 650px;
    padding-top: 14%;
  }
  .main-tit, .main-tit span {
    font-size: 60px;
    letter-spacing: -1.5px;
  }
  .main-flag {
    width: 110px;
    top: 31%;
  }
  .main-flag2 {
    width: 120px;
    bottom: 15%;
  }
  .main-img-container {
    width: 600px;
    bottom: -10%;
  }
  .main-img-txt {
    bottom: 23%;
  }
  .main-badge-div {
    width: 110px;
    right: 20px;
  }
  .event-badge {
    width: 110px;
  }
  #section2 {
    min-height: 700px;
  }
  .st2-img {
    width: 175px;
  }
  .st2-swiper-container {
    width: 95%;
    height: 220px;
  }
  .st2-item {
    font-size: 20px;
    letter-spacing: -0.5px;
  }
  .st2-item span {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .st3-img {
    top: -40px;
    width: 45%;
  }
  #section3>.st3-img {
    display: block;
  }
  .st3-inner .st3-img {
    display: none;
  }
  .st3-img2 {
    bottom: -50px;
  }
  .st4-inner {
    padding: 60px 0;
  }
  .st4-top {
    gap: 12px;
  }
  .st4-top .st-top {
    gap: 8px;
  }
  .st4-container {
    width: 95%;
    gap: 40px;
  }
  .st4-circle-wrap {
    gap: 8px;
  }
  .st4-circle-num {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
  .st4-circle {
    width: calc(25% - 6px);
    font-size: 20px;
    letter-spacing: -0.5px;
  }
  #section5 {
    padding: 60px 0;
    gap: 40px;
  }
  #section5 .highlight-wrap {
    padding: 4px 12px 0 12px;
  }
  #section5>.r-line-txt {
    font-size: 56px;
    letter-spacing: -1.4px;
  }
  #section5>.r-line-txt>span {
    flex-direction: column;
    gap: 0;
  }
  .st5-bottom {
    flex-direction: column;
    border-radius: 20px;
  }
  .st5-box {
    width: 100%;
    border-right: none;
    border-bottom: 2px solid #FFF;
  }
  .st5-box:last-child {
    border-bottom: none;
  }
  .st5-box p:first-child {
    font-size: 28px;
    letter-spacing: -0.7px;
  }
  .st5-box .st-tit{
    font-size: 48px;
    letter-spacing: -1.2px;
  }
  .st6-store {
    width: 90%;
  }
  #section7 .st-tit {
    font-size: 40px;
    letter-spacing: -1px;
  }
  .st7-tit-wrap .r-line-txt {
    font-size: 56px;
    letter-spacing: -1.4px;
    margin-top: -15px;
  }
  .st7-circle-wrap {
    flex-direction: column;
  }
  .st7-circle {
    max-width: 450px;
    width: 100%;
  }
  #section9 {
    padding: 60px 0 400px;
  }
  .left-swiper-container, .right-swiper-container {
    display: none;
  }
  .st9-mara-div {
    max-width: unset;
    width: 110%;
  }
  .st9-circle {
    bottom: 29%; 
  }
  #mo-review {
    display: block;
  }
  #section10 {
    padding: 80px 16px;
  }
  .st10-card-wrap {
    width: 100%;
  }
  #section11 {
    padding: 60px 16px;
    gap: 40px;
  }
  .st11-left-fixed, .st11-right-fixed {
    width: 120px;
  }
  .menu-container {
    width: 100%;
  }
  .menu-tit {
    width: 200px;
  }
  .menu-swiper-container {
    width: calc(100% - 200px);
  }
  #section12 {
    padding: 10px;
  }
  .st12-inner {
    padding: 60px 16px;
    border-radius: 12px;
  }
  .profit-inner, .profit-table-container {
    width: 100%;
  }
  .profit-left {
    gap: 8px;
  }
  .profit-num {
    font-size: 56px !important;
    letter-spacing: -1.4px !important;
  }
  #section13 {
    padding: 60px 16px;
    gap: 40px;
  }
  .top-border, .bottom-border {
    width: 200%;
  }
  .cost-container {
    width: 100%;
  }
  .cost-table th, .cost-table td {
    padding: 0 10px;
  }
  #contact {
    padding: 80px 16px;
  }
  .contact-container, .contact-form {
    width: 100%;
  }
  .contact-img {
    width: 75%;
    top: 21%;
    left: 10%;
  }
  .cost-box div {
    padding: 20px;
    font-family: "MBC 1961";
    font-size: 32px;
    letter-spacing: -0.8px;
  }
}

@media(max-width: 750px) {
  #section5 .st-tit {
    font-size: 40px;
    letter-spacing: -1px;
  }
  .st5-chart-container {
    gap: 20px;
  }
  .st5-arrow {
    width: 320px;
    top: 7%;
  }
  .st5-graph-div {
    padding-top: 70px;
  }
  .st5-chart {
    width: 80px;
  }
  .chart1 {
    height: 172px;
  }
  .chart2 {
    height: 248px;
  }
  .chart3 {
    height: 267px;
  }
  .chart4 {
    height: 276px;
  }
  .chart5 {
    height: 440px;
  }
  .chart6 {
    height: 460px;
  }
  .chart-div p {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
  .st5-chart>p {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .st5-img-div {
    width: 420px;
  }
  .st5-chart-container hr, .st5-img-div {
    bottom: 49px;
  }
  .st5-graph-tit {
    gap: 8px;
    top: -160px;
  }
  .st5-graph-tit>p {
    font-size: 28px;
    letter-spacing: -0.7px;
  }
  .chart-mara {
    width: 145px;
  }
  .st5-graph-tit .r-line-txt {
    font-size: 32px;
    letter-spacing: -0.8px;
    margin-top: -10px;
  }
  .st10-top {
    gap: 20px;
  }
  .st10-top .primary {
    font-size: 56px;
    letter-spacing: -1.4px;
  }
  .st10-container {
    top: 200px;
    gap: 60px;
  }
  .st10-card img {
    width: 220px;
  }
  .st10-card .st-sub-tit {
    width: calc(100% - 230px);
    font-size: 20px;
    letter-spacing: -0.5px;
  }
}

@media (max-width: 650px) {
  #main {
    min-height: 800px;
    padding-top: 18%;
    height: 100vh;
  }
  .main-txt {
    gap: 8px;
  }
  .main-txt .st-sub-tit {
    gap: 4px;
  }
  .main-tit {
    line-height: 120%;
  }
  .main-flag {
    width: 100px;
    top: 31%;
    left: 10px;
  }
  .main-flag2 {
    width: 110px;
    bottom: 31%;
    left: 72px;
  }
  .main-img-container {
    width: 98%;
    bottom: -7%;
  }
  .main-img-txt {
    bottom: 23%;
  }
  .main-badge-div {
    width: 110px;
    right: 20px;
  }
  .event-badge {
    width: 120px;
    bottom: 45%;
    transform: translateY(-60%);
  }
  #section2 .st-tit {
    line-height: 120%;
  }
  .w-line-txt {
    text-shadow: 0 0 6px #FFF;
  }
  .st2-swiper-container {
    height: 310px;
  }
  .st2-img {
    width: 160px;
  }
  .st2-item {
    padding: 12px 0 8px;
    flex-direction: column;
    gap: 8px;
  }
  .st2-swiper-container .swiper-slide-next .st2-item {
    transform: translateY(3%);
  }
  .st3-container {
    width: 95%;
    padding: 80px 25px;
  }
  .st3-tit, .st3-box {
    font-size: 40px;
    letter-spacing: -1px;
  }
  .st3-box {
    padding: 16px 20px 10px 20px;
  }
  .st3-content-tit {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
  .st3-content-txt {
    font-size: 16px;
    letter-spacing: -0.4px;
  }
  .st3-bottom>p {
    font-size: 28px;
    letter-spacing: -0.7px;
  }
  .st3-img {
    width: 55%;
    top: -80px;
  }
  .st3-img2 {
    width: 55%;
    right: -13%;
    bottom: -16%;
  }
  .txt-dot {
    gap: 13px;
    top: -3px;
  }
  .txt-dot img {
    width: 4px;
  }
  .marquee-item p:first-child {
    font-size: 20px;
    letter-spacing: -0.5px;
  }
  .marquee-item p:last-child {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
  .knowhow-tit p:first-child {
    font-size: 32px;
    letter-spacing: -0.8px;
  }
  .knowhow-tit p:last-child {
    font-size: 20px;
    letter-spacing: -0.5px;
  }
  .st4-top {
    gap: 4px;
  }
  .st4-top .st-top {
    gap: 4px;
  }
  .st4-circle-num {
    width: 40px;
    height: 40px;
    font-size: 16px;
    letter-spacing: -0.4px;
  }
  .st4-circle {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
  #section5 .st-tit {
    font-size: 32px;
    letter-spacing: -0.8px;
  }
  #section5>.r-line-txt {
    font-size: 48px;
    letter-spacing: -1.2px;
  }
  .st5-chart-container {
    gap: 20px;
  }
  .st5-arrow {
    width: 270px;
  }
  .st5-graph-div {
    padding-top: 70px;
  }
  .st5-chart {
    width: 70px;
  }
  .chart1 {
    height: 165px;
  }
  .chart2 {
    height: 241px;
  }
  .chart3 {
    height: 254px;
  }
  .chart4 {
    height: 282px;
  }
  .chart5 {
    height: 396px;
  }
  .chart6 {
    height: 410px;
  }
  .chart-div p {
    font-size: 16px;
    letter-spacing: -0.4px;
  }
  .chart-div p span {
    display: none;
  }
  .st5-chart>p {
    font-size: 20px;
    letter-spacing: -0.5px;
  }
  .st5-img-div {
    width: 380px;
  }
  .st5-chart-container hr, .st5-img-div {
    bottom: 49px;
  }
  .st5-graph-tit {
    top: -140px;
  }
  .st5-graph-tit>p {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .chart-mara {
    width: 130px;
  }
  .st5-graph-tit .r-line-txt {
    font-size: 28px;
    letter-spacing: -0.7px;
    margin-top: 0;
  }
  .st5-chart-container hr, .st5-img-div {
    bottom: 43px;
  }
  .st5-box {
    gap: 4px;
  }
  .st5-box .st-tit{
    font-size: 48px;
    letter-spacing: -1.2px;
  }
  #section6 {
    padding-top: 60px;
  }
  .st6-store {
    width: 110%;
  }
  .st6-wrap {
    width: 100%;
    gap: 20px;
  }
  .st6-logo {
    width: 100px;
  }
  .st6-bubble-icon, .st6-bubble-icon2 {
    width: 52px;
    height: 40px;
  }
  .st6-bubble-icon {
    left: -12px;
    top: -15px;
  }
  .st6-bubble-icon2 {
    right: -12px;
    bottom: -15px;
  }
  .st6-bubble {
    width: 100%;
    font-size: 24px;
    letter-spacing: -0.6px;
    padding: 20px;
  }
  .st7-top-marquee p, .st7-top-marquee2 p, .st7-bottom-marquee p, .st7-bottom-marquee2 p {
    font-size: 72px;
    letter-spacing: -1.8px;
  }
  #section7 .st-tit {
    font-size: 32px;
    letter-spacing: -0.8px;
  }
  .st7-tit-wrap .r-line-txt {
    font-size: 48px;
    letter-spacing: -1.2px;
    margin-top: -15px;
  }
  #section9 {
    padding: 40px 0 270px; 
  }
  .st9-badge {
    padding: 12px 20px;
  }
  .st9-badge img {
    width: 51px;
  }
  .star {
    width: 136px;
  }
  .st9-div .st-tit {
    font-size: 48px;
    letter-spacing: -1.2px;
  }
  .st9-pc-circle {
    display: none;
  }
  .st9-mo-circle {
    display: block;
    bottom: 23%;
  }
  .st9-pc-mara {
    display: none;
  }
  .st9-mo-mara {
    display: block;
  }
  #mo-review {
    bottom: 90px;
  }
  #section10 {
    overflow: hidden;
  }
  .st10-container {
    gap: 40px;
    position: static;
  }
  .st10-top {
    overflow: visible;
  }
  .st10-top .primary {
    font-size: 48px;
    letter-spacing: -1.2px;
  }
  .st10-top>p {
    font-size: 20px;
    letter-spacing: -0.5px;
  }
  .st10-icon {
    top: -60px;
    gap: 6px;
  }
  .st10-icon svg:first-child {
    width: 90px;
    height: 80px;
  }
  .st10-icon svg:last-child {
    width: 90px;
    height: 85px;
  }
  .st10-card-wrap {
    gap: 0;
  }
  .st10-card {
    padding: 20px 5px;
    position: static;
    transform: none;
    flex-direction: column-reverse;
    justify-content: flex-end;
    gap: 10px;
    height: 210px;
    overflow: hidden;
  }
  .st10-card[data-aos="fade-up"] {
    opacity: 0 !important;
    transform: translateY(50px) !important;
    transition: all 0.6s ease !important;
  }
  #section10 .aos-animate[data-aos="fade-up"] {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
  .st10-card img {
    width: 275px;
  }
  .st10-card .st-sub-tit {
    width: 100%;
  }
  .st10-card:nth-child(n+2) {
    margin-top: -30px;
  }
  .st10-bottom{
    display: none;
  }
  .st11-left-fixed, .st11-right-fixed {
    width: 90px;
  }
  .st11-left-fixed {
    left: -7px;
    top: 6px;
  }
  .st11-right-fixed {
    right: -7px;
    top: 6px;
  }
  #section11 .st-tit .highlight-txt {
    font-size: 48px;
    letter-spacing: -1.2px;
    line-height: 120%;
  }
  .menu-wrap-inner {
    flex-direction: column;
  }
  .menu-tit, .menu-swiper-container {
    width: 100%;
    padding: 20px 0;
  }
  .menu-tit {
    border-right: none;
    border-bottom: 1px solid #EE2C28;
  }
  .menu-tit.st-tit {
    font-size: 40px !important;
    letter-spacing: -1px !important;
  }
  .menu-tit .st-sub-tit {
    font-size: 28px !important;
    letter-spacing: -0.7px !important;
  }
  .st12-big-tit {
    font-size: 48px;
    letter-spacing: -1.2px;
  }
  .profit-div {
    gap: 12px;
  }
  .profit-num {
    font-size: 48px !important;
    letter-spacing: -1.2px !important;
  }
  .profit-rate {
    padding: 0 10px;
    font-size: 28px;
    letter-spacing: -0.7px;
    left: 37%;
  }
  .profit-graph-div {
    width: 80%;
  }
  .profit-img {
    width: 80%;
    bottom: -12%;
  }
  .st13-txt {
    font-size: 24px;
    letter-spacing: -0.6px;
    flex-direction: column;
    gap: 8px;
  }
  .top-border, .bottom-border {
    width: 300%;
  }
  .cost-table th, .cost-table td {
    padding: 0 4px;
  }
  .cost-table th {
    height: 75px;
    font-size: 18px;
    letter-spacing: -0.45px;
  }
  .cost-table .r-line-txt {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
  .cost-table td {
    height: 75px;
    font-size: 14px;
    letter-spacing: -0.35px;
  }
  .table-div {
    flex-direction: column;
    gap: 0;
  }
  .total-div {
    padding-right: 15%;
  }
  .total-div p:first-child {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .total {
    font-size: 40px;
    letter-spacing: -1px;
  }
  .cost-table th span, .caution {
    font-size: 13px;
    letter-spacing: -0.325px;
  }
  .cost-table .r-line-txt {
    font-weight: 700;
  }
  .contact-container {
    gap: 200px;
  }
  .contact-form {
    padding: 20px;
  }
  .radio-wrap {
    gap: 10px 20px;
  }
  .contact-img {
    width: 80%;
    top: 25%;
    left: 30px;
  }
  .cost-box {
    height: 475px;
  }
  .cost-box-logo {
    width: 150px;
  }
  .cost-box div span svg {
    width: 27.994px;
    height: 28px;
  }
  .cost-box p {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
}

@media(max-width: 550px) {
  .st5-chart-container {
    gap: 12px;
  }
  .st5-chart {
    width: 65px;
  }
  .st5-arrow {
    width: 230px;
  }
  .chart-mara {
    width: 120px;
  }
}

@media (max-width: 480px) {
  #main {
    min-height: 800px;
    padding-top: 110px;
    height: auto;
  }
  .main-flag {
    width: 90px;
    top: unset;
    bottom: 35%;
    left: 8px;
  }
  .main-flag2 {
    width: 100px;
    bottom: 20%;
    left: 50px;
  }
  .main-img-container {
    width: 98%;
    bottom: -7%;
  }
  .main-img-txt {
    bottom: 23%;
    width: 70%;
  }
  .main-badge-div {
    width: 90px;
  }
  .event-badge {
    bottom: 35%;
  }
  .knowhow-tit p:first-child {
    font-size: 28px;
    letter-spacing: -0.7px;
  }
  .st4-img {
    width: 90%;
  }
  .st4-circle-num {
    width: 35px;
    height: 35px;
    font-size: 14px;
    letter-spacing: -0.35px;
    top: -17.5px;
  }
  .st4-circle {
    font-size: 16px;
    letter-spacing: -0.4px;
  }
  #section5 .st-tit {
    font-size: 28px;
    letter-spacing: -0.7px;
  }
  #section5>.r-line-txt {
    font-size: 40px;
    letter-spacing: -1px;
  }
  .st5-chart-container {
    gap: 8px;
  }
  .st5-arrow {
    left: 1%;
    top: 19%;
  }
  .st5-graph-div {
    padding-top: 90px;
  }
  .st5-graph-wrap>p {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
  .st5-chart-container {
    gap: 6px;
  }
  .st5-chart {
    width: 55px;
  }
  .chart-div p {
    font-size: 14px;
    letter-spacing: -0.35px;
  }
  .st5-img-div {
    width: 360px;
  }
  .st5-graph-tit {
    top: -140px;
  }
  .st5-graph-tit>p {
    font-size: 20px;
    letter-spacing: -0.5px;
    padding: 0 4px;
  }
  .chart-mara {
    width: 100px;
  }
  .st5-graph-tit .r-line-txt {
    font-size: 24px;
    letter-spacing: -0.6px;
    margin-top: 0;
  }
  .st5-box p:first-child {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .st5-box .st-tit{
    font-size: 40px;
    letter-spacing: -1px;
  }
  .st6-logo {
    width: 87px;
  }
  .st6-img {
    width: 310px;
  }
  .st6-store {
    width: 140%;
  }
  .st7-top-marquee p, .st7-top-marquee2 p, .st7-bottom-marquee p, .st7-bottom-marquee2 p {
    font-size: 68px;
    letter-spacing: -1.7px;
  }
  .st7-bottom-marquee, .st7-bottom-marquee2 {
    margin-top: -10px;
  }
  #section7 .st-tit {
    font-size: 28px;
    letter-spacing: -0.7px;
  }
  .st7-tit-wrap .r-line-txt {
    font-size: 40px;
    letter-spacing: -1px;
    margin-top: -12px;
  }
  .st7-circle-div p:first-child {
    font-size: 28px;
    letter-spacing: -0.7px;
  }
  #section8 {
    background: url(../img/st8-mo-bg.png);
  }
  #section8 .st-tit {
    font-size: 40px;
    letter-spacing: -1px;
  }
  .marquee-item {
    gap: 8px;
  }
  .marquee-item p:last-child {
    font-size: 16px;
    letter-spacing: -0.4px;
  }
  #section9 {
    padding: 40px 0 270px;
  }
  #mo-review {
    bottom: 80px;
  }
  .st9-mo-circle {
    bottom: 23%;
  }
  #section11 .st-tit .highlight-txt {
    font-size: 40px;
    letter-spacing: -1px;
  }
  #section2 .st-tit {
    font-size: 40px;
    letter-spacing: -1px;
  }
  .st2-item {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
  .st3-container {
    padding: 80px 10px;
  }
  .st3-content-tit {
    font-size: 16px;
    letter-spacing: -0.4px;
    gap: 4px;
  }
  .st3-content-txt {
    font-size: 14px;
    letter-spacing: -0.35px;
  }
  .st3-img {
    width: 60%;
    top: -60px;
  }
  .st3-img2 {
    width: 60%;
    bottom: -14%;
  }
  .st3-sub-tit {
    font-size: 28px;
    letter-spacing: -0.7px;
  }
  .st3-tit, .st3-box {
    font-size: 36px;
    letter-spacing: -0.9px;
  }
  .st3-bottom>p {
    font-size: 26px;
    letter-spacing: -0.65px;
  }
  .txt-dot {
    gap: 11px;
  }
  #section8 .st-big-tit {
    font-size: 48px;
    letter-spacing: -1.2px;
  }
  .st9-mara-div {
    width: 120%;
  }
  .st10-top .st-tit, .st10-top .primary {
    font-size: 40px;
    letter-spacing: -1px;
  }
  .st10-icon {
    top: -40px;
    gap: 2px;
  }
  .st10-icon svg:first-child {
    width: 70px;
    height: 60px;
  }
  .st10-icon svg:last-child {
    width: 70px;
    height: 65px;
  }
  .st10-card {
    gap: 2px;
    height: 180px;
  }
  .st10-card img {
    width: 240px;
  }
  .st11-left-fixed, .st11-right-fixed {
    width: 60px;
  }
  .menu-tit.st-tit {
    font-size: 32px !important;
    letter-spacing: -0.8px !important;
  }
  .menu-tit .st-sub-tit {
    font-size: 24px !important;
    letter-spacing: -0.6px !important;
  } 
  .st12-inner {
    padding: 60px 10px;
  }
  .st12-big-tit {
    font-size: 40px;
    letter-spacing: -1px;
  }
  .profit-div {
    gap: 8px;
  }
  .profit-graph-div {
    width: 100%;
  }
  .profit-num {
    font-size: 40px !important;
    letter-spacing: -1px !important;
  }
  .profit-rate {
    left: 38%;
  }
  .profit-img {
    width: 85%;
    bottom: -15%;
  }
  #section13 .st-tit, #contact .st-tit {
    font-size: 40px;
    letter-spacing: -1px;
  }
  .cost-table th {
    height: 60px;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: -0.4px;
  }
  .cost-table .r-line-txt {
    font-size: 16px;
    letter-spacing: -0.4px;
  }
  .cost-table td {
    height: 70px;
    font-size: 12px;
    letter-spacing: -0.3px;
  }
  .cost-table td:nth-child(3) {
    width: 70px;
  }
  .total-div {
    padding: 8px 20px;
  }
  .total-div p:first-child {
    font-size: 20px;
    letter-spacing: -0.5px;
  }
  .total {
    font-size: 32px;
    letter-spacing: -0.8px;
  }
  .cost-table th span, .caution {
    font-size: 12px;
    letter-spacing: -0.35px;
  }
  .contact-container {
    gap: 160px;
  }
  .contact-txt {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
  .item label {
    width: 90px;
    font-size: 16px;
    letter-spacing: -0.4px;
  }
  .input {
    width: calc(100% - 110px);
  }
  .radio-input {
    flex-direction: column;
    align-items: flex-start;
  }
  .radio-wrap {
    width: 100%;
  }
  .contact-img {
    width: 85%;
    top: 24%;
  }
  .cost-box {
    height: 440px;
  }
  .cost-box-logo {
    width: 136px;
  }
  .cost-box p {
    font-size: 16px;
    letter-spacing: -0.4px;
  }
}

@media(max-width: 400px) {
  #main {
    min-height: 750px;
  }
  .main-flag {
    width: 80px;
    bottom: 33%;
  }
  .main-flag2 {
    width: 90px;
    bottom: 18%;
  }
  .event-badge {
    bottom: 30%;
  }
  .st2-swiper-container {
    height: 300px;
  }
  .st2-item {
    font-size: 16px;
    letter-spacing: -0.4px;
  }
  .st3-content-tit {
    flex-direction: column;
    line-height: 150%;
  }
  .st3-img2 {
    bottom: -10%;
  }
  .txt-dot {
    top: 26px;
    right: 63.5%;
  }
  .st4-circle-num {
    width: 32px;
    height: 32px;
    font-size: 12px;
    letter-spacing: -0.3px;
    top: -16px;
  }
  .st4-circle {
    font-size: 14px;
    letter-spacing: -0.35px;
  }
  #section5 .st-tit {
    font-size: 28px;
    letter-spacing: -0.7px;
  }
  #section5 .st-tit:first-child {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  #section5>.r-line-txt {
    font-size: 34px;
    letter-spacing: -0.85px;
  }
  .st5-graph-wrap>p {
    font-size: 16px;
    letter-spacing: -0.4px;
  }
  .st5-arrow {
    width: 200px;
    left: 0;
    /* top: 7%; */
  }
  .st5-graph-div {
    padding-top: 60px;
  }
  .st5-chart {
    width: 47px;
  }
  .st5-img-div {
    width: 100%;
  }
  .st5-graph-tit {
    top: -120px;
  }
  .chart-mara {
    width: 80px;
  }
  .st5-graph-tit>p {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
  .st5-graph-tit .r-line-txt {
    font-size: 20px;
    letter-spacing: -0.5px;
    margin-top: 0;
  }
  .st6-store {
    width: 150%;
  }
  .st6-img {
    width: 80%;
  }
  #section7 .st-tit {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  #section9 {
    padding: 40px 0 250px;
  }
  .st9-mo-circle {
    bottom: 20%;
  }
  .st10-icon {
    top: -30px;
    gap: 0;
  }
  .st10-icon svg:first-child {
    width: 50.533px;
    height: 39.303px;
  }
  .st10-icon svg:last-child {
    width: 48.845px;
    height: 40px;
  }
  .st10-card {
    height: 160px;
  }
  .st10-card .st-sub-tit {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
  .st10-card img {
    width: 216px;
  }
  .st10-card:nth-child(n+2) {
    margin-top: -20px;
  }
  .profit-num, .profit-div>span {
    font-size: 34px !important;
    letter-spacing: -0.85px !important;
  }
  .profit-rate {
    left: 36%;
    bottom: 11%;
  }
  .total-div {
    padding: 8px 10px;
  }
  .radio-wrap {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
  .cost-table .r-line-txt {
    font-size: 15px;
    letter-spacing: -0.375px;
  }
  .cost-table td {
    height: 68px;
    font-size: 11px;
    letter-spacing: -0.275px;
  }
  .cost-table th span, .caution {
    font-size: 11px;
    letter-spacing: -0.275px;
  }
  .contact-img {
    top: 22%;
  }
  .chart1 {
    height: 135px;
  }
  .chart2 {
    height: 211px;
  }
  .chart3 {
    height: 224px;
  }
  .chart4 {
    height: 252px;
  }
  .chart5 {
    height: 366px;
  }
  .chart6 {
    height: 380px;
  }
}

@media(max-width: 370px) {
  .main-flag {
    width: 70px;
    bottom: 31%;
  }
  .main-flag2 {
    width: 80px;
  }
  .main-txt .st-sub-tit {
    flex-direction: column;
  }
  .event-badge {
    bottom: 27%;
  }
  .st3-bottom>p {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .knowhow-tit p:first-child {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .knowhow-tit p:last-child {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
  .st4-circle-num {
    width: 28px;
    height: 28px;
    font-size: 10px;
    letter-spacing: -0.25px;
    top: -14px;
  }
  .st4-circle {
    font-size: 12px;
    letter-spacing: -0.3px;
  }
  #section5>.r-line-txt {
    font-size: 32px;
    letter-spacing: -0.8px;
  }
  .st5-arrow {
    width: 180px;
    left: 0;
    /* top: 9%; */
  }
  .st5-chart {
    width: 45px;
  }
  .st5-graph-tit {
    top: -120px;
  }
  .st5-graph-tit>p {
    font-size: 16px;
    letter-spacing: -0.4px;
  }
  .chart-mara {
    width: 75px;
  }
  #section8 {
    height: 450px;
  }
  #section8 .st-big-tit {
    font-size: 40px;
    letter-spacing: -1px;
  }
  #section8 .st-tit {
    font-size: 32px;
    letter-spacing: -0.8px;
  }
  #section9 {
    padding: 40px 0 230px;
  }
  #mo-review {
    bottom: 70px;
  }
  .profit-num, .profit-div>span {
    font-size: 32px !important;
    letter-spacing: -0.8px !important;
  }
  .profit-rate {
    left: 35%;
    bottom: 10%;
  }
  .profit-img {
    bottom: -10%;
  }
  .cost-table .r-line-txt {
    font-size: 14px;
    letter-spacing: -0.35px;
  }
  .cost-table td {
    height: 58px;
    font-size: 10px;
    letter-spacing: -0.25px;
  }
  .cost-table th span, .caution {
    font-size: 10px;
    letter-spacing: -0.25px;
  }
  .cost-table td:nth-child(3) {
    width: 60px;
  }
}

@media(max-width: 350px) {
  .st2-swiper-container {
    height: 290px;
  }
  .st2-item {
    font-size: 15px;
    letter-spacing: -0.375px;
  }
  #section7 {
    padding: 40px 0;
  }
  .st7-top-marquee p, .st7-top-marquee2 p, .st7-bottom-marquee p, .st7-bottom-marquee2 p {
    font-size: 64px;
    letter-spacing: -1.6px;
  }
  .st7-circle>p {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .st7-circle-div p:first-child {
    font-size: 28px;
    letter-spacing: -0.7px;
  }
  .st7-circle-div p:last-child {
    font-size: 48px;
    letter-spacing: -1.2px;
  }
  .st7-circle-wrap .r-line-txt {
    font-size: 72px;
    letter-spacing: -1.8px;
  }
  .st10-top .st-tit, .st10-top .primary {
    font-size: 32px;
    letter-spacing: -0.8px;
  }
  .st10-top>p {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
  .st10-card .st-sub-tit {
    font-size: 16px;
    letter-spacing: -0.4px;
  }
  .profit-div {
    font-size: 16px;
    letter-spacing: -0.4px;
  }
  .profit-rate {
    left: 34%;
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .contact-txt {
    font-size: 16px;
    letter-spacing: -0.4px;
  }
  .profit-table td {
    font-size: 16px;
    letter-spacing: -0.4px;
  }
  .profit-num, .profit-div>span {
    font-size: 28px !important;
    letter-spacing: -0.7px !important;
  }
  .cost-box {
    height: 400px;
    padding: 30px 10px;
  }
  .cost-box-logo {
    width: 115px;
  }
  .cost-box div {
    font-size: 28px;
    letter-spacing: -0.7px;
  }
  .cost-box div span svg {
    width: 24px;
    height: 25px;
  }
}

@media(max-width: 340px) {
  #section7 .st-tit {
    font-size: 20px;
    letter-spacing: -0.5px;
  }
  #section9 {
    padding: 40px 0 210px;
  }
  #mo-review {
    bottom: 60px;
  }
  .cost-table td br {
    display: none;
  }
}
