/* 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%;
}

.clip-path {
  will-change: clip-path;
  transition-property: clip-path;
  transition-timing-function: ease-out;
}

.marquee {
  width: 100%;
  overflow: hidden;
  display: flex;
  box-sizing: border-box;
  padding: 12px 0;
  border-top: 1px solid #111;
  border-bottom: 1px solid #111;
  background: #FFF;
}

.marquee.black {
  border-top: 1px solid #111;
  border-bottom: 1px solid #111;
  background: #231815;
}

.marquee .marquee-wrapper {
  display: flex;
  width: max-content;
  animation: marquee-scroll 12s linear infinite;
}

.marquee .swiper-slide {
  width: 182px !important;
  flex-shrink: 0;
  margin-right: 32px;
}

.marquee-logo {
  width: 100%;
}

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

.line-animation {
  box-sizing: border-box;
  padding: 0 10px;
  overflow: hidden;
  position: relative;
  color: #FFF;
}

.line-animation span {
  position: relative;
  z-index: 2;
}

.line-animation::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #D71718;
  transform: scaleX(var(--fill, 0));
  transform-origin: left center;
  will-change: transform;
}


/* main */
#main {
  width: 100%;
  min-height: 100vh;
  height: 900px;
  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;
}

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

.main-chicken {
  width: 320px;
  position: absolute;
}

.main-chicken.left {
  transform: rotate(180deg);
  left: -5%;
  bottom: 10%;
}

.main-chicken.right {
  right: -5%;
  top: 7%;
}

.main-center {
  position: absolute;
  width: 70%;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
}

.main-center-img {
  width: 100%;
  height: 100%;
  will-change: clip-path;
  transition-property: clip-path;
  transition-timing-function: ease-out;
}

.main-center img { 
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  z-index: 5;
  transform: translateY(-20%);
  overflow: hidden;
}

.main-container p {
  text-align: center;
  font-family: 'Paperlogy';
  font-size: 72px;
  font-style: normal;
  font-weight: 800;
  line-height: 125%; /* 90px */
  letter-spacing: -1.8px;
}

.main-container .line-tit {
  display: flex;
  align-items: center;
  transition: unset;
}

.main-container p:last-child {
  color: #FFF;
  text-align: center;
  text-shadow: 0 8px 12px rgba(0, 0, 0, 0.25);
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #A90000;
}

.main-chicken-img {
  width: 770px;
  max-width: 100%;
  position: absolute;
  left: 50%;
  top: 55%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.main-chicken-img .chicken-div {
  width: 100%;
  animation: none;
  transition: unset;
}

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

.main-chicken-img .smoke-div {
  width: 100%;
  transition: unset;
}

.eng-tit-div {
  max-width: 100%;
  position: absolute;
  left: 50%;
  bottom: -4%;
  transform: translateX(-50%);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  z-index: 2;
}

.eng-tit {
  color: #FFF;
  text-align: center;
  font-family: 'Paperlogy';
  font-size: 120px;
  font-style: normal;
  font-weight: 800;
  line-height: 125%; /* 150px */
  letter-spacing: -3px;
}

.main-bubble-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1300px;
  width: 95%;
  padding-bottom: 120px;
  z-index: 7;
  position: absolute;
  top: 51%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.main-bubble-div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 54px;
}

.main-bubble {
  display: flex;
  box-sizing: border-box;
  padding: 12px 24px;
  justify-content: center;
  align-items: center;
  gap: 4px;
  border-radius: 60px;
  border: 1px solid rgba(255, 255, 255, 0.30);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.70) 0%, #FFF 100%);
  box-shadow: 0 8px 24px 0 rgba(0, 0, 0, 0.20);
  color: #111;
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  line-height: 120%; /* 28.8px */
  letter-spacing: -0.6px;
  transition: unset;
}



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

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

.st2-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.st2-bubble {
  width: 350px;
  margin-left: -9%;
}

.st2-div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.st2-div p:first-child {
  color: #111;
  font-family: 'Paperlogy';
  font-size: 28px;
  font-weight: 600;
  line-height: 130%; /* 36.4px */
  letter-spacing: -0.7px;
}

.st2-div div {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  color:  #D71718;
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  line-height: 100%; /* 40px */
  letter-spacing: -1px;
}

.st2-count {
  color: #D71718;
  text-align: center;
  font-size: 64px;
  font-weight: 700;
  line-height: 100%; /* 64px */
  letter-spacing: -1.6px;
}

.st2-div p:last-child {
  color: rgba(17, 17, 17, 0.60);
  font-size: 16px;
  font-weight: 600;
  line-height: 130%; /* 20.8px */
  letter-spacing: -0.4px;
}

.st2-graph-wrap {
  width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.st2-graph-tit {
  width: 100%;
  color: #FFF;
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  line-height: 148%; /* 35.52px */
  letter-spacing: -0.6px;
  padding: 6px 0;
  background: #030303;
}

.st2-graph-box {
  width: 100%;
  background: #FFF;
  display: flex;
  width: 800px;
  box-sizing: border-box;
  padding: 10px;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

.st2-graph {
  width: 100%;
  height: 328px;
  position: relative;
  display: flex;
  align-items: flex-end;
}

.st2-graph-img {
  width: 100%;
  position: absolute;
  left: 0;
  top: -3px;
}

.st2-graph-item {
  box-sizing: border-box;
  padding: 0 17px;
  width: 12.5%;
  height: 100%;
  opacity: 0.8;
}

.st2-graph-div {
  width: 100%;
  height: 100%;
  background: rgba(214, 219, 237, 0.40);
  display: flex;
  align-items: flex-end;
}

.bar-div {
  width: 100%;
  position: relative;
}

.bar, .mo-bar {
  width: 100%;
  transition: unset;
}

.mo-bar {
  display: none;
}

.bar-div div {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 20px;
  transition: unset;
}

.bar-div div p {
  color: #D71718;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  box-sizing: border-box;
  padding: 4px 6px;
  border-radius: 8px;
  border: 1px solid #D71718;
  background: #FFF;
  white-space: nowrap;
}

.graph-month {
  width: 100%;
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.graph-month p {
  width: 12.5%;
  color: rgba(0, 0, 0, 0.70);
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
}

.interview-container {
  max-width: 1300px;
  width: 90%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-end;
}

.interview-box {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: stretch;
  background: #D71718;
  background-blend-mode: multiply, normal;
  overflow: hidden;
}

.interview-box-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 500px;
  padding: 30px 0;
}

.interview-sub {
  display: flex;
  box-sizing: border-box;
  padding: 5px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid #FFF;
  background: #111;
}

.interview-sub p {
  display: flex;
  box-sizing: border-box;
  padding: 6px 20px;
  justify-content: center;
  align-items: center;
  color: #FFF;
  text-align: center;
  font-family: 'Paperlogy';
  font-size: 24px;
  font-weight: 700;
  line-height: 145%; /* 34.8px */
  border: 1px solid #FFF;
  background: #111;
}

.interview-comment {
  width: 340px;
  display: flex;
  flex-direction: column;
  color: #FFF;
  text-align: center;
  font-family: 'Paperlogy';
  font-size: 40px;
  font-weight: 700;
  line-height: 145%; /* 58px */
  letter-spacing: -1px;
}

.interview-comment svg:last-child {
  margin-left: auto;
}

.interview-box-inner>p {
  color: #FFF;
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  line-height: 145%; /* 34.8px */
  letter-spacing: -0.6px;
}

.interview-video {
  width: calc(100% - 500px);
}

.interview-video iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.interview-container>p {
  width: 100%;
  color: rgba(17, 17, 17, 0.60);
  text-align: right;
  font-size: 20px;
  font-weight: 300;
  line-height: 130%; /* 26px */
  letter-spacing: -0.5px;
}

#section2 .caution {
  font-size: 16px;
  letter-spacing: -0.4px;
  margin-top: 20px;
  word-break: keep-all;
}


/* section3 */
#section3 {
  width: 100%;
  background: url(../img/st3-bg.png);
  background-position: center center !important;
  background-size: cover !important;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

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

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

.st3-div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}

.st3-txt {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  color: #FFF;
  font-size: 32px;
  font-weight: 500;
  line-height: 148%; /* 47.36px */
  letter-spacing: -0.8px;
  word-break: keep-all;
}

.st3-content{
  color: rgba(255, 255, 255, 0.85);
  font-size: 20px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -0.5px;
  word-break: keep-all;
}

.st3-content .y {
  color: rgba(246, 222, 42, 0.85) !important;
}

.st3-chicken-div {
  max-width: 713px;
  width: 60%;
  position: relative;
}

.st3-chicken-div .st3-chicken-bg {
  width: 100%;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%   { 
    transform: translateY(0);
  }
  50%  { 
    transform: translateY(-16px);
  }
  100% { 
    transform: translateY(0);
  }
}

.st3-chicken-img {
  position: absolute;
  left: 2%;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: float 3s ease-in-out infinite;
}

.st3-chicken-img img {
  width: 100%;
}


/* section4 */
#section4 {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  overflow: hidden;
}

.st4-marquee {
  width: fit-content;
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  box-sizing: border-box;
  padding: 10px 20px;
  border-right: 2px solid rgba(0, 0, 0, 0.50);
  border-left: 2px solid rgba(0, 0, 0, 0.50);
  z-index: 3;
}

.st4-marquee.left {
  left: 130px;
}

.st4-marquee.right {
  right: 130px;
}

.st4-marquee .swiper-wrapper {
  display: flex;
  flex-direction: column;
  height: max-content;
  visibility: hidden;
  gap: 10px;
}

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

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

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

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

.st4-marquee-txt {
  color: rgba(0, 0, 0, 0.50);
  font-family: 'Paperlogy';
  font-size: 60px;
  font-style: normal;
  font-weight: 900;
  line-height: 110%; /* 66px */
  letter-spacing: -1.5px;
  writing-mode: vertical-lr;
}

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

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

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

#section4 .line-tit {
  display: inline-block;
  margin-top: 10px;
  -webkit-text-stroke-color: #FFF;
}

.st4-txt {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: #FFF;
  text-align: center;
  font-size: 32px;
  font-weight: 500;
  line-height: 148%; /* 47.36px */
  letter-spacing: -0.8px;
  z-index: 5;
}

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

.st4-box {
  width: 33.3%;
  display: flex;
  box-sizing: border-box;
  padding: 40px 40px 30px 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  background: #000;
  position: relative;
}

.st4-box:nth-child(2) {
  background: #D71718;
}

.st4-box-num {
  width: 50px;
  aspect-ratio: 1 / 1;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFF;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 24px */
  letter-spacing: -0.5px;
  background: url(../img/st4-icon.svg);
  background-position: center center;
  background-size: cover !important;
  position: absolute;
  top: 23px;
  left: 50%;
  transform: translateX(-50%);
}

.st4-box:nth-child(2) .st4-box-num {
  background: url(../img/st4-icon2.svg);
}

.st4-box img {
  width: 100%;
}

.st4-box-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.st4-box-tit {
  color: #FFF;
  text-align: center;
  font-family: 'Paperlogy';
  font-size: 40px;
  font-weight: 700;
  line-height: 150%; /* 60px */
  letter-spacing: -1px;
}

.st4-box-txt {
  color: #FFF;
  text-align: center;
  font-size: 24px;
  font-weight: 400;
  line-height: 135%; /* 32.4px */
  letter-spacing: -0.6px;
}


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

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

.st5-top .st-tit .line-tit {
  -webkit-text-stroke-color: #111;
}

.st5-sub {
  color: #111;
  text-align: center;
  font-size: 32px;
  font-weight: 500;
  line-height: 148%; /* 47.36px */
  letter-spacing: -0.8px;
  word-break: keep-all;
}

.st5-point {
  box-sizing: border-box;
  padding: 12px 32px;
  border-radius: 100px;
  background: linear-gradient(91deg, #D71718 5.09%, #AA0607 96.87%);
  color: #FFF;
  font-size: 40px;
  font-weight: 600;
  line-height: 148%; /* 47.36px */
  letter-spacing: -1px;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.st5-point::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 100px;
  padding: 4px;
  background: linear-gradient(180deg, rgba(255, 156, 156, 1) 5.09%, rgba(255, 156, 156, 0.1) 100%);
  -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-point span {
  color: #FFF600;
  font-size: 64px;
  line-height: 130%;
  letter-spacing: -1.6px;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  box-sizing: border-box;
  padding: 0 16px;
  border-radius: 8px;
  background: linear-gradient(180deg, #282828 0%, #494949 49%, #282828 49.52%, #000 100%);
}

.st5-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 120px;
  position: relative;
}

.st5-left-table {
  width: 420px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  border-radius: 12px;
  background: #FFF;
  overflow: hidden;
  padding-bottom: 20px;
  z-index: 3;
}

.st5-left-table>p {
  width: 100%;
  box-sizing: border-box;
  padding: 20px;
  color: #505050;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.6px;
}

.left-table-div {
  width: 100%;
  height: 62px;
  display: flex;
  box-sizing: border-box;
  padding: 0 20px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #505050;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.4px;
}

.left-table-div .sm-txt {
  width: 90px;
}

.left-table-div .big-txt {
  width: calc(100% - 130px);
  color: #505050;
  font-size: 32px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.8px;
}

.st5-right-table {
  width: 480px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  border-radius: 12px;
  background:radial-gradient(51.78% 88.51% at 34.13% 10.34%, #FE384A 0%, #D62737 100%);
  overflow: hidden;
  z-index: 3;
}

.st5-right-table>p {
  box-sizing: border-box;
  padding: 30px 20px 20px 20px;
  color: #FFF;
  text-align: center;
  font-size: 40px;
  font-weight: 900;
  line-height: normal;
  letter-spacing: -1px;
}

.right-table-div {
  width: 100%;
  height: 98px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-sizing: border-box;
  padding: 0 20px;
  color: #FFF;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.5px;
}

.right-table-div .big-txt {
  color: #FFF;
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -1px;
}

.right-table-div img {
  width: 164px;
  transition: unset;

}

.vs {
  width: 146px;
  position: absolute;
  left: 47%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: unset;
}

.st5-txt {
  color: #111;
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  line-height: 148%; /* 35.52px */
  letter-spacing: -0.6px;
  z-index: 3;
}

.caution {
  width: 100%;
  color: #767676;
  font-size: 20px;
  font-weight: 400;
  line-height: 148%; /* 29.6px */
  letter-spacing: -0.5px;
  z-index: 3;
}

#section5 .caution {
  margin-top: -36px;
  text-align: center;
}

.st5-chicken {
  width: 560px;
  position: absolute;
  right: -6%;
  bottom: -7%;
}


/* section6 */
#section6 {
  width: 100%;
  background: #D71718;
  background-blend-mode: multiply, normal;
}

.st6-inner {
  width: 100%;
  padding: 20px;
  background: #FFF;
  box-shadow: 0 8px 24px 0 rgba(0, 0, 0, 0.12);
}

.st6-inner-wrap {
  border: 1.5px solid #D71718;
  background: #FFF;
  display: flex;
  box-sizing: border-box;
  padding: 60px 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 60px;
}

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

.st6-sub {
  box-sizing: border-box;
  padding: 5px;
  border: 1px solid #FFF;
  background: #D71718;
  transition: unset;
}

.st6-sub p {
  display: flex;
  box-sizing: border-box;
  padding: 6px 20px;
  justify-content: center;
  align-items: center;
  border: 1px solid #FFF;
  background: #D71718;
  color: #FFF;
  text-align: center;
  font-family: 'Paperlogy';
  font-size: 24px;
  font-weight: 700;
  line-height: 145%; /* 34.8px */
}

.st6-top .st-tit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.st6-top .st-tit .line-tit {
  -webkit-text-stroke-color: #111;
}

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

.st6-txt1 {
  width: 100%;
  color: #111;
  text-align: center;
  font-size: 32px;
  font-weight: 500;
  line-height: 148%; /* 47.36px */
  letter-spacing: -0.8px;
}

.st6-txt2 {
  width: 100%;
  color: #D71718;
  text-align: center;
  font-size: 40px;
  font-weight: 800;
  line-height: 148%; /* 59.2px */
  letter-spacing: -1px;
  transition: unset;
  word-break: keep-all;
}

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

.st6-item {
  width: 33.3%;
  display: flex;
  box-sizing: border-box;
  padding: 20px 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  border-right: 1px solid #DDD;
  background: #FFF;
  color: #111;
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  line-height: 145%; /* 34.8px */
  letter-spacing: -0.6px;
  transition: unset;
}

.st6-wrap.minus .st6-item:nth-child(3) {
  border-right: 2px solid #DDD;
}

.st6-item:last-child {
  border-right: none;
}

.st6-item img {
  width: 100px;
}

.st6-line-div {
  width: 105%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  transition: unset;
}

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


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

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

.st7-table-item {
  width: calc(25% - 15px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  transition: unset;
}

.st7-table-tit {
  display: flex;
  box-sizing: border-box;
  padding: 5px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid #FFF;
  background: #D71718;
}

.st7-table-tit p {
  color: #FFF;
  text-align: center;
  font-family: 'Paperlogy';
  font-size: 24px;
  font-weight: 700;
  line-height: 145%; /* 34.8px */
  display: flex;
  box-sizing: border-box;
  padding: 6px 20px;
  justify-content: center;
  align-items: center;
  border: 1px solid #FFF;
}

.st7-table-div {
  width: 100%;
  position: relative;
}

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

.st7-table th, .st7-table td {
  color: #111;
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  line-height: 28px; /* 116.667% */
  letter-spacing: -0.6px;
}

.st7-table th {
  width: 50%;
  box-sizing: border-box;
  padding: 0 16px;
  height: 56px;
  border-radius: 12px 12px 0 0;
  background: #000;
}

.st7-table td {
  height: 68px;
  box-sizing: border-box;
  padding: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.10);
  background: #F1F1F1;
}

.st7-table tr:last-child td {
  border-bottom: none;
}

.st7-table-free {
  width: 90px;
  position: absolute;
  right: 30px;
  top: 116px;
  animation: blink 1.5s linear infinite;
}

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

.st7-table-total {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.st7-table-total p {
  color: #111;
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  line-height: 130%; /* 31.2px */
  letter-spacing: -0.6px;
}

.st7-table-total div {
  color: #111;
  font-family: 'Paperlogy';
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  letter-spacing: -1px;
}

.st7-swiper {
  display: none;
  width: 100%;
}

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

.st7-swiper .st7-table-item {
  width: 100%;
}

.st7-interior-box {
  max-width: 1300px;
  width: 90%;
  display: flex;
  background: #FFF;
  backdrop-filter: blur(4px);
  z-index: 5;
  box-sizing: border-box;
  padding: 10px;
  align-items: stretch;
}

.st7-interior-box .interior-inner {
  width: 100%;
  display: flex;
  box-sizing: border-box;
  padding: 40px 0;
  justify-content: center;
  align-items: center;
  gap: 60px;
  border: 1px solid #111;
  background: url(../img/st7-interior.png);
  background-position: center center !important;
  background-size: cover !important;
}

.interior-inner .left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.st7-interior-tit {
  color: #FFF;
  text-align: center;
  font-family: 'Paperlogy';
  font-size: 48px;
  font-weight: 700;
  line-height: 120%; /* 57.6px */
  letter-spacing: -0.96px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.st7-interior-txt {
  color: #FFF;
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  line-height: 148%; /* 35.52px */
  letter-spacing: -0.6px;
}

.st7-interior-cost {
  display: flex;
  box-sizing: border-box;
  padding: 10px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  background: #D71718;
}

.st7-interior-cost p {
  color: #FFF;
  font-family: 'Paperlogy';
  font-size: 40px;
  text-align: center;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  letter-spacing: -1px;
  box-sizing: border-box;
  gap: 20px;
  border: 1.5px solid #FFF;
  box-sizing: border-box;
  padding: 8px 40px;
  animation: w-opa 1.2s linear infinite;
}

.st7-interior-cost p span {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
  font-size: 80px;
  font-weight: 700;
  line-height: 130%; /* 104px */
  letter-spacing: -2px;
  animation: w-opa 1.2s linear infinite;
}

@keyframes w-opa {
  0% {
    color: #FFF;
  }
  50% {
    color: rgba(255, 255, 255, 0.50);
  }
  100% {
    color: #FFF;
  }
}

.interior-inner .right {
  width: 620px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.st7-interior-wrap {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding: 10px;
  background: #FFF;
  overflow: hidden;
}

.st7-interior-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.nav-btn {
  opacity: 0.3;
  cursor: pointer;
}

.nav-btn:hover {
  opacity: 1;
}

.st7-container {
  max-width: 1300px;
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 5;
}

.st7-container .st-tit br.block {
  display: block;
}

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

.st7-item {
  width: calc(50% - 20px);
  display: flex;
  box-sizing: border-box;
  padding: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  border: 2px solid #FFF;
  background: #D71718;
  transition: unset;
}

.st7-item-tit {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  color: #FFF;
  text-align: center;
  font-family: 'Paperlogy';
  font-size: 48px;
  font-weight: 700;
  line-height: 145%; /* 69.6px */
}

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

.st7-item-div {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.highest-sale {
  display: flex;
  padding: 20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  background: #FFF;
  color: #D71718;
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  line-height: 130%; /* 41.6px */
  letter-spacing: -0.8px;
}

.highest-sale span {
  color: #D71718;
  font-family: 'Paperlogy';
  font-size: 48px;
  font-weight: 700;
  line-height: 130%; /* 62.4px */
  letter-spacing: -1.2px;
}

.recover-div {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  color: #FFF;
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  line-height: 130%; /* 31.2px */
  letter-spacing: -0.6px;
  animation: colorPoint 1.5s linear infinite;
}

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

.recover-div span {
  color: #FFF600;
  text-align: center;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  font-family: 'Paperlogy';
  font-size: 80px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%; /* 104px */
  letter-spacing: -2px;
}

.st7-bg-wave1 {
  width: 100%;
  position: absolute;
  left: 50%;
  bottom: 895px;
  height: 951px;
  transform: translateX(-50%);
}

.st7-bg-wave2 {
  width: 100%;
  height: 1493px;
  position: absolute;
  left: 50%;
  bottom: -77px;
  transform: translateX(-50%);
}


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

.st8-pc-chicken {
  display: none;
  width: 95%;
  position: relative;
  animation: alternate ddm infinite ease 3s;
}

.st8-chicken {
  width: 100%;
}

.smoke-div {
  width: 125%;
  position: absolute;
  top: -70%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.st8-smoke {
  width: 100%;
  animation: shake 0.8s linear infinite;
}

@keyframes shake {
  0% {
    transform: translateY(2%);
    opacity: 0.6;
  }
  25% {
    transform: translateY(-1%);
  }
  50% {
    transform: translate(-1%, 2%);
    opacity: 1;
  }
  75% {
    transform: translate(2%, 1%);
  }
  100% {
    transform: translateY(2%);
  }
}

#section8 .st-tit {
  position: relative;
}

@keyframes soul_out {
  0% {
  opacity: 0.7;
  } 
  50% {
    opacity: 0;
    transform: translateY(-30%);
  }
  100% {
    opacity: 0;
    transform: translateY(-30%);
  }
}

.soul-tit {
  position: absolute;
  top: -70%;
  left: -15%;
  animation: soul_out 3s infinite ease;;
}

.st8-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
  position: relative;
}

.st8-swiper {
  width: 100%;
}

.st8-swiper img {
  width: 100%;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.st8-mo-chicken {
  width: 100%;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 50%;
  z-index: 7;
  display: flex;
  justify-content: center;
  align-items: center;
}

.chicken-div {
  position: relative;
  animation: alternate ddm infinite ease 3s;
}

.chicken-div .st8-chicken {
  width: 650px;
}

@keyframes ddm {
  0% {
    transform: scale(1);
  }
  50% {
    transform: translateY(20px);
  }
  100% {
    transform: scale(1.02);
  }
}


/* section9 */
#section9 {
  width: 100%;
  background: #D71718;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

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

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

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

.st9-logo {
  z-index: 3;
}

.st9-circle p:nth-child(3) {
  color: #FFF;
  text-align: center;
  font-family: 'Paperlogy';
  font-size: 28px;
  font-weight: 500;
  line-height: 130%; /* 36.4px */
  letter-spacing: -0.7px;
  z-index: 3;
}

.st9-sub {
  box-sizing: border-box;
  padding: 5px;
  border: 1px solid #FFF;
  background: #000;
  z-index: 3;
}

.st9-sub p {
  border: 1px solid #FFF;
  background: #000;
  display: flex;
  box-sizing: border-box;
  padding: 6px 20px;
  justify-content: center;
  align-items: center;
  color: #FFF;
  text-align: center;
  font-family: 'Paperlogy';
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 145%; /* 34.8px */
}

#section9 .st-tit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 5;
}

.st9-circle .chicken-div {
  display: none;
  width: 90%;
  position: absolute;
  bottom: -12%;
}

.st9-circle .chicken-div .st8-chicken {
  width: 100%;
  margin-bottom: 0;
}

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

.st9-bubble.first {
  width: 368px;
  left: -8%;
  top: 38%;
}

.st9-bubble.second {
  width: 455px;
  left: -13%;
  bottom: 16%;
}

.st9-bubble.third {
  width: 400px;
  right: -15%;
  top: 18%;
}

.st9-bubble.fourth {
  width: 500px;
  right: -22%;
  top: 46%;
}

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

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

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

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

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

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

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

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

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

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

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

.review-swiper {
  margin-top: 50px;
  display: none;
}

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

.review-swiper .swiper-slide {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 45 / 64;
  object-fit: cover;
  background: #FFF;
}

.review-swiper .swiper-slide-active {
  border: 2px solid #000;
  transform: scale(1.2);
  transform-origin: center center;
  z-index: 7;
}


/* section10 */
#section10 {
  width: 100%;
  background: url(../img/st10-bg.png);
  background-position: top center !important;
  background-size: cover !important;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.st10-sub {
  width: 328px;
  transition: unset;
}

.st10-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 60px;
  border: 4px solid #D71718;
}

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

.menu-container {
  max-width: 1300px;
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  overflow: hidden;
}

.tab-wrap {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  justify-content: center;
}

.menu-tab {
  display: flex;
  box-sizing: border-box;
  padding: 10px 40px;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  background: #EFEBE5;
  color: rgb(215, 23, 24, 0.7);
  text-align: center;
  font-family: 'Paperlogy';
  font-size: 20px;
  font-weight: 600;
  line-height: 130%; /* 26px */
  letter-spacing: -0.5px;
  cursor: pointer;
  border: 1px solid #EFEBE5;
  transition: 0.2s;
}

.menu-tab.active, .menu-tab:hover {
  color: #FFF;
  border: 1px solid rgba(255, 255, 255, 0.85);
  background: radial-gradient(39% 100% at 50% 0%, #FF7171 0%, #DB0000 100%), radial-gradient(44.08% 39.13% at 50.38% 0%, #0F976B 0%, #006343 100%);
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.12);
}

.menu-wrap {
  width: 100%;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.contain-active {
  display: flex !important;
}

.menu-swiper {
  width: 100%;
}

.menu-swiper .swiper-wrapper{
  align-items: stretch;
}

.menu-slide {
  width: 100%;
  border-radius: 8px;
  display: flex;
  padding: 10px;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  border-radius: 8px;
  background: #F6F4EF;
  transition: 0.2s;
}

.menu-slide-div {
  display: flex;
  flex-direction: column;
  align-items: center;
  display: flex;
  box-sizing: border-box;
  padding: 10px 0;
  gap: 3px;
}

.menu-slide-div p {
  color: #111;
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  line-height: 140%; /* 33.6px */
  letter-spacing: -0.6px;
}

.menu-slide>img {
  width: 100%;
}

.menu-w-icon {
  display: none;
}

.menu-swiper .swiper-slide-active .menu-slide {
  background: radial-gradient(51.78% 88.51% at 34.13% 10.34%, #FE384A 0%, #D62737 100%);
}

.menu-swiper .swiper-slide-active .menu-slide-div p {
  color: #FFF !important;
}

.menu-swiper .swiper-slide-active .menu-icon {
  display: none;
}

.menu-swiper .swiper-slide-active .menu-w-icon {
  display: flex;
}

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

.nav-btn {
  cursor: pointer;
  opacity: 0.3;
}

.nav-btn:hover {
  opacity: 1;
}


/* section11 */
#section11 {
  width: 100%;
  background: url(../img/st11-bg.png);
  background-position: top center !important;
  background-size: cover !important;
  box-sizing: border-box;
  padding: 200px 0 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  position: relative;
  overflow: hidden;
}

.st11-vector {
  width: 1015px;
  position: absolute;
  top: 28%;
  left: 50%;
  transform: translateX(-50%);
}

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

.st11-swiper-container {
  width: calc(50% - 20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.st11-swiper {
  width: 100%;
  overflow: hidden;
}

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

.st11-swiper .st11-item {
  width: 100%;
}

.st11-swiper .swiper-slide-active {
  z-index: 3;
}

.st11-left-tit {
  width: 100%;
  color: #FFF;
  font-size: 32px;
  font-weight: 600;
  line-height: 148%; /* 47.36px */
  letter-spacing: -0.8px;
  display: flex;
  box-sizing: border-box;
  padding: 12px 0;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  background: #000;
}

.st11-left-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  border-radius: 12px;
  overflow: hidden;
}

.st11-left-div {
  width: 100%;
  display: flex;
  box-sizing: border-box;
  padding: 20px 40px;
  justify-content: center;
  align-items: center;
  gap: 20px;
  background: #FFF;
  color: #111;
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  line-height: 130%; /* 36.4px */
  letter-spacing: -0.7px;
}

.st11-left-div span {
  width: calc(100% - 68px);
}

.st11-left-div.last {
  color: #FFF;
  background: radial-gradient(51.78% 88.51% at 34.13% 10.34%, #FE384A 0%, #D62737 100%);
  color: #FFF;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
  font-family: 'Paperlogy';
  font-size: 32px;
  font-weight: 700;
  line-height: 130%; /* 41.6px */
  letter-spacing: -0.8px;
}

.st11-left-div.last .big-txt {
  color: #FFF;
  font-size: 40px;
  font-weight: 700;
  line-height: 130%;
  letter-spacing: -1px;
}

.st11-right-tit {
  color: #FFF;
  text-align: center;
  font-family: 'Paperlogy';
  font-size: 32px;
  font-weight: 700;
  line-height: 120%; /* 38.4px */
  letter-spacing: -0.64px;
  max-width: 400px;
  width: 90%;
  height: 100px;
  display: flex;
  box-sizing: border-box;
  padding: 4px;
  justify-content: center;
  align-items: center;
  border-radius: 9999px;
  background: #D71718;
}

.st11-right-tit span {
  width: 100%;
  height: 100%;
  padding: 12px 40px;
  border-radius: 99px;
  border: 1px solid #FFF;
  background: #D71718;
  display: flex;
  justify-content: center;
  align-items: center;
}

.st11-table-div {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

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

.st11-table th, .st11-table td {
  text-align: center;
  font-size: 24px;
  line-height: 28px; /* 116.667% */
  letter-spacing: -0.6px;
}

.st11-table th {
  width: 33.3%;
  height: 56px;
  box-sizing: border-box;
  padding: 0 16px;
  color: #FFF;
  font-weight: 600;
  background: #111;
}

.st11-table td {
  height: 68px;
  box-sizing: border-box;
  padding: 12px;
  color: #111;
  border-bottom: 1px solid rgba(0, 0, 0, 0.10);
  background: #FFF;
}

.st11-table td:first-child {
  font-weight: 600;
}

.st11-table tr:last-child td {
  border-bottom: none;
}

.st11-table-total {
  width: 100%;
  border-radius: 12px;
  background: radial-gradient(51.78% 88.51% at 34.13% 10.34%, #FE384A 0%, #D62737 100%), #D71718;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: zoom 1.2s linear infinite;
}

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

.st11-table-total p {
  width: 33.3%;
  color: #FFF;
  font-size: 32px;
  font-weight: 700;
  line-height: 28px; /* 28.8px */
  letter-spacing: -0.8px;
  display: flex;
  box-sizing: border-box;
  padding: 20px 2px;
  justify-content: center;
  align-items: center;
}


/* section12 */
#section12 {
  width: 100%;
  background: #D71718;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 120px;
  position: relative;
  overflow: hidden;
}

.st12-chicken {
  position: absolute;
  width: 380px;
  right: 0;
  top: 0;
}

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

.st12-sub-tit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: #FFF;
  text-align: center;
  font-size: 32px;
  font-weight: 500;
  line-height: 148%; /* 47.36px */
  letter-spacing: -0.8px;
}

.st12-sub-tit .line-animation {
  color: #D71718;
}

.st12-sub-tit .line-animation::before {
  background: #FFF;
  transform: scaleX(var(--fill, 1));
}

.st12-container {
  max-width: 1300px;
  width: 90%;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 40px;
  z-index: 3;
}

.st12-box {
  width: calc(50% - 20px);
  aspect-ratio: 7 / 6;
  background-position: center center !important;
  background-size: cover !important;
  border-radius: 12px;
  border: 2px solid #FFF;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.st12-box.first {
  background: url(../img/st12-box-bg.png);
}

.st12-box.second {
  background: url(../img/st12-box-bg2.png);
}

.st12-box-tit {
  display: flex;
  max-width: 400px;
  height: 100px;
  width: 80%;
  padding: 4px;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  border-radius: 9999px;
  background: #000;
}

.st12-box-tit .box-tit-inner {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding: 12px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  border-radius: 99px;
  border: 1px solid #FFF;
  background: #111;
}

.st12-box-tit .box-tit-inner div {
  color: #FFF;
  text-align: center;
  font-family: 'Paperlogy';
  font-size: 32px;
  font-style: normal;
  font-weight: 300;
  line-height: 120%; /* 38.4px */
  letter-spacing: -0.64px;
}

.st12-box-tit .box-tit-inner p {
  color: #FFF;
  text-align: center;
  font-family: 'Paperlogy';
  font-size: 20px;
  font-weight: 300;
  line-height: 120%; /* 24px */
  letter-spacing: -0.4px;
}

.st12-circle {
  max-width: 500px;
  width: 90%;
  aspect-ratio: 1 / 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bg-full {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 500px;
  z-index: 2;
}

.wave01 {
  transform: scale(0.5);
  background: rgba(215, 23, 24);
  opacity: 0.6;
}

.wave02 {
  transform: scale(0.7);
  background: rgba(215, 23, 24);
  opacity: 0.3;
}

.wave03 {
  transform: scale(1);
  background: rgba(215, 23, 24);
  opacity: 0.15;
}

.st12-circle-logo {
  max-width: 160px;
  width: 32%;
  position: relative;
  z-index: 3;
}

.st12-box-triangle {
  max-width: 484px;
  width: 90%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
}

.st12-triangle {
  max-width: 364px;
  width: 100%;
}

.st12-circle-img {
  width: 160px;
  position: absolute;
  transform-origin: center;
}

/* 총 주기 4.1s: pulse 0.7s x 3개 = 2.1s + 2초 대기 */
@keyframes st12-pulse-1 {
  0%    { transform: scale(1); }
  8.5%  { transform: scale(1.1); }
  17%   { transform: scale(1); }
  100%  { transform: scale(1); }
}

@keyframes st12-pulse-2 {
  0%, 17%  { transform: scale(1); }
  25.6%    { transform: scale(1.1); }
  34%      { transform: scale(1); }
  100%     { transform: scale(1); }
}

@keyframes st12-pulse-3 {
  0%, 34%  { transform: scale(1); }
  42.7%    { transform: scale(1.1); }
  51.2%    { transform: scale(1); }
  100%     { transform: scale(1); }
}

.st12-circle-img.first {
  animation: st12-pulse-1 3.1s linear infinite;
}

.st12-circle-img.second {
  animation: st12-pulse-2 3.1s linear infinite;
}

.st12-circle-img.third {
  animation: st12-pulse-3 3.1s linear infinite;
}

.st12-circle-div {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -25%;
}

.st12-circle-div .st12-circle-img {
  position: static;
}

.st12-circle-img.second {
  left: 0;
  bottom: -35%;
}

.st12-circle-img.third {
  right: 0;
  bottom: -35%;
}

.st12-content {
  color: #FFF;
  text-align: center;
  font-size: 32px;
  font-weight: 500;
  line-height: 148%; /* 47.36px */
  letter-spacing: -0.8px;
  z-index: 3;
}

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



/* section13 */
#section13 {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #D71718;
  overflow: hidden;
}

.st13-inner {
  width: 100%;
  background: url(../img/st13-bg.png);
  background-position: center center !important;
  background-size: cover !important;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

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

.st13-left-div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.st13-left-div .line-animation {
  font-size: 32px;
  font-weight: 600;
  line-height: 148%; /* 47.36px */
  letter-spacing: -0.8px;
}

.st13-left-div .st-tit {
  text-align: left;
}

.st13-left-div .st-tit .line-tit {
  display: inline-block;
  margin-top: 10px;
}

.st13-content {
  color: #FFF;
  font-size: 20px;
  font-weight: 400;
  line-height: 150%; /* 30px */
  letter-spacing: -0.5px;
  word-break: keep-all;
}

.st13-txt {
  color: #FFF;
  font-size: 32px;
  font-weight: 500;
  line-height: 148%; /* 47.36px */
  letter-spacing: -0.8px;
}

.st13-container>.st13-txt {
  display: none;
}

.st13-right {
  display: flex;
  align-items: center;
  gap: 30px;
}

.st13-img-div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 90px;
}

.st13-img {
  width: 270px;
}


/* section14 */
#section14 {
  width: 100%;
  height: 560px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
  background: url(../img/st14-bg.png);
  background-position: center center !important;
  overflow: hidden;
}

.st14-logo {
  width: 187px;
}

.st14-txt {
  color: #FFF;
  text-align: center;
  font-family: 'Paperlogy';
  font-size: 40px;
  font-weight: 500;
  line-height: 120%; /* 48px */
  letter-spacing: -0.8px;
  position: relative;
  white-space: nowrap;
}

.st14-txt>span {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  z-index: 2;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -53%);
}

.st14-txt .vertical-txt {
  color: #FFF;
  font-family: 'Paperlogy';
  font-size: 60px;
  font-style: normal;
  font-weight: 800;
  line-height: 100%; /* 60px */
  letter-spacing: 5px;
  writing-mode: tb;
}

.st14-txt img {
  width: 532px;
}


/* section15 */
#section15 {
  width: 100%;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.st15-left {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  background: url(../img/st15-left.png);
  background-position: center center !important;
  background-size: cover !important;
}

.st15-logo {
  width: 174px;
}

.st15-left .st-tit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.st15-left .st-tit .line-animation {
  padding: 2px;
}

.benefit-container {
  max-width: 570px;
  width: 85%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.benefit-box {
  width: calc(50% - 10px);
  aspect-ratio: 2 / 1.1;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.60);
  backdrop-filter: blur(6px);
  display: flex;
  box-sizing: border-box;
  padding: 20px 0;
  justify-content: center;
  align-items: flex-start;
  position: relative;
}

.benefit-box p {
  color: #111;
  text-align: center;
  font-family: 'Paperlogy';
  font-size: 24px;
  font-weight: 700;
  line-height: 120%; /* 28.8px */
  letter-spacing: -0.48px;
}

.benefit-zero-div {
  position: absolute;
  width: 110%;
  left: 50%;
  transform: translateX(-50%);
  bottom: -20px;
}

.benefit-zero {
  width: 100%;
}

.go-contact {
  display: flex;
  width: 240px;
  height: 42px;
  box-sizing: border-box;
  padding: 0 40px;
  justify-content: center;
  align-items: center;
  color: #FFF;
  font-family: 'Paperlogy';
  font-size: 18px;
  font-weight: 600;
  line-height: 130%; /* 23.4px */
  letter-spacing: -0.45px;
  text-transform: uppercase;
}

.st15-right {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 60px;
  background: url(../img/st15-right.png);
  background-position: center center !important;
  background-size: cover !important;
}

.cost-container {
  max-width: 570px;
  width: 85%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  position: relative;
}

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

.cost-table th, .cost-table td {
  color: #111;
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  line-height: 28px; /* 116.667% */
  letter-spacing: -0.6px;
}

.cost-table th {
  width: 50%;
  height: 56px;
  padding: 0 16px;
  border-radius: 12px 12px 0 0;
  background: #000;
}

.cost-table td {
  height: 68px;
  font-weight: 400;
  border-bottom: 1px solid rgba(0, 0, 0, 0.10);
  background: #FFF;
  box-sizing: border-box;
  padding: 12px;
}

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

.cost-total {
  width: 100%;
  border-radius: 12px;
  background: #D71718;
  display: flex;
  justify-content: flex-start;
}

.cost-total p {
  width: 50%;
  display: flex;
  box-sizing: border-box;
  padding: 20px 16px;
  justify-content: center;
  align-items: center;
  color: #FFF;
  font-size: 24px;
  font-weight: 700;
  line-height: 28px; /* 116.667% */
  letter-spacing: -0.6px;
}

.cost-point {
  display: flex;
  width: 260px;
  aspect-ratio: 13 / 15;
  box-sizing: border-box;
  padding: 10px;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 12px;
  bottom: 32px;
  background: radial-gradient(51.78% 88.51% at 34.13% 10.34%, #FE384A 0%, #D62737 100%);
  transition: unset;
}

.cost-point-inner {
  width: 100%;
  height: 100%;
  display: flex;
  box-sizing: border-box;
  padding: 10px 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  border: 2px solid #FFF;
  backdrop-filter: blur(6px);
}

.cost-point-inner p {
  color: #D71718;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 130%; /* 20.8px */
  letter-spacing: -0.4px;
  display: flex;
  box-sizing: border-box;
  padding: 6px 12px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 99px;
  background: #FFF;
}

.cost-point-inner div {
  color: #FFF;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
  font-family: 'Paperlogy';
  font-size: 32px;
  font-weight: 700;
  line-height: 130%; /* 41.6px */
  letter-spacing: -0.8px;
}


/* section16 */
#section16 {
  box-sizing: border-box;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 60px;
  justify-content: center;
  align-items: center;
  background: url(../img/st16-bg.png);
  background-position: bottom center !important;
  background-size: cover !important;
  overflow: hidden;
}

.process-container {
  max-width: 1300px;
  width: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px 10px;
  position: relative;
}

.process-container .mi-arrow {
  display: none;
}

.process-box {
  width: calc(25% - 45px);
  aspect-ratio: 1 / 1;
  display: flex;
  box-sizing: border-box;
  padding: 20px 10px 10px 10px;
  align-items: center;
  justify-content: center;
  position: relative;
  background: #FFF;
}

.process-num {
  display: flex;
  width: 60px;
  justify-content: center;
  align-items: center;
  background: #FFF;
  position: absolute;
  left: 50%;
  top: 5px;
  transform: translateX(-50%);
  color: #D71718;
  text-align: center;
  font-family: 'Paperlogy';
  font-size: 24px;
  font-weight: 600;
  line-height: 120%; /* 28.8px */
  letter-spacing: -0.6px;
  z-index: 3;
}

.process-box-inner {
  width: 100%;
  height: 100%;
  display: flex;
  box-sizing: border-box;
  padding: 40px 0 10px 0;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  border: 2px solid #D71718;
  background: #FFF;
  backdrop-filter: blur(6px);
}

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

.process-tit {
  color: #D71718;
  text-align: center;
  font-family: 'Paperlogy';
  font-size: 24px;
  font-weight: 600;
  line-height: 120%; /* 28.8px */
  letter-spacing: -0.6px;
}

.process-content {
  color: #111;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 130%; /* 20.8px */
  letter-spacing: -0.4px;
  word-break: keep-all;
}

.grand-open {
  background: url(../img/grand-open.png);
  background-position: center center !important;
  background-size: cover !important;
  border: none;
}

.grand-open .process-box-inner {
  background: transparent;
  backdrop-filter: initial;
  border: 2px solid #FFF;
  justify-content: center;
  padding: 10px 0;
}

.grand-open .process-num {
  background: #D71718;
  color: #FFF;
}

.grand-open-text {
  color: #FFF;
  text-align: center;
  font-family: 'Paperlogy';
  font-size: 40px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -1px;
}

.process-badge-div {
  width: 220px;
  right: -103px;
  top: -125px;
  position: absolute;
  z-index: 3;
}

.process-badge {
  width: 100%;
}

.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) - 5deg)) scale(0.9);
  }
  15%, 25%, 35%, 45% {
    transform: rotate(calc(var(--base-rotate) + 5deg)) scale(1.1);
  }
  20%, 30%, 40% {
    transform: rotate(calc(var(--base-rotate) - 5deg)) scale(1.1);
  }
  50% {
    transform: rotate(var(--base-rotate)) scale(1);
  }
}

.ani-tada {
  animation: tada-tilted 2s cubic-bezier(.215, .61, .355, 1) both infinite;
}


/* contact */
#contact {
  box-sizing: border-box;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url(../img/contact-bg.png);
  background-attachment: fixed;
  background-position: center center !important;
}

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

.contact-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  position: relative;
}

.contact-left-img {
  width: 550px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -60%);
}

.contact-left-div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  z-index: 2;
}

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

.contact-left p {
  color: #FFF;
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  line-height: 130%; /* 26px */
  letter-spacing: -0.5px;
  z-index: 2;
}

.contact-form-box {
  display: flex;
  max-width: 800px;
  width: 62%;
  box-sizing: border-box;
  padding: 12px;
  align-items: center;
  justify-content: center;
  border: 1px solid #A90000;
  background: url(../img/chicken-pattern.png);
  background-repeat: repeat;
}

.contact-form {
  display: flex;
  width: 100%;
  box-sizing: border-box;
  padding: 60px;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #FFF;
}

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

.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;
  border: 1px solid rgba(0, 0, 0, 0.50);
  background: #FFF;
}

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

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

textarea {
  height: 140px;
  resize: none;
}

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

.item label span {
  color: #999 !important; 
  font-weight: 700 !important;
}

.item .select-wrap {
  position: relative;
}

.item .select-wrap .select-box {
  width: 100%;
  display: flex;
  height: 44px;
  box-sizing: border-box;
  padding: 10px;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.50);
  background: #FFF;
  color: rgba(0, 0, 0, 0.50);
  font-size: 16px;
  font-weight: 300;
  line-height: 24px; /* 150% */
  letter-spacing: -0.4px;
}

.item .select-wrap .select-box.selected {
  color: #1A1A1A !important;
}

.item .select-wrap .arrow {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.item .select-wrap .select-child {
  width: 100%;
  box-sizing: border-box;
  padding: 10px;
  border: none;
  background: #FFF;
  box-sizing: border-box;
  position: absolute;
  top: 47px;
  left: 0;
  font-size: 16px;
  max-height: 185px;
  overflow-y: scroll;
  display: none;
  z-index: 10;
  border: 1px solid rgba(0, 0, 0, 0.50);
}

.item .select-wrap .select-child .option {
  margin-bottom: 10px;
  cursor: pointer;
}

.item .select-wrap .select-child .option:hover {
  color: #D02326;
}

.item .select-wrap .select-child .option:nth-last-child(1) {
  margin-bottom: 0;
}

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

.form-tab {
  width: calc(50% - 4px);
  height: 44px;
  box-sizing: border-box;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.50);
  background: #FFF;
  color: rgba(0, 0, 0, 0.50);
  font-size: 16px;
  line-height: 24px; /* 150% */
  font-weight: 300;
  letter-spacing: -0.4px;
  cursor: pointer;
  transition: 0.1s !important;
}

.this, .have {
  color: #D71718;
  border: 1px solid #D71718;
  font-weight: 600;
}

.form-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  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: 1px solid rgba(0, 0, 0, 0.50);
}

.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: #D71718;
  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;
}

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

.c-btn {
  width: 150px;
  height: 42px;
  background: radial-gradient(39% 100% at 50% 0%, #FF7171 0%, #DB0000 100%);
  display: flex;
  box-sizing: border-box;
  padding: 0 40px;
  justify-content: center;
  align-items: center;
  color: #FFF;
  font-size: 18px;
  line-height: normal;
  font-weight: 600;
  letter-spacing: -0.45px;
  border: none;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.c-btn::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #A90000;
  opacity: 0;
  z-index: 2;
  transition: opacity 0.1s;
}

.c-btn:hover::after {
  opacity: 1;
}

.c-btn span {
  z-index: 3;
}


@media(min-width: 1700px) {
  .left-swiper-container {
    left: 150px;
  }
  .right-swiper-container {
    right: 150px;
  }
}

@media(max-width: 1500px) {
  .st4-marquee.left {
    left: 75px;
  }
  .st4-marquee.right {
    right: 75px;
  }
  .left-swiper-container {
    left: 80px;
  }
  .right-swiper-container {
    right: 80px;
  }
  .st9-bubble.first {
    width: 338px;
  }
  .st9-bubble.second {
    width: 415px;
    left: -10%;
  }
  .st9-bubble.third {
    width: 360px;
    right: -9%;
  }
  .st9-bubble.fourth {
    width: 430px;
    right: -15%;
  }
  #section11 {
    padding: 150px 0 120px;
  }
  .process-box-inner {
    padding: 30px 0 10px;
  }
  .process-badge-div {
    width: 190px;
    right: -75px;
    top: -113px;
  }
}

@media(max-width: 1400px) {
  .st7-table-free {
    right: 25px;
  }
  .st7-item-tit {
    font-size: 40px;
    letter-spacing: -1px;
  }
  .st7-item-tit svg {
    width: 15px;
    height: 15px;
  }
  .highest-sale {
    font-size: 28px;
    letter-spacing: -0.7px;
  }
  .highest-sale span {
    font-size: 44px;
    letter-spacing: -1.1px;
  }
  .recover-div span {
    font-size: 72px;
    letter-spacing: -1.8px;
  }
  .st13-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 50px;
  }
  .st13-left {
    gap: 50px;
  }
  .st13-left .st13-txt {
    display: none;
  }
  .st13-container>.st13-txt {
    display: block;
  }
  .st13-img-div {
    gap: 70px;
  }
  .st13-img {
    width: 320px;
  }
  .st13-right {
    gap: 70px;
  }
}

@media(max-width: 1350px) {
  .process-box {
    aspect-ratio: 1 / 1.05;
  }
}

@media (max-width: 1280px) {
  .main-center {
    width: 80%;
  }
  .main-container p {
    font-size: 64px;
    letter-spacing: -1.6px;
  }
  .main-bubble {
    font-size: 20px;
    letter-spacing: -0.5px;
  }
  .eng-tit-div {
    bottom: -1%;
  }
  .eng-tit {
    font-size: 100px;
    letter-spacing: -2.5px;
  }
  .st2-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }
  .st2-graph-wrap, .st2-graph-box {
    width: 100%;
  }
  .st2-graph {
    height: auto;
    aspect-ratio: 2 / 1;
  }
  .interview-box-inner {
    width: 400px;
  }
  .interview-video {
    width: calc(100% - 400px);
  }
  .interview-comment {
    font-size: 32px;
    letter-spacing: -0.8px;
  }
  .interview-box-inner>p {
    font-size: 20px;
    letter-spacing: -0.5px;
  }
  .st3-wrap {
    gap: 40px;
  }
  .st3-div {
    gap: 20px;
  }
  .st3-txt {
    font-size: 28px;
    letter-spacing: -0.7px;
  }
  .st4-txt {
    font-size: 28px;
    letter-spacing: -0.7px;
  }
  .st4-marquee {
    padding: 12px;
  }
  .st4-marquee-txt {
    font-size: 56px;
    letter-spacing: -1.4px;
  }
  .st4-box {
    padding: 30px 30px 20px;
  }
  .st4-box-tit {
    font-size: 32px;
    letter-spacing: -0.8px;
  }
  .st4-box-txt {
    font-size: 20px;
    letter-spacing: -0.5px;
  }
  .st4-box-num {
    top: 10px;
  }
  #section5 {
    padding: 100px 0 120px;
    gap: 50px;
  }
  .st5-sub {
    font-size: 28px;
    letter-spacing: -0.7px;
  }
  .st5-point {
    font-size: 32px;
    letter-spacing: -0.8px;
  }
  .st5-point span {
    font-size: 56px;
    letter-spacing: -1.4px;
  }
  .st5-container {
    gap: 90px;
  }
  .st5-left-table {
    width: 360px;
  }
  .st5-left-table>p {
    font-size: 20px;
    letter-spacing: -0.5px;
  }
  .left-table-div, .right-table-div {
    padding: 0 10px;
  }
  .left-table-div .big-txt {
    width: calc(100% - 110px);
  }
  .left-table-div .big-txt {
    font-size: 28px;
    letter-spacing: -0.7px;
  }
  .st5-right-table {
    width: 420px;
  }
  .st5-right-table>p {
    font-size: 32px;
    letter-spacing: -0.8px;
  }
  .right-table-div {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
  .right-table-div .big-txt {
    font-size: 32px;
    letter-spacing: -0.8px;
  }
  .right-table-div img {
    width: 140px;
  }
  .vs {
    width: 115px;
  }
  .st5-txt {
    font-size: 20px;
    letter-spacing: -0.5px;
  }
  .caution {
    font-size: 18px;
    letter-spacing: -0.45px;
    margin-top: -26px;
  }
  .st5-chicken {
    width: 470px;
  }
  .st5-top, .st6-top {
    gap: 32px;
  }
  .st6-top .st-tit {
    gap: 8px;
  }
  .st6-txt1 {
    font-size: 28px;
    letter-spacing: -0.7px;
  }
  .st6-txt2 {
    font-size: 32px;
    letter-spacing: -0.8px;
  }
  .st6-item {
    font-size: 20px;
    letter-spacing: -0.5px;
  }
  .st6-wrap.minus .st6-item:nth-child(3) {
    border-right: 1px solid #DDD;
  }
  .st6-item img {
    width: 90px;
  }
  .chicken-div .st8-chicken {
    width: 580px;
  }
  #section7 {
    gap: 100px;
  }
  .st7-table-tit p {
    font-size: 20px;
    letter-spacing: -0.5px;
  }
  .st7-table th, .st7-table td {
    font-size: 20px;
    letter-spacing: -0.5px;
  }
  .st7-table td {
    height: 60px;
  }
  .st7-table-total p {
    font-size: 20px;
    letter-spacing: -0.5px;
  }
  .st7-table-total div {
    font-size: 32px;
    letter-spacing: -0.8px;
  }
  .st7-table-free {
    width: 75px;
    right: 23px;
  }
  .st7-interior-box .interior-inner {
    gap: 40px;
  }
  .st7-interior-tit {
    font-size: 40px;
    letter-spacing: -1px;
  }
  .st7-interior-txt {
    font-size: 20px;
    letter-spacing: -0.5px;
  }
  .st7-interior-cost {
    padding: 5px;
  }
  .st7-interior-cost p {
    font-size: 32px;
    letter-spacing: -0.8px;
    padding: 8px 32px;
  }
  .st7-interior-cost p span {
    font-size: 72px;
    letter-spacing: -1.8px;
  }
  .interior-inner .right {
    max-width: 580px;
    width: 50%;
  }
  .st7-bg-wave1, .st7-bg-wave2 {
    width: auto;
  }
  .highest-sale {
    font-size: 24px;
    letter-spacing: -0.6px;
    padding: 12px;
  }
  .highest-sale span {
    font-size: 40px;
    letter-spacing: -1px;
  }
  .recover-div span {
    font-size: 64px;
    letter-spacing: -1.6px;
  }
  .st9-circle {
    max-width: 920px;
  }
  .st9-circle p:nth-child(3) {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .left-swiper-container {
    left: 40px;
  }
  .right-swiper-container {
    right: 40px;
  }
  .left-swiper-container .swiper-slide, .right-swiper-container .swiper-slide {
    width: 270px;
  }
  .st10-sub {
    width: 310px;
  }
  #section11 {
    padding: 120px 0 100px;
  }
  .st11-left-tit {
    font-size: 28px;
    letter-spacing: -0.7px;
  }
  .st11-left-div {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .st11-left-div.last {
    font-size: 28px;
    letter-spacing: -0.7px;
  }
  .st11-left-div.last .big-txt {
    font-size: 32px;
    letter-spacing: -0.8px;
  }
  .st11-right-tit {
    height: 90px;
    font-size: 28px;
    letter-spacing: -0.7px;
  }
  .st11-right-tit span {
    padding: 6px 40px;
  }
  .st11-table th, .st11-table td {
    font-size: 20px;
    letter-spacing: -0.5px;
  }
  .st11-table td {
    height: 60px;
  }
  .st11-table-total p {
    padding: 16px 8px;
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .st12-chicken {
    width: 310px;
  }
  .st12-sub-tit, .st12-content {
    font-size: 28px;
    letter-spacing: -0.7px;
  }
  .st12-box-tit {
    height: 92px;
    top: -46px;
  }
  .st12-box-tit .box-tit-inner div {
    font-size: 28px;
    letter-spacing: -0.7px;
  }
  .st12-box-tit .box-tit-inner p {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
  .st12-circle-img {
    width: 145px;
  }
  .st12-circle-div {
    top: -18%;
  }
  .st12-circle-img.second {
    left: 4%;
    bottom: -25%;
  }
  .st12-circle-img.third {
    right: 4%;
    bottom: -25%;
  }
  .st13-left-div .line-animation {
    font-size: 28px;
    letter-spacing: -0.7px;
  }
  .benefit-box {
    aspect-ratio: 2 / 1.2;
  }
  .cost-point {
    width: 48%;
    bottom: 8%;
    right: 8px;
  }
  .cost-point-inner {
    gap: 12px;
  }
  .cost-point-inner div {
    font-size: 28px;
    letter-spacing: -0.7px;
  }
  .process-box {
    width: calc(33.3% - 40px);
    aspect-ratio: 1 / 0.9;
  }
  .process-box-inner {
    padding: 35px 0 10px;
  }
  .process-container .mi-arrow {
    display: block;
  }
  .process-container .mi-no-arrow {
    display: none;
  }
  .process-badge-div {
    right: -45px;
    top: -110px;
  }
  .contact-form {
    padding: 40px 30px;
  }
}

@media(max-width: 1150px) {
  .st7-item-tit {
    font-size: 32px;
    letter-spacing: -0.8px;
  }
  .st7-item-tit svg {
    width: 12px;
    height: 12px;
  }
  .highest-sale {
    font-size: 20px;
    letter-spacing: -0.5px;
  }
  .highest-sale span {
    font-size: 32px;
    letter-spacing: -0.8px;
  }
  .recover-div span {
    font-size: 56px;
    letter-spacing: -1.4px;
  }
}

@media(max-width: 1100px) {
  #main {
    height: auto;
  }
  .main-container {
    transform: translateY(-70%);
  }
  .main-bubble-wrap {
    width: 90%;
    flex-direction: column;
    align-items: flex-start;
    gap: 300px;
    top: 41%;
  }
  .main-bubble-div {
    gap: 20px;
    align-items: flex-end;
  }
  .main-bubble-div:last-child {
    margin-left: auto;
  }
  .main-bubble.first {
    margin-right: 65px;
  }
  .main-bubble.fourth {
    margin-right: 80px;
  }
  .st7-table-tit p {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
  .st7-table th, .st7-table td {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
  .st7-table th {
    height: 52px;
  }
  .st7-table td {
    height: 54px;
  }
  .st7-table-total p {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
  .st7-table-free {
    width: 70px;
    right: 19px;
    top: 102px;
  }
  .left-swiper-container, .right-swiper-container {
    display: none;
  }
  .st9-circle {
    max-width: 990px;
    width: 120%;
    justify-content: flex-start;
    padding-top: 80px;
    gap: 24px;
  }
  .st9-circle .chicken-div {
    display: block;
    margin: 0 auto;
  }
  .st9-bubble {
    top: unset !important;
  }
  .st9-bubble.first {
    left: 9%;
    bottom: 25%;
  }
  .st9-bubble.second {
    left: 9%;
    bottom: 6%;
  }
  .st9-bubble.third {
    right: 6%;
    bottom: 22%;
  }
  .st9-bubble.fourth {
    right: 7%;
    bottom: -2%;
  }
  .review-swiper {
    display: block;
  }
  #section15 {
    flex-direction: column;
  }
  .st15-left, .st15-right {
    width: 100%;
  }
  .st15-right {
    gap: 50px;
  }
  .benefit-container, .cost-container {
    width: 100%;
  }
  .cost-point {
    bottom: 3%;
  }
  .process-box {
    aspect-ratio: 1 / 0.95;
  }
  .process-box-inner {
    padding: 25px 0 10px;
  }
  .contact-container {
    width: 100%;
    flex-direction: column;
    gap: 60px;
  }
  .contact-left-img {
    width: 140%;
    transform: translate(-50%, -57%);
  }
  .contact-left-div {
    gap: 12px;
  }
  .contact-left-div div {
    gap: 4px;
  }
  .contact-left {
    gap: 20px;
  }
  .contact-form-box {
    max-width: unset;
    width: 90%;
  }
}

@media(max-width: 1024px) {
  .interview-box {
    flex-direction: column;
  }
  .interview-video iframe {
    height: auto;
  }
  .interview-container {
    align-items: center;
  }
  .interview-container>p {
    font-size: 18px;
    letter-spacing: -0.45px;
    text-align: center;
  }
  .interview-box-inner, .interview-video {
    width: 100%;
  }
  .interview-box-inner {
    padding: 40px 0;
  }
  .st3-container {
    flex-direction: column;
    gap: 60px;
  }
  .st3-wrap, .st3-div {
    align-items: center;
  }
  .st3-txt, .st3-content {
    text-align: center;
    align-items: center;
  }
  .st3-chicken-div {
    width: 80%;
  }
  .st4-box {
    padding: 25px 25px 15px;
  }
  .st4-box-tit {
    font-size: 28px;
    letter-spacing: -0.7px;
  }
  .st4-box-txt {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
  .st4-box-num {
    top: 7px;
  }
  .st5-chicken {
    width: 400px;
  }
  .st7-table-tit {
    font-size: 20px;
    letter-spacing: -0.5px;
  }
  .st7-table-wrap {
    display: none;
  }
  .st7-swiper {
    display: block;
  }
  .st7-table-free {
    width: 72px;
    right: 38px;
    top: 99px;
  }
  .st7-interior-box .interior-inner {
    flex-direction: column;
    gap: 60px;
  }
  .interior-inner .right {
    max-width: 800px;
    width: 90%;
  }
  .interior-inner .right, .st7-interior-wrap, .st7-interior-wrap img {
    height: auto;

  }
  #section8 {
    padding: 240px 0 100px;
    gap: 40px;
  }
  .st8-pc-chicken {
    display: block;
  }
  .st8-mo-chicken {
    display: none;
  }
  .smoke-div {
    width: 95%;
    top: -40%;
  }
  .st11-left-tit {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .st11-left-div {
    font-size: 20px;
    letter-spacing: -0.5px;
    padding: 20px;
  }
  .st11-left-div img {
    width: 40px;
  }
  .st11-left-div.last {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .st11-left-div.last .big-txt {
    font-size: 28px;
    letter-spacing: -0.7px;
  }
  .st11-right-tit {
    height: 80px;
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .st11-table th, .st11-table td {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
  .st11-table td {
    height: 54px;
  }
  .st11-table-total p {
    font-size: 20px;
    letter-spacing: -0.5px;
  }
  .st12-container {
    flex-direction: column;
    gap: 100px;
  }
  .st12-box {
    width: 100%;
  }
  .st12-circle {
    max-width: 700px;
  }
  .st12-box-triangle {
    max-width: 700px;
  }
  .st12-triangle {
    max-width: 600px;
    width: 85%;
  }
  .st12-circle-img {
    width: 200px;
  }
  .st12-wave {
    width: 150%;
    left: 50%;
    transform: translateX(-50%);
  }
  .st14-logo {
    width: 160px;
  }
  .st14-txt {
    font-size: 32px;
    letter-spacing: -0.8px;
  }
  .st14-txt .vertical-txt {
    font-size: 56px;
  }
  .st14-txt img {
    width: 485px;
  }
  .process-container {
    gap: 30px 10px;
  }
  .process-box {
    aspect-ratio: 1 / 1;
    width: calc(33.3% - 33.3px);
  }
  .process-container>svg {
    width: 30px;
    height: 30px;
  }
  .process-box-inner img {
    width: 55px;
  }
  .process-num, .process-tit {
    font-size: 20px;
    letter-spacing: -0.5px;
  }
  .process-num {
    top: 1px;
  }
  .process-content {
    font-size: 14px;
    letter-spacing: -0.35px;
  }
  .process-badge-div {
    width: 170px;
    top: -95px;
  }
  .contact-form {
    padding: 30px;
  }
  .flex-input {
    gap: 24px;
  }
}

@media(max-width: 1000px) {
  .st7-item-wrap {
    flex-direction: column;
  }
  .st7-item {
    max-width: 700px;
    width: 100%;
  }
  .st7-item-tit {
    font-size: 40px;
    letter-spacing: -1px;
  }
  .st7-item-tit svg {
    width: 15px;
    height: 15px;
  }
  .highest-sale {
    font-size: 20px;
    letter-spacing: -0.5px;
  }
  .highest-sale span {
    font-size: 40px;
    letter-spacing: -1px;
  }
  .recover-div span {
    font-size: 56px;
    letter-spacing: -1.4px;
  }
  .st7-bg-wave1 {
    height: 1073px;
    bottom: 1600px;
  }
  .st7-bg-wave2 {
    height: 2300px;
  }
}

@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-container {
    transform: translateY(-35%);
  }
  .main-bubble-wrap {
    top: 48%;
    gap: 270px;
  }
  .main-bubble {
    font-size: 18px;
    letter-spacing: -0.45px;
    padding: 8px 16px;
  }
  .main-bubble img {
    width: 40px;
  }
  .main-container p {
    font-size: 56px;
    letter-spacing: -1.4px;
  }
  .main-chicken.left {
    left: -15%;
  }
  .main-chicken.right {
    right: -15%;
  }
  .eng-tit-div {
    bottom: -2%;
  }
  .eng-tit {
    font-size: 88px;
    letter-spacing: -2px;
  }
  .marquee .swiper-slide {
    width: 160px !important;
    margin-right: 24px;
  }
  .st2-graph {
    aspect-ratio: 2 / 1;
  }
  .st2-graph-item {
    padding: 0 10px;
  }
  .bar-div div p span {
    display: none;
  }
  .graph-month p {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
  .st3-container {
    gap: 50px;
  }
  .st3-txt {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .st3-content {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
  .st3-chicken-div {
    width: 100%;
  }
  .st4-marquee.left {
    left: 45px;
  }
  .st4-marquee.right {
    right: 45px;
  }
  .st4-txt {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .st4-marquee-txt {
    font-size: 48px;
    letter-spacing: -1.2px;
  }
  .st4-box {
    padding: 20px 20px 15px;
    gap: 15px;
  }
  .st4-box-inner {
    gap: 7.5px;
  }
  .st4-box-tit {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .st4-box-txt {
    font-size: 16px;
    letter-spacing: -0.4px;
  }
  .st4-box-num {
    top: 3px;
  }
  #section5 {
    padding: 80px 0 120px;
  }
  .st5-sub {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .st5-point {
    font-size: 28px;
    letter-spacing: -0.7px;
  }
  .st5-point span {
    font-size: 48px;
    letter-spacing: -1.2px;
  }
  .st5-container {
    width: 90%;
    flex-direction: column;
    gap: 200px;
  }
  .st5-left-table {
    max-width: 420px;
    width: 80%;
  }
  .st5-right-table {
    max-width: 500px;
    width: 90%;
  }
  .right-table-div {
    gap: 20px;
  }
  .vs {
    top: 44.5%;
  }
  .st5-txt {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
  .caution {
    font-size: 16px;
    letter-spacing: -0.4px;
  }
  .st5-chicken {
    width: 350px;
  }
  .st6-inner-wrap {
    gap: 50px;
  }
  .st5-top, .st6-top {
    gap: 24px;
  }
  .st6-top .st-tit {
    gap: 6px;
  }
  .st6-container {
    gap: 32px;
  }
  .st6-txt1 {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .st6-txt2 {
    font-size: 28px;
    letter-spacing: -0.7px;
  }
  .st6-item {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
  .st6-item img {
    width: 80px;
  }
  .st6-wrap.plus {
    flex-wrap: wrap;
    gap: 20px 0;
  }
  .st6-wrap.plus .st6-item {
    width: 33.3%;
  }
  .st6-wrap.plus .st6-item:nth-child(3) {
    border-right: none;
  }
  .st7-interior-box, .st7-interior-wrap {
    padding: 5px;
  }
  .st9-circle {
    max-width: unset;
    width: 140%;
  }
  .st9-circle .chicken-div {
    width: 80%;
    bottom: 4%;
  }
  .review-swiper {
    margin-top: -90px;
  }
  .st9-bubble.first {
    left: 20%;
    bottom: 35%;
  }
  .st9-bubble.second {
    left: 20%;
    bottom: 20%;
  }
  .st9-bubble.third {
    right: 18%;
    bottom: 32%;
  }
  .st9-bubble.fourth {
    right: 19%;
    bottom: 12%;
  }
  .st10-inner {
    gap: 50px;
  }
  .st10-top {
    gap: 16px;
  }
  .st10-sub {
    width: 275px;
  }
  .menu-slide-div img {
    width: auto;
    height: 28px;
  }
  .menu-slide-div p {
    font-size: 20px;
    letter-spacing: -0.5px;
  }
  #section11 {
    padding: 100px 0 80px;
  }
  .st11-container {
    flex-direction: column;
    gap: 60px;
  }
  .st11-item, .st11-swiper-container {
    max-width: 650px;
    width: 100%;
  }
  .st11-left-div span {
    width: 55%;
  }
  .st11-right-tit {
    width: fit-content;
  }
  .st11-table-total p {
    font-size: 28px;
    letter-spacing: -0.7px;
  }
  #section12 {
    gap: 100px;
  }
  .st12-top {
    gap: 32px;
  }
  .st12-circle-div, .st12-circle-img {
    max-width: 180px;
    width: 35%;
  }
  .st12-circle-div .st12-circle-img {
    width: 100%;
  }
  .st12-circle-div {
    top: -12%;
  }
  .st12-circle-img.second {
    left: 20px;
    bottom: -15%;
  }
  .st12-circle-img.third {
    right: 20px;
    bottom: -15%;
  }
  .st12-sub-tit, .st12-content {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .st12-box-tit {
    height: 85px;
    top: -42.5px;
  }
  .st12-box-tit .box-tit-inner div {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .st12-box-tit .box-tit-inner p {
    font-size: 16px;
    letter-spacing: -0.4px;
  }
  .st12-content {
    margin-top: -20px;
  }
  .st13-left-div .line-animation {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .st13-txt {
    font-size: 28px;
    letter-spacing: -0.7px;
  }
  .st13-right, .st13-img-div {
    gap: 50px;
  }
  .st13-img {
    width: 290px;
  }
  #section14 {
    height: 460px;
  }
  .st14-txt {
    font-size: 28px;
    letter-spacing: -0.7px;
  }
  .st14-txt>span {
    gap: 12px;
  }
  .st14-txt .vertical-txt {
    font-size: 48px;
  }
  .st14-txt img {
    width: 435px;
  }
  .process-container {
    gap: 10px;
  }
  .process-container>svg {
    display: none !important;
  }
  .process-box {
    padding: 10px 5px 5px;
    width: calc(33.3% - 6.65px);
  }
  .process-box-inner {
    padding: 24px 0 10px;
  }
  .contact-container {
    gap: 50px;
  }
  .contact-left-img {
    width: 130%;
  }
  .contact-left-div img {
    width: 50px;
  }
  .contact-left p {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
  .contact-form-box {
    padding: 8px;
  }
}

@media (max-width: 768px) {
  .layer-popup {
    position: fixed;
    top: 5%;
    left: 5%;
  }
  .main-container {
    transform: translateY(-55%);
  }
  .main-bubble-wrap {
    top: 45%;
  }
  #section2 {
    padding: 120px 20px 70px;
    gap: 40px;
  }
  .st2-container, .interview-container {
    width: 100%;
  }
  .interview-container {
    margin-top: 20px;
  }
  .st3-container {
    width: 100%;
  }
  .st4-container {
    width: 100%;
    flex-wrap: wrap;
    gap: 10px;
  }
  .st4-box {
    width: calc(50% - 5px);
  }
  #section5 {
    padding: 70px 16px 120px;
    gap: 40px;
  }
  .st5-container {
    width: 100%;
  }
  .st5-left-table {
    width: 85%;
  }
  .st5-right-table {
    width: 95%;
  }
  #section5 .caution {
    margin-top: -20px;
  }
  .st6-inner {
    padding: 10px;
  }
  .st6-inner-wrap {
    gap: 40px;
  }
  .st6-container {
    width: calc(100% - 32px);
  }
  .st6-line-div {
    width: 100%;
  }
  #section7 {
    padding: 70px 0;
  }
  .st8-pc-chicken {
    margin-bottom: 20px;
  }
  #section8 {
    padding: 180px 0 70px;
    gap: 20px;
  }
  .soul-tit {
    top: -30%;
    left: -28%;
  }
  .st9-circle {
    width: 170%;
  }
  .st10-inner {
    padding: 70px 16px;
    gap: 40px;
  }
  .menu-container {
    width: 100%;
  }
  #section11 {
    padding: 70px 20px;
    gap: 40px;
  }
  .st11-container {
    width: 100%;
    gap: 40px;
  }
  .st12-top {
    gap: 24px;
  }
  .st12-container {
    width: 100%;
  }
  .st12-content {
    margin-top: -40px;
  }
  .st13-container {
    width: 100%;
  }
  .st13-img {
    width: 250px;
  }
  .benefit-container, .cost-container {
    max-width: unset;
  }
  .st15-left .st-tit {
    gap: 12px;
  }
  .st15-right {
    gap: 40px;
  }
  .cost-point {
    width: 45%;
    aspect-ratio: 14.5 / 15;
    right: 2%;
  }
  .process-container {
    width: 100%;
  }
  .process-box {
    width: calc(50% - 5px);
    aspect-ratio: 1 / 0.7;
  }
  .process-badge-div {
    width: 150px;
    left: 50%;
    transform: translateX(-50%);
    right: unset;
    top: -58px;
  }
  .contact-container {
    gap: 40px;
  }
  .contact-form-box {
    width: 100%;
  }
}

@media(max-width: 700px) {
  .process-box {
    aspect-ratio: 1 / 0.8;
  }
}

@media (max-width: 650px) {
  .main-container {
    transform: translateY(-55%);
  }
  .main-bubble-wrap {
    top: 46%;
    gap: 240px;
  }
  .main-bubble {
    font-size: 16px;
    letter-spacing: -0.4px;
  }
  .main-bubble img {
    width: 35px;
  }
  .main-container p {
    font-size: 48px;
    letter-spacing: -1.2px;
  }
  .main-chicken {
    width: 250px;
  }
  .eng-tit {
    font-size: 72px;
    letter-spacing: -1.8px;
  }
  .marquee .swiper-slide {
    width: 140px !important;
    margin-right: 16px;
  }
  .st2-div p:first-child {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .st2-div div {
    font-size: 32px;
    letter-spacing: -0.8px;
  }
  .st2-count {
    font-size: 56px;
    letter-spacing: -1.4px;
  }
  .st2-graph {
    aspect-ratio: 2 / 1.2;
  }
  .st2-graph-item {
    padding: 0 4px;
  }
  .st2-graph-tit {
    font-size: 20px;
    letter-spacing: -0.5px;
  }
  .bar-div div p {
    font-size: 14px;
    letter-spacing: -0.35px;
    padding: 2px;
    border-radius: 4px;
  }
  .graph-month p {
    font-size: 16px;
    letter-spacing: -0.4px;
  }
  #section2 .caution {
    font-size: 14px;
    letter-spacing: -0.35px;
    margin-top: 12px;
  }
  .st3-container {
    gap: 40px;
  }
  .st3-txt {
    font-size: 20px;
    letter-spacing: -0.5px;
  }
  .st3-content {
    font-size: 16px;
    letter-spacing: -0.4px;
  }
  .st3-chicken-div {
    width: 110%;
  }
  .st4-marquee.left {
    left: 20px;
  }
  .st4-marquee.right {
    right: 20px;
  }
  .st4-marquee-txt {
    font-size: 40px;
    letter-spacing: -1px;
  }
  .st4-txt {
    font-size: 20px;
    letter-spacing: -0.5px;
  }
  .st5-sub {
    font-size: 20px;
    letter-spacing: -0.5px;
  }
  .st5-point {
    padding: 12px 16px;
    font-size: 24px;
    letter-spacing: -0.6px;
    border-radius: 50px;
    gap: 6px;
  }
  .st5-point svg {
    width: 7px;
    height: 7px;
  }
  .st5-point::before {
    padding: 2px;
  }
  .st5-point span {
    font-size: 40px;
    letter-spacing: -1px;
    padding: 0 8px;
  }
  .st5-container {
    gap: 150px;
  }
  .vs {
    width: 90px;
    top: 43.5%;
  }
  .st5-chicken {
    width: 300px;
    right: -10%;
    bottom: -5%;
  }
  .st6-txt1 {
    font-size: 20px;
    letter-spacing: -0.5px;
  }
  .st6-txt2 {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .st6-item {
    padding: 12px 0;
    gap: 12px;
    font-size: 16px;
    letter-spacing: -0.4px;
  }
  .st6-item span {
    min-height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .st6-item img {
    width: 70px;
  }
  .st7-table-item {
    gap: 16px;
  }
  .st7-swiper .swiper-slide {
    width: 260px !important;
  }
  .st7-table th, .st7-table td {
    font-size: 16px;
    letter-spacing: -0.4px;
  }
  .st7-table th {
    height: 42px;
  }
  .st7-table td {
    height: 45px;
    padding: 5px;
  }
  .st7-table-free {
    width: 62px;
    right: 32px;
    top: 102px;
  }
  .st7-table-total p {
    font-size: 16px;
    letter-spacing: -0.4px;
  }
  .st7-interior-box .interior-inner {
    gap: 40px;
  }
  .st7-interior-tit {
    font-size: 32px;
    letter-spacing: -0.8px;
  }
  .st7-interior-cost p {
    font-size: 28px;
    letter-spacing: -0.7px;
  }
  .st7-interior-cost p span {
    font-size: 68px;
    letter-spacing: -1.7px;
  }
  .st7-bg-wave1 {
    height: 1073px;
    bottom: 1200px;
  }
  .st7-bg-wave2 {
    height: 2000px;
  }
  .nav-btn {
    width: 40px;
    height: 40px;
  }
  .st7-item-tit {
    font-size: 32px;
    letter-spacing: -0.8px;
    gap: 16px;
  }
  .st7-item-tit svg {
    width: 10px;
    height: 10px;
  }
  #section8 {
    padding: 150px 0 70px;
  }
  .smoke-div {
    top: -45%;
  }
  .st9-circle {
    width: 1000px;
  }
  .st9-circle p:nth-child(3) {
    font-size: 20px;
    letter-spacing: -0.5px;
  }
  .st9-circle .chicken-div {
    width: 85%;
    bottom: -2%;
  }
  .review-swiper {
    margin-top: -100px;
  }
  .st9-bubble.first {
    width: 258px;
    left: 250px;
    bottom: 38%;
  }
  .st9-bubble.second {
    width: 335px;
    left: 240px;
    bottom: 23%;
  }
  .st9-bubble.third {
    width: 280px;
    right: 240px;
    bottom: 35%;
  }
  .st9-bubble.fourth {
    width: 340px;
    right: 240px;
    bottom: 13%;
  }
  .st10-inner {
    padding: 70px 0;
    border-width: 2px;
  }
  .st10-sub {
    width: 255px;
  }
  .st11-left-div span {
    width: 70%;
  }
  .st11-table-total p {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .st12-chicken {
    width: 230px;
  }
  .tab-wrap {
    gap: 8px;
  }
  .menu-tab {
    width: 150px;
    font-size: 18px;
    letter-spacing: -0.45px;
    padding: 10px 12px;
  }
  #section12 .st-tit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }
  .st12-sub-tit, .st12-content {
    font-size: 20px;
    letter-spacing: -0.5px;
  }
  .st12-box {
    aspect-ratio: 1 / 1;
  }
  .st12-box-tit {
    height: 80px;
    top: -40px;
  }
  .st12-box-tit .box-tit-inner p {
    font-size: 14px;
    letter-spacing: -0.35px;
  }
  .st12-circle-div, .st12-circle-img {
    width: 32%;
  }
  .st12-wave {
    width: auto;
    height: 400px;
  }
  .st13-left-div .line-animation {
    font-size: 20px;
    letter-spacing: -0.5px;
  }
  .st13-right, .st13-img-div {
    gap: 35px;
  }
  .st13-img {
    width: 200px;
  }
  .st13-content {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
  .st13-txt {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  #section14 {
    height: 380px;
  }
  .st14-txt {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .st14-logo {
    width: 147px;
  }
  .st14-txt>span {
    gap: 8px;
  }
  .st14-txt .vertical-txt {
    font-size: 40px;
  }
  .st14-txt img {
    width: 350px;
  }
  .benefit-box {
    border-radius: 8px;
  }
  .cost-table th {
    border-radius: 8px 8px 0 0;
  }
  .cost-table th, .cost-table td {
    font-size: 20px;
    letter-spacing: -0.5px;
  }
  .cost
  .cost-table td {
    height: 60px;
  }
  .cost-point {
    aspect-ratio: 12 / 14.8;
    padding: 5px;
    bottom: unset;
    top: 276px;
  }
  .cost-point-inner {
    gap: 10px;
  }
  .cost-point-inner p {
    font-size: 14px;
    letter-spacing: -0.35px;
  }
  .cost-point-inner div {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .cost-total {
    border-radius: 8px;
  }
  .process-box {
    aspect-ratio: 1 / 0.75;
  }
  .process-box-inner {
    gap: 12px;
  }
  .process-div {
    gap: 4px;
  }
  .process-box img {
    width: 48px;
  }
  .process-num, .process-tit {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
  .process-num {
    top: 5px;
  }
  .process-content {
    font-size: 12px;
    letter-spacing: -0.3px;
  }
  .grand-open-text {
    font-size: 32px;
    letter-spacing: -0.8px;
  }
  #contact {
    background: url(../img/contact-mo-bg.png);
    background-attachment: unset;
    background-size: cover !important;
    background-position: top center !important;
  }
  .contact-left p {
    font-size: 16px;
    letter-spacing: -0.4px;
  }
  .contact-left-img {
    width: 120%;
  }
  .contact-form-box {
    padding: 5px;
  }
  .contact-form {
    padding: 20px;
  }
  .flex-input {
    flex-wrap: wrap;
  }
  .form-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .c-btn {
    width: 100%;
  }
}

@media(max-width: 570px) {
  .st4-container {
    gap: 0;
  }
  .st4-box {
    width: 100%;
  }
  .st4-box-tit {
    font-size: 28px;
    letter-spacing: -0.7px;
  }
  .st7-item-div {
    width: 100%;
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }
  .highest-sale {
    width: 100%;
  }
  .highest-sale span {
    font-size: 48px;
    letter-spacing: -1.2px;
  }
  .recover-div {
    flex-direction: row;
    align-items: center;
    gap: 8px;
  }
  .st13-img {
    width: 190px;
  }
  .cost-point {
    top: 275px;
    aspect-ratio: 2 / 3;
  }
  .process-box {
    aspect-ratio: 1 / 0.9;
  }
}

@media (max-width: 480px) {
  .main-container {
    transform: translateY(-40%);
  }
  .main-bubble-wrap {
    top: 42%;
    gap: 210px;
    padding-bottom: 0;
  }
  .main-bubble-div {
    gap: 16px;
  }
  .main-bubble {
    font-size: 14px;
    letter-spacing: -0.35px;
  }
  .main-bubble img {
    width: 28px;
  }
  .main-container p {
    font-size: 40px;
    letter-spacing: -1px;
  }
  .main-chicken {
    width: 230px;
  }
  .eng-tit {
    font-size: 64px;
    letter-spacing: -1.6px;
  }
  .marquee .swiper-slide {
    width: 121px !important;
  }
  .st2-div p:first-child {
    font-size: 20px;
    letter-spacing: -0.5px;
  }
  .st2-div div {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .st2-count {
    font-size: 48px;
    letter-spacing: -1.2px;
  }
  .st2-div p:last-child {
    font-size: 14px;
    letter-spacing: -0.35px;
  }
  .st2-graph {
    aspect-ratio: 1 / 1.1;
  }
  .st2-graph-tit {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
  .st2-graph-item {
    padding: 0 2px;
  }
  .bar-div div p {
    font-size: 12px;
    letter-spacing: -0.3px;
  }
  .bar {
    display: none;
  }
  .mo-bar {
    display: block;
  }
  .graph-month p {
    font-size: 14px;
    letter-spacing: -0.35px;
  }
  #section2 .caution {
    font-size: 12px;
    letter-spacing: -0.3px;
  }
  .st3-wrap, .st3-div {
    width: 100%;
    align-items: flex-start;
  }
  .st3-txt, .st3-content {
    align-items: flex-start;
    text-align: left;
  }
  .st5-container {
    gap: 120px;
  }
  .st5-point {
    font-size: 20px;
    letter-spacing: -0.5px;
  }
  .st5-point svg {
    width: 5px;
    height: 5px;
  }
  .st5-point span {
    font-size: 32px;
    letter-spacing: -0.8px;
  }
  .left-table-div {
    font-size: 14px;
    letter-spacing: -0.35px;
  }
  .left-table-div .sm-txt {
    width: 75px;
  }
  .left-table-div .big-txt {
    width: calc(100% - 95px);
  }
  .left-table-div .big-txt {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .st5-right-table {
    padding-bottom: 0;
  }
  .st5-right-table>p {
    font-size: 28px;
    letter-spacing: -0.7px;
    padding: 30px 10px 20px;
  }
  .right-table-div {
    padding: 12px 10px;
    height: auto;
    font-size: 16px;
    letter-spacing: -0.4px;
    flex-wrap: wrap;
    gap: 10px 20px;
  }
  .right-table-div img {
    width: 200px;
  }
  .vs {
    width: 72px;
    top: 38.5%;
  }
  .st5-txt {
    font-size: 16px;
    letter-spacing: -0.4px;
  }
  .caution {
    font-size: 14px;
    letter-spacing: -0.35px;
  }
  .st5-chicken {
    width: 260px;
    bottom: -3%;
  }
  .st6-sub {
    padding: 3px;
  }
  .st6-sub p {
    font-size: 20px;
    letter-spacing: -0.5px;
    padding: 6px 12px;
  }
  .st6-wrap.plus {
    gap: 0;
  }
  .st6-wrap.plus .st6-item {
    width: 40%;
    border: none !important;
  }
  .st6-line-div {
    top: 35%;
  }
  .st7-swiper .swiper-slide {
    width: 230px !important;
  }
  .st7-table td {
    font-size: 14px;
    letter-spacing: -0.35px;
    height: 38px;
  }
  .st7-table-free {
    width: 50px;
    right: 30px;
    top: 78px;
  }
  .st7-table-total p {
    font-size: 16px;
    letter-spacing: -0.4px;
  }
  .st7-interior-cost p {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .st7-interior-cost p span {
    font-size: 64px;
    letter-spacing: -1.6px;
  }
  .st7-item {
    padding: 20px 16px;
  }
  .highest-sale span {
    font-size: 40px;
    letter-spacing: -1px;
  }
  .recover-div span {
    font-size: 56px;
    letter-spacing: -1.4px;
  }
  #section8 {
    padding: 100px 0 70px;
  }
  .menu-slide-div p {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
  .menu-slide-div img {
    height: 25px;
  }
  .st9-circle .chicken-div {
    width: 600px;
    bottom: 15%;
  }
  .st9-bubble.first {
    width: 198px;
    left: 320px;
    bottom: 38%;
  }
  .st9-bubble.second {
    width: 275px;
    left: 310px;
    bottom: 26%;
  }
  .st9-bubble.third {
    width: 220px;
    right: 290px;
    bottom: 35%;
  }
  .st9-bubble.fourth {
    width: 280px;
    right: 290px;
    bottom: 20%;
  }
  .review-swiper {
    margin-top: -170px;
  }
  .st11-left-div {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
  .st11-left-div.last {
    font-size: 20px;
    letter-spacing: -0.5px;
  }
  .st11-left-div.last .big-txt {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .st11-table-total p {
    padding: 16px 2px;
    font-size: 20px;
    letter-spacing: -0.5px;
  }
  .st12-chicken {
    width: 180px;
  }
  .st12-box-tit .box-tit-inner {
    padding: 12px 10px;
  }
  .st12-sub-tit, .st12-content {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
  .st13-left-div .line-animation {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
  .st13-left-div .st-tit .line-tit {
    margin-top: 6px;
  }
  .st13-right {
    gap: 15px;
  }
  .st13-img-div {
    gap: 25px;
  }
  .st13-img {
    width: 160px;
  }
  .st13-content {
    font-size: 16px;
    letter-spacing: -0.4px;
  }
  #section15 .st-tit {
    font-size: 30px;
    letter-spacing: -0.75px;
  }
  #section15 .st-tit .line-tit {
    font-size: 32px;
    letter-spacing: -0.8px;
  }
  .benefit-box {
    aspect-ratio: 2 / 1.7;
  }
  .benefit-box p {
    font-size: 20px;
    letter-spacing: -0.5px;
  }
  .benefit-zero-div {
    width: 130%;
    bottom: -5px;
  }
  .go-contact {
    width: 180px;
  }
  .cost-point {
    top: 267px;
    width: 185px;
    aspect-ratio: 4 / 7;
  }
  .cost-point-inner div {
    font-size: 20px;
    letter-spacing: -0.5px;
  }
  .process-box {
    aspect-ratio: 1 / 1;
  }
  .process-num, .process-tit {
    font-size: 16px;
    letter-spacing: -0.4px;
  }
  .process-box img {
    width: 42px;
  }
  .process-badge-div {
    width: 130px;
    top: -50px;
  }
}

@media(max-width: 430px) {
  .process-box {
    aspect-ratio: 1 / 1.1;
  }
}

@media(max-width: 400px) {
  .main-container p {
    font-size: 32px;
    letter-spacing: -0.8px;
  }
  .main-bubble-div {
    gap: 12px;
  }
  .main-bubble-wrap {
    top: 43.5%;
    gap: 160px;
  }
  .st2-graph-tit {
    font-size: 16px;
    letter-spacing: -0.4px;
  }
  .bar-div div p {
    font-size: 12px;
    letter-spacing: -0.3px;
  }
  .st4-marquee {
    padding: 10px;
  }
  .st4-marquee-txt {
    font-size: 32px;
    letter-spacing: -0.8px;
  }
  .st4-txt .line-animation {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
  .st5-point {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
  .st5-point span {
    font-size: 28px;
    letter-spacing: -0.7px;
  }
  .left-table-div .big-txt {
    font-size: 20px;
    letter-spacing: -0.5px;
  }
  .st5-chicken {
    width: 230px;
  }
  .right-table-div img {
    width: 162px;
  }
  .vs {
    top: 40.5%;
  }
  .st6-item img {
    width: 60px;
  }
  .st6-wrap.plus .st6-item {
    width: 45%;
  }
  .interior-inner .left {
    width: 90%;
  }
  .st7-interior-cost, .st7-interior-cost p {
    width: 100%;
  }
  .st7-interior-cost p {
    padding: 8px 0;
  }
  .st7-interior-cost p {
    font-size: 20px;
    letter-spacing: -0.5px;
  }
  .st7-interior-cost p span {
    font-size: 60px;
    letter-spacing: -1.5px;
  }
  .st9-bubble.first {
    width: 168px;
    left: 340px;
    bottom: 42%;
  }
  .st9-bubble.second {
    width: 245px;
    left: 330px;
    bottom: 30%;
  }
  .st9-bubble.third {
    width: 180px;
    right: 330px;
    bottom: 39%;
  }
  .st9-bubble.fourth {
    width: 240px;
    right: 330px;
    bottom: 24%;
  }
  .review-swiper {
    margin-top: -190px;
  }
  .st10-sub {
    width: 235px;
  }
  .menu-tab {
    width: 120px;
    font-size: 16px;
    letter-spacing: -0.4px;
  }
  .menu-slide-div p {
    font-size: 16px;
    letter-spacing: -0.4px;
  }
  .menu-slide-div img {
    height: 22.5px;
  }
  .st11-left-tit {
    font-size: 22px;
    letter-spacing: -0.55px;
  }
  .st11-left-div {
    font-size: 16px;
    letter-spacing: -0.4px;
  }
  .st11-left-div.last .big-txt {
    font-size: 20px;
    letter-spacing: -0.5px;
  }
  .st11-left-div span {
    width: calc(100% - 40px);
  }
  .st11-table th, .st11-table td {
    font-size: 16px;
    letter-spacing: -0.4px;
  }
  .st12-chicken {
    width: 150px;
  }
  #section12, .st12-container {
    gap: 80px;
  }
  .st12-sub-tit, .st12-content {
    font-size: 16px;
    letter-spacing: -0.4px;
  }
  .st12-circle-img.second {
    left: 10px;
  }
  .st12-circle-img.third {
    right: 10px;
  }
  .st13-img {
    width: 140px;
  }
  .cost-point {
    width: 170px;
    top: 280px;
  }
  #section16 .st-tit {
    font-size: 28px;
    letter-spacing: -0.7px;
  }
  .process-box {
    aspect-ratio: 1 / 1.2;
  }
  .process-box img {
    width: 37px;
  }
  .grand-open-text {
    font-size: 28px;
    letter-spacing: -0.7px;
  }
}

@media(max-width: 370px) {
  .main-container {
    transform: translateY(-55%);
  }
  .main-bubble-wrap {
    top: 40.5%;
    gap: 160px;
  }
  .main-bubble {
    padding: 6px 12px;
  }
  .bar-div div p {
    font-size: 10px;
    letter-spacing: -0.25px;
  }
  .st4-txt .line-animation {
    font-size: 16px;
    letter-spacing: -0.4px;
  }
  .highest-sale span {
    font-size: 32px;
    letter-spacing: -0.8px;
  }
  .recover-div {
    font-size: 20px;
    letter-spacing: -0.5px;
    gap: 6px;
  }
  .recover-div span {
    font-size: 48px;
    letter-spacing: -1.2px;
  }
  .st11-table-total p {
    font-size: 16px;
    letter-spacing: -0.4px;
    padding: 12px 2px;
  }
  .st11-table th, .st11-table td {
    font-size: 15px;
    letter-spacing: -0.375px;
  }
  .st12-box-tit {
    height: 72px;
    top: -36px;
  }
  .st12-box-tit .box-tit-inner div {
    font-size: 20px;
    letter-spacing: -0.5px;
  }
  .st12-wave {
    height: 320px;
  }
  .st13-left-div .line-animation {
    font-size: 16px;
    letter-spacing: -0.4px;
  }
  #section13 .st-tit {
    font-size: 28px;
    letter-spacing: -0.7px;
  }
  .st13-img {
    width: 120px;
  }
  .st13-txt {
    font-size: 20px;
    letter-spacing: -0.5px;
  }
  .st14-logo {
    width: 130px;
  }
  .st14-txt img {
    width: 290px;
  }
  .st14-txt>span {
    transform: translate(-50%, -50%);
  }
  .st14-txt {
    font-size: 20px;
    letter-spacing: -0.5px;
  }
  .st14-txt .vertical-txt {
    font-size: 32px;
  }
  .cost-table th, .cost-table td {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
  .benefit-box {
    padding: 15px 0;
  }
  .benefit-box p {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
  .cost-table th {
    height: 52px;
  }
  .cost-table td {
    height: 56px; 
    padding: 6px 3px;
  }
  .cost-total p {
    padding: 10px 4px;
    font-size: 20px;
    letter-spacing: -0.5px;
  }
  .cost-point {
    width: 150px;
    top: 230px;
  }
}

@media(max-width: 350px) {
  .graph-month {
    padding: 8px 0;
  }
  .graph-month p {
    font-size: 12px;
    letter-spacing: -0.3px;
  }
  .st5-point {
    gap: 6px;
  }
  .st5-sub {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
  .st5-left-table {
    width: 90%;
  }
  .st5-point {
    font-size: 16px;
    letter-spacing: -0.4px;
  }
  .st5-point span {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .left-table-div {
    font-size: 12px;
    letter-spacing: -0.3px;
  }
  .left-table-div .sm-txt {
    width: 65px;
  }
  .left-table-div .big-txt {
    font-size: 18px;
    letter-spacing: -0.45px;
    width: calc(100% - 85px);
  }
  .st5-right-table {
    width: 100%;
  }
  .st5-right-table>p {
    font-size: 24px;
    letter-spacing: -0.6px;
    padding: 20px 10px 10px;
  }
  .vs {
    top: 41.5%;
  }
  .st6-txt1 {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
  .st6-txt2 {
    font-size: 22px;
    letter-spacing: -0.55px;
  }
  .st6-wrap.plus .st6-item {
    width: 50%;
  }
  .st9-bubble.first {
    width: 158px;
    left: 350px;
    bottom: 44%;
  }
  .st9-bubble.second {
    width: 235px;
    left: 340px;
    bottom: 30%;
  }
  .st9-bubble.third {
    width: 170px;
    right: 340px;
    bottom: 40%;
  }
  .st9-bubble.fourth {
    width: 230px;
    right: 340px;
    bottom: 23%;
  }
  .st11-left-tit {
    font-size: 20px;
    letter-spacing: -0.55px;
  }
  .st11-left-div {
    font-size: 14px;
    letter-spacing: -0.35px;
    padding: 15px 20px;
  }
  .st11-left-div img {
    width: 32px;
  }
  .st11-left-div.last, .st11-left-div.last .big-txt {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
  .st11-right-tit {
    height: 70px;
    font-size: 20px;
    letter-spacing: -0.5px;
  }
  .st11-table th {
    height: 50px;
  }
  .st11-table td {
    height: 48px;
    padding: 12px 2px;
  }
  .go-contact {
    width: 160px;
    padding: 0 20px;
    font-size: 16px;
    letter-spacing: -0.4px;
  }
  .process-box {
    aspect-ratio: 1 / 1.3;
  }
  .process-box-inner {
    padding: 20px 0 10px;
  }
}

@media(max-width: 330px) {
  .main-container {
    transform: translateY(-65%);
  }
  .main-bubble-wrap {
    top: 37.5%;
    gap: 150px;
  }
  .main-bubble {
    font-size: 12px;
    letter-spacing: -0.3px;
  }
  .main-bubble img {
    width: 25px;
  }
  .st5-point {
    font-size: 14px;
    letter-spacing: -0.35px;
  }
  .st5-point svg {
    width: 4px;
    height: 4px;
  }
  .st5-point span {
    font-size: 20px;
    letter-spacing: -0.5px;
  }
  .st12-box-tit {
    height: 68px;
    top: -34px;
  }
  .st12-box-tit .box-tit-inner div {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
  .st12-box-tit .box-tit-inner p {
    font-size: 12px;
    letter-spacing: -0.3px;
  }
  .cost-point {
    width: 140px;
    top: 240px;
  }
  .cost-point-inner p {
    padding: 3px 8px;
  }
  .cost-point-inner div {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
}
