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

.mobile {
  display: none;
}

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

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

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

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

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

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

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

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

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

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


/* main-top */
#main-top {
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* main */
#main {
  width: 100%;
  height: 150vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 0;
  left: 0;
}

.main-container {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 50%;
  transform: translateY(-50%);
}

#main-logo-wrapper {
  width: 100%;
  text-align: center;
  transition: all 0.3s ease;
  will-change: transform, opacity;
}

.main-logo {
  width: 800px;
  transition: width 0.2s ease;
  transform-origin: bottom center;
}

#main-logo-wrapper.fixed {
  /* position: absolute;
  top: 50%;
  transform: translateY(-50%); */
  z-index: 5;
}


/* section2 */
#section2 {
  width: 100%;
  background: #111;
  z-index: 5;
  background: url(../img/st2-bg.png);
  background-position: center center !important;
  background-size: cover !important;
  padding: 100px 0 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.st-tit-div {
  display: flex;
  justify-content: center;
  gap: 12px;
  align-items: flex-start;
  position: relative;
}

.st-tit-div svg {
  animation: neon1-svg 1.5s ease-in-out infinite alternate;
}

.st-tit-div svg:last-child {
  margin-top: 9%;
}

.st2-tit {
  color: #FFF;
  text-align: center;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.50);
  font-family: 'Giants';
  font-size: 56px;
  line-height: 125%; /* 70px */
  letter-spacing: -1.4px;
  animation: neon1 1s ease-in-out infinite alternate;
}

@keyframes neon1-svg {
  0% {
    filter:
      drop-shadow(0 0 2px #fff)
      drop-shadow(0 0 6px#ef5149)
      drop-shadow(0 0 12px#ef5149);
  }
  100% {
    filter:
      drop-shadow(0 0 1px #fff)
      drop-shadow(0 0 3px#ef5149)
      drop-shadow(0 0 10px#ef5149);
  }
}

.st2-sub-tit {
  color: #FCF8F4;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  line-height: 150%; /* 30px */
  letter-spacing: -0.5px;
}

.st2-container {
  width: 100%;
  display: flex;
  position: relative;
}

.st2-wrap {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 90px;
  padding: 0 0 0 40px;
  position: relative;
}

.st2-wrap:first-child {
  align-items: flex-end;
  padding: 0 40px 0 0 ;
}

.st2-radio {
  width: 170px;
}

.mo-radio1, .mo-radio2 {
  display: none;
}

.mo-radio1 {
  top: 25%;
  left: 25%;
}

.mo-radio2 {
  top: 25%;
  right: 25%;
}

.st2-div {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-right: 220px;
}

.st2-wrap:first-child .st2-div {
  align-items: flex-end;
}

.st2-wrap:last-child .st2-div {
  padding-left: 220px;
}

.st2-div p {
  width: fit-content;
  border-radius: 4px;
  border: 3px solid transparent;
  border-image: linear-gradient(90deg, #DBCCCC 0%, #756D6D 23%, #DBCCCC 58%, #756D6D 100%);
  border-image-slice: 1;
  background: #111;
  box-sizing: border-box;
  display: flex;
  padding: 8px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #FFF;
  text-shadow: 0px 0px 8px #FF9FDC;
  font-family: "Giants";
  font-size: 28px;
  line-height: 125%; /* 35px */
  letter-spacing: -0.7px;
  white-space: nowrap;
}

.st2-wrap:first-child .st2-div p {
  text-align: right;
}

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

.st2-bubble-div {
  position: absolute;
  top: -25%;
  right: 45%;
  width: 190px;
}

.st2-bubble-div2 {
  position: absolute;
  top: -25%;
  left: 45%;
  width: 190px;
}

.st2-bubble-div img, .st2-bubble-div2 img {
  width: 100%;
}

.st2-mo-div {
  width: 80%;
  display: none;
}


/* section3 */
#section3 {
  width: 100%;
  background: #FCF8F4;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.st3-img-div {
  max-width: 300px;
  width: 20%;
  position: absolute;
  top: 8%;
  right: -2%;
}

.st3-img-div2 {
  max-width: 300px;
  width: 20%;
  position: absolute;
  bottom: 3%;
  left: -2%;
}

.st3-img {
  width: 100%;
}

.chain-div {
  display: flex;
  padding: 40px 0px 20px 0px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.chain-div img, .chain-div2 img {
  width: 100%;
}

.chain-div2 {
  display: flex;
  padding: 20px 0px 40px 0px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.st3-container {
  display: flex;
  box-sizing: border-box;
  padding: 0px 60px;
  justify-content: center;
  align-items: center;
}

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

.st3-wrap {
  max-width: 1280px;
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.st3-div {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.st3-div hr {
  display: inline-block !important;
  margin: 0;
  padding: 0;
  border: none;
  width: 100%;
  height: 1px;
}

.st3-div hr:first-child {
  background: linear-gradient(90deg, rgba(85, 85, 85, 0.00) 0%, #555 100%);
}

.st3-div hr:last-child {
  background: linear-gradient(90deg, #555 0%, rgba(85, 85, 85, 0.00) 100%);
}

.st3-div p {
  display: flex;
  box-sizing: border-box;
  padding: 8px 20px;
  justify-content: center;
  align-items: center;
  gap: 12px;
  border-radius: 50px;
  border: 1px solid #555;
  color: #333;
  text-align: center;
  font-family: "Giants";
  font-size: 28px;
  line-height: 125%; /* 35px */
  letter-spacing: -0.7px;
  white-space: nowrap;
}

.st3-box-container {
  width: 93%;
  display: flex;
  gap: 20px;
}

.st3-box {
  width: 25%;
  border-radius: 12px;
  border: 5px solid #EAEAEA;
  background: #FFF;
  box-shadow: 0px 8px 12px 0px rgba(0, 0, 0, 0.10);
  display: flex;
  aspect-ratio:  7 / 6;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.st3-box img {
  width: 35%;
}

.st3-box p {
  color: #505050;
  text-align: center;
  font-family: "Giants";
  font-size: 24px;
  line-height: 125%; /* 30px */
  letter-spacing: -0.6px;
}

.st3-inner>p {
  color: #111;
  text-align: center;
  font-size: 27px;
  font-weight: 600;
  line-height: 125%; /* 33.75px */
  letter-spacing: -0.675px;
  box-sizing: border-box;
  padding: 10px 20px;
  border-radius: 50px;
  background: #FFF;
}


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

.profit-table {
  max-width: 975px;
  width: 90%;
  border-collapse: collapse;
}

.profit-table th, .profit-table td {
  color: #000;
  font-size: 20px;
  line-height: 125%; /* 25px */
  letter-spacing: -0.5px;
  text-align: center;
  height: 55px;
  background: #FFF;
}

.profit-table th {
  background: #D72438;
  color: #FFF;
  font-weight: 600;
}

.profit-table td:last-child {
  color: #D72438;
}

.profit-table td:first-child {
  width: 30%;
}

.profit-table td:nth-child(2), .profit-table td:last-child  {
  width: 35%;
}

.sale-bg {
  background: #FBEAD9;
}

.row-highlight-content {
  border-radius: 15px;
  box-shadow: 0px 0px 12px 4px rgba(255, 158, 173, 0.4);
  background: #FFF;
  border: 4px solid #D72438;
  animation: border-neon 1s ease-in-out infinite alternate;
}

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

.inner-table td {
  font-size: 25px;
  line-height: 125%; /* 31.25px */
  letter-spacing: -0.625px;
  height: 70px;
  font-weight: 700;
}

.inner-table td:first-child {
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
}

.inner-table td:last-child {
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
}

@keyframes border-neon {
  from {
    box-shadow: 0px 0px 18px 10px rgba(255, 158, 173, 0.4);
  }
  to {
    box-shadow: 0px 0px 0px 0px rgba(255, 158, 173, 0.4);
  }
}


/* section5 */
#section5 {
  background: url(../img/st5-bg.png);
  background-position: center center !important;
  background-size: cover !important;
  display: flex;
  box-sizing: border-box;
  padding: 110px 0px 100px 0px;
  align-items: center;
  justify-content: center;
  background-attachment: fixed;
  position: relative;
}

.st5-bubble-div {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}

.st5-bubble {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.st5-bubble img {
  margin-top: -3px;
}

.st5-bubble-inner {
  border-radius: 20px;
  background: #D72438;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.st5-bubble-inner p {
  display: flex;
  width: 650px;
  box-sizing: border-box;
  padding: 20px 30px;
  justify-content: center;
  align-items: center;
  color: #F4E9D2;
  text-align: center;
  text-shadow: 0px 0px 12px rgba(255, 138, 159, 0.50);
  font-family: "Giants";
  font-size: 32px;
  line-height: 125%; /* 40px */
  letter-spacing: -0.8px;
  animation: neon2 1s ease-in-out infinite alternate;
  border: 1px solid #FFF;
  border-radius: 16px;
}

.st5-container {
  max-width: 950px;
  width: 90%;
  display: flex;
  align-items: flex-end;
  gap: 60px;
  justify-content: center;
}

.st5-shop {
  width: 35%;
}

.vs {
  width: 10%;
  margin: auto 0;
}

.st5-shop-div {
  width: 55%;
  position: relative;
}

.st5-shop-div img {
  width: 100%;
  position: relative;
  z-index: 5;
}

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

.wave01 {
  transform: scale(1.6);
}

.wave02 {
  transform: scale(1.4);
}

.wave03 {
  transform: scale(1.2);
}

.st5-shop-div .wave01 {
  opacity: 0.2;
  background: #F45D5D;
}

.st5-shop-div .wave02 {
  opacity: 0.4;
  background: #F45D5D;
}

.st5-shop-div .wave03 {
  opacity: 1;
  border-radius: 500px;
  border: 20px solid rgba(244, 93, 93, 0.50);
  background: #F45D5D;
}


/* section6 */
#section6 {
  width: 100%;
  background: #282828;
  display: flex;
  box-sizing: border-box;
  padding: 60px 60px 0px 60px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: -2px;
}

.st6-inner {
  width: 100%;
  background: url(../img/st6-bg.png);
  background-position: center center !important;
  background-size: cover !important;
  border-radius: 12px;
  display: flex;
  box-sizing: border-box;
  padding-top: 80px;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  overflow: hidden;
}

.st6-top {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.st6-container {
  max-width: 964px;
  width: 90%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.st6-left-txt {
  border-radius: 50px;
  background: #FCF8F4;
  display: flex;
  width: 31%;
  box-sizing: border-box;
  padding: 20px 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #505050;
  text-align: center;
  font-family: "Giants";
  font-size: 24px;
  line-height: 125%; /* 30px */
  letter-spacing: -0.6px;
}

.st6-right-txt {
  color: #333;
  text-align: center;
  font-family: "Giants";
  font-size: 28.8px;
  line-height: 125%; /* 36px */
  letter-spacing: -0.72px;
  display: flex;
  width: 50%;
  box-sizing: border-box;
  padding: 24px 12px;
  justify-content: center;
  align-items: center;
  border-radius: 60px;
  background: linear-gradient(92deg, rgba(230, 230, 230, 0.50) 16.35%, rgba(159, 138, 138, 0.50) 34.82%, rgba(252, 245, 237, 0.50) 50.27%, rgba(252, 245, 237, 0.50) 66.16%, rgba(144, 122, 122, 0.50) 86.34%, rgba(186, 158, 158, 0.50) 93.21%), #FFF;
  box-shadow: 0px 4.8px 14.4px 0px rgba(0, 0, 0, 0.08);
}

.st6-hr {
  width: 90%;
  height: 1px;
  background: transparent;
  border-top: none;
  border-bottom: 1px dotted #FFF;
  opacity: 0.5;
}

.st6-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.st6-bottom-wrap {
  display: flex;
  gap: 6px;
  justify-content: center;
}

.st6-bottom-wrap p {
  background: #000;
  display: flex;
  box-sizing: border-box;
  padding: 8px 8px 8px 12px;
  justify-content: center;
  align-items: center;
  gap: 7px;
  color: #FFF;
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  line-height: 150%; /* 42px */
  letter-spacing: -0.7px;
}

.st6-bottom-div {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 113px;
  position: relative;
}

.st6-bottom-div>p {
  color: #FFF;
  font-family: "Giants";
  font-size: 40px;
  line-height: 150%; /* 60px */
  letter-spacing: -1px;
}

.color-change {
  animation: color-change 1s ease-in-out infinite alternate;
}

@keyframes color-change {
  0% {
    color: #FFEA4A;
  }
  50% {
    color: #FFF;
  }
  100% {
    color: #FFEA4A;
  }
}

.up-div {
  position: relative;
  width: 106px;
}

.up {
  width: 100%;
}

.light {
  width: 130px;
  position: absolute;
  right: -60%;
  top: -130%;
  animation: blink 1s ease-in-out infinite alternate;
}

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

.up-arrow {
  position: absolute;
  right: -10%;
  bottom: -20%;
  animation: revealArrow 2s ease-out infinite;
  clip-path: inset(100% 0 0 0); /* 시작 상태: 완전 숨김 */
}

@keyframes revealArrow {
  from {
    clip-path: inset(100% 0 0 0); /* 아래에서 위로 나타남 */
  }
  to {
    clip-path: inset(0 0 0 0); /* 완전 노출 */
  }
}

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

.st6-img-div div {
  width: 50%;
  overflow: hidden;
}

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

/* section7 */
#section7 {
  width: 100%
}

.st7-top {
  width: 100%;
  display: flex;
  box-sizing: border-box;
  padding: 100px 0px;
  flex-direction: column;
  align-items: center;
  background: url(../img/st7-top-bg.png);
  background-position: center center !important;
  background-size: cover !important;
}

.st7-top .neon-tit {
  font-size: 48px;
  line-height: 150%; /* 72px */
  letter-spacing: -1.2px;
}

.st7-bottom {
  width: 100%;
  height: 500px;
  display: flex;
  box-sizing: border-box;
  justify-content: center;
  align-items: center;
  background: url(../img/st7-bottom-bg.png);
  background-position: center center !important;
  background-size: cover !important;
  background-attachment: fixed;
  margin-top: -2px;
}

.st7-bottom p {
  color: #FFF;
  text-align: center;
  text-shadow: 0px 0px 16px #FF5D7B;
  font-family: "Giants";
  font-size: 48px;
  line-height: 150%; /* 72px */
  letter-spacing: -1.2px;
}

.st7-bottom p span {
  color: #FFD97C;
  font-family: "Giants Bold";
}


/* section8 */
#section8 {
  background: #FCF8F4;
  display: flex;
  box-sizing: border-box;
  padding: 60px 60px 0px 60px;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

.st8-inner {
  width: 100%;
  display: flex;
  box-sizing: border-box;
  padding: 80px 0px;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  border-radius: 12px;
  background: url(../img/st8-bg.png);
  background-position: center center !important;
  background-size: cover !important;
}

.st8-container {
  max-width: 1040px;
  width: 90%;
  display: flex;
  flex-direction: column;
  gap: 50px;
  position: relative;
}

.st8-container p {
  border-radius: 12px;
  background: #FFF;
  display: flex;
  width: 400px;
  height: 80px;
  justify-content: center;
  align-items: center;
  color: #D72438;
  text-align: center;
  font-family: "Giants";
  font-size: 28px;
  line-height: 150%; /* 42px */
  letter-spacing: -0.7px;
  position: relative;
  z-index: 5;
}

.st8-container p:nth-child(2) {
  margin-left: 21%;
}

.st8-container p:nth-child(3) {
  margin-left: 42%;
}

.st8-container p:nth-last-child(3) {
  color: #FFF;
  background: #E83F3F;
  box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.10);
  margin-left: auto;
}

.st8-logo {
  width: 276px;
  position: absolute;
  bottom: -5%;
  left: -10%;
  z-index: 3;
}

.st8-arrow {
  width: 100%;
  position: absolute;
  top: -10%;
  animation: riseGraph 4s infinite ease-in-out;
}

@keyframes riseGraph {
  0% {
    clip-path: inset(100% 0 0 0);
  }
  50% {
      clip-path: inset(-10% 0 0 0);
  }
  100% {
      clip-path: inset(-10% 0 0 0);
  }
}


/* section9 */
#section9 {
  background: #FCF8F4;
  display: flex;
  box-sizing: border-box;
  padding: 60px;
  align-items: center;
  justify-content: center;
}

.st9-inner {
  width: 100%;
  border-radius: 20px;
  display: flex;
  box-sizing: border-box;
  padding: 100px 0;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  background: url(../img/st6-bg.png);
  background-position: center center !important;
  background-size: cover !important;
}

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

.st9-tit {
  color: #FFF;
  text-shadow: 0px 0px 12px #FF8A9F;
  font-family: "Giants";
  font-size: 50px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%; /* 62.5px */
  letter-spacing: -1.25px;
}

.menu-container {
  width: 90%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

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

.menu-tab {
  color: #FCF8F4;
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  line-height: 125%; /* 35px */
  letter-spacing: -0.7px;
  border-radius: 12px;
  border: 2px solid #FCF8F4;
  display: flex;
  max-width: 200px;
  width: 33.3%;
  box-sizing: border-box;
  padding: 10px 20px;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  white-space: nowrap;
}

.menu-tab:hover, .menu-tab.active {
  color: #D72438;
  background: linear-gradient(91deg, rgba(230, 230, 230, 0.40) 15.61%, rgba(159, 138, 138, 0.40) 35.75%, rgba(252, 245, 237, 0.40) 52.6%, rgba(252, 245, 237, 0.40) 69.93%, rgba(144, 122, 122, 0.40) 91.93%, rgba(186, 158, 158, 0.40) 99.42%), #FCF8F4;
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.08);
  transition: 0.2s;
  border: 1px solid rgba(230, 230, 230, 0.40);
}

.menu-wrap {
  width: 100%;
  display: none;
  gap: 25px;
  justify-content: center;
}

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

.menu-item {
  display: flex;
  flex-direction: column;
  max-width: 300px;
  width: 25%;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}

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

.hover {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.50);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.menu-item:hover .hover {
  opacity: 1;
}

.hover img {
  position: relative;
  z-index: 5;
}

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

.menu-item p {
  width: 100%;
  color: #D72438;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 125%; /* 30px */
  letter-spacing: -0.6px;
  background: #FFF;
  display: flex;
  box-sizing: border-box;
  padding: 7px 0;
  justify-content: center;
  align-items: center;
}


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

.st10-div {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.st10-img {
  max-width: 434px;
  width: 70%;
  z-index: 5;
}

.st10-hr {
  width: 2px;
  height: 210px;
  stroke-width: 2px;
  background: #E83F3F;
  border-left: 1px solid #E83F3F;
  border-right: 1px solid #E83F3F;
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.marquee {
  width: 100%;
  background: #000;
  display: flex;
  padding: 10px 0px;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  overflow: hidden;
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  border-image: linear-gradient(90deg, #DBCCCC 0%, #756D6D 23%, #DBCCCC 58%, #756D6D 100%);
  border-image-slice: 1;
  background: url(../img/neon-tit-bg.png);
  background-size: cover !important;
  background-position: center center !important;
}

.marquee-content {
  display: inline-flex;
  align-items: center;
  gap: 50px;
  animation: marquee-rl 16s linear infinite;
}

#section10 .marquee {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

@keyframes marquee-rl {
  0% {
    transform: translateX(10%);
  }
  100% {
    transform: translateX(-30%);
  }
}

.marquee-div {
  display: flex;
  align-items: center;
  gap: 15px;
}

.marquee-hippho {
  width: 607px
}

.marquee-txt {
  width: 788px;
}

.st10-txt {
  color: #333;
  font-size: 20px;
  font-weight: 500;
  line-height: 150%; /* 30px */
  letter-spacing: -0.5px;
  position: absolute;
  right: 5%;
  bottom: 5%;
  overflow: hidden;
}


/* section11 */ 
#section11 {
  display: flex;
  box-sizing: border-box;
  padding: 60px;
  flex-direction: column;
  align-items: center;
  background: #FFF;
  position: relative;
  z-index: 20;
}

.st11-inner {
  width: 100%;
  display: flex;
  padding-bottom: 100px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  border-radius: 12px;
  background: url(../img/st11-bg.png);
  background-position: center center !important;
  background-size: cover !important;
}

.st11-top {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.st11-hr {
  width: 2px;
  height: 100px;
  background: #FFF;
  border-left: 1px solid #FFF;
  border-right: 1px solid #FFF;
}

.st11-wrap {
  max-width: 1280px;
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.st11-div {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 5;
}

.st11-div hr {
  width: 100%;
  height: 1px;
  border: none;
}

.st11-div hr:first-child {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.00) 0%, #FFF 100%);
}

.st11-div hr:last-child {
  background: linear-gradient(90deg, #FFF 0%, rgba(255, 255, 255, 0.00) 100%);
}

.st11-div p {
  display: flex;
  box-sizing: border-box;
  padding: 8px 20px;
  justify-content: center;
  align-items: center;
  gap: 12px;
  border-radius: 50px;
  border: 1px solid #FFF;
  color: #FFF;
  text-align: center;
  font-family: "Giants";
  font-size: 28px;
  line-height: 125%;
  letter-spacing: -0.7px;
  white-space: nowrap;
}

.st11-div p span {
  color: #FFD97C;
  margin-right: -12px;
  margin-left: -6px;
}

.st11-box-container {
  width: 100%;
  display: flex;
  gap: 20px;
  justify-content: center;
}

.st11-box {
  max-width: 300px;
  width: 33.3%;
  aspect-ratio: 6 / 5;
  border-radius: 12px;
  background: #FFF;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.st11-box img {
  width: 35%
}

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

.st11-box-div p {
  color: #505050;
  text-align: center;
  font-family: "Giants";
  font-size: 24px;
  line-height: 125%; /* 30px */
  letter-spacing: -0.6px;
}

.st11-box-div div {
  color: #505050;
  text-align: center;
  font-size: 18px;
  line-height: 125%; /* 22.5px */
  letter-spacing: -0.45px;
}


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

.st12-container {
  width: 100%;
  background-color: #D72438;
  z-index: 5;
  position: relative;
  /* overflow: hidden; */
}

.st12-top {
  width: 100%;
  height: 200vh;
  position: sticky;
  top: 0;
  left: 0;
}

.st12-container .pinBx {
  width: 100%;
  height: calc(var(--vh, 1vh)* 100);
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  left: 0;
  top: 0;
}

.st12-container .circleBx {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.st12-container .circle {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  clip-path: circle(18%);
  overflow: hidden;
}

.st12-container .pinBx .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../img/st12-bg.png);
  background-size: cover !important;
  background-position: center !important;
}

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

.st12-container>.circle-txt {
  display: none;
  position: sticky;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.st12-container .circle-txt .st-sub-tit24 {
  font-family: "Pretendard";
}

.st12-container .bottom {
  width: 100%;
  height: 180vh;
  position: relative;
  overflow: hidden;
}

.st12-top .bottom {
  display: none;
}

.img-section {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
}

.st12-img-div {
  display: flex;
  flex-direction: column;
  gap: 150px;
  margin-left: -8%;
}

.st12-img-div2 {
  display: flex;
  flex-direction: column;
  gap: 150px;
  margin-right: -8%;
  margin-top: 10%;
}

.img-section img {
  width: 500px;
}

.st12-box {
  border-radius: 12px 12px 0px 0px;
  border: 1px solid #FFF;
  background: url(../img/neon-tit-bg.png);
  background-position: center center !important;
  background-size: cover !important;
  display: flex;
  max-width: 500px;
  width: 90%;
  box-sizing: border-box;
  padding: 40px 0px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}

.st12-box-div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.st12-box-div p {
  color: #FFF;
  text-align: center;
  font-family: "Giants";
  font-size: 32px;
  line-height: 150%; /* 48px */
  letter-spacing: -0.8px;
}

.st12-box-div div {
  color: #FFF;
  text-align: center;
  font-size: 16px;
  line-height: 150%; /* 24px */
  letter-spacing: -0.4px;
}

.dish-open { 
  background: #FFD97C; 
  transition: 0s;
}

.dish-open:hover {
  background: #FFCB4A;
  transition: 0s;
}

.circle-txt-fixed {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 20; /* 가장 위 */
  display: none;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
  opacity: 1; /* 처음엔 안 보이게 */
  pointer-events: none; /* 클릭 막기 */
  z-index: 10;
}

/* section13 */
#section13 {
  width: 100%;
  background: #FCF8F4;
  display: flex;
  box-sizing: border-box;
  padding: 60px 60px 0;
  flex-direction: column;
}

.st13-inner {
  width: 100%;
  background: url(../img/st10-bg.png);
  background-position: center center !important;
  background-size: cover !important;
  border-radius: 12px 12px 0px 0px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.st13-container {
  width: 100%;
  display: flex;
  border-bottom: 1px solid #BBB;
}

.st13-item {
  width: 33.3%;
  display: flex;
  box-sizing: border-box;
  padding: 60px 30px;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
}

.st13-item:nth-child(2) {
  border-right: 1px solid #BBB;
  border-left: 1px solid #BBB;
}

.st13-item-tit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.st13-item-tit>p:first-child, .st13-item>p, .black-box  {
  color: #333;
  text-align: center;
  font-family: "Giants";
  font-size: 20px;
  line-height: 150%; /* 30px */
  letter-spacing: -0.5px;
  word-break: keep-all;
}

.st13-item-tit>p:first-child {
  white-space: nowrap;
}

.st13-item-tit>p:last-child {
  color: #222;
  text-align: center;
  font-family: "Giants";
  font-size: 40px;
  line-height: 145%; /* 58px */
  letter-spacing: -1px;
}

.st13-item-div {
  width: 100%;
  border-radius: 12px;  
  background: rgba(0, 0, 0, 0.10);
  display: flex;
  box-sizing: border-box;
  padding: 20px 23px;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.st13-item:last-child .st13-item-div {
  gap: 20px;
}

.black-box-div {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.black-box {
  width: 100%;
  display: flex;
  box-sizing: border-box;
  padding: 6px 8px;
  justify-content: center;
  align-items: center;
  gap: 4px;
  border-radius: 6px;
  background: #333;
}

.black-box-div>div {
  color: #444;
  text-align: center;
  font-size: 18px;
  line-height: 150%; /* 27px */
  letter-spacing: -0.45px;
  word-break: keep-all;
}

.st13-item-content {
  color: #333;
  text-align: center;
  font-family: Pretendard;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 30px */
  letter-spacing: -0.5px;
  word-break: keep-all;
}

.interior-open {
  position: absolute;
  bottom: 40px;
  border-radius: 50px;
  background: #E83F3F;
  transition: 0s;
}

.interior-open:hover {
  background: #D72438;
  transition: 0s;
}

.st13-bottom {
  width: 100%;
  display: flex;
  box-sizing: border-box;
  padding: 0 30px 60px;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.st13-bottom img {
  width: calc(33.3% - 13.5px);
  border-radius: 8px;
}

.interior-swiper-container {
  width: 100%;
  overflow: hidden;
  display: none;
  padding-bottom: 40px;
}

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

.interior-swiper-container img {
  width: 100%;
  border-radius: 8px;
}


/* section14 */
#section14 {
  display: flex;
  width: 100%;
  box-sizing: border-box;
  padding: 0px 60px;
  flex-direction: column;
  border-bottom: 1px solid #FFF;
  background: #FCF8F4;
  overflow: hidden;
}

.st14-inner {
  width: 100%;
  background: url(../img/st14-bg.png);
  background-position: center center !important;
  background-size: cover !important;
  display: flex;
  box-sizing: border-box;
  padding: 100px 0px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 50px;
  border-top: 1px solid #FFF;
  border-bottom: 1px solid #FFF;
}

.st14-container {
  max-width: 1280px;
  width: 90%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

.st14-logo {
  width: 278px;
}

.st14-div div {
  color: rgba(255, 255, 255, 0.80);
  font-size: 22px;
  font-weight: 600;
  line-height: 150%; /* 33px */
  letter-spacing: -0.55px;
  word-break: keep-all;
}

.sign-img {
  width: 65%;
}




@media(min-width: 1800px) {
  .st10-txt {
    right: 14%;
  }
  .st12-img-div {
    margin-left: -5%;
  }
  .st12-img-div2 {
    margin-right: -5%;
  }
  .st12-container .bottom {
    height: 160vh;
  }
}

@media(max-width: 1500px) {
  .st2-div {
    padding-right: 150px;
  }
  .st2-wrap:last-child .st2-div {
    padding-left: 150px;
  }
  .st10-txt {
    right: 3%;
  }
  .st13-item-div {
    padding: 20px 10px;
  }
}

@media(max-width: 1400px) {
  #section10 {
    padding: 100px 0;
  }
  .st10-txt {
    position: static;
    text-align: center;
  }
  .st10-hr {
    height: 60px;
  }
  .st13-item-tit>p:last-child {
    font-size: 32px;
    letter-spacing: -0.8px;
  }
  .black-box {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
  .st13-item-content {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
  .st13-item {
    padding: 50px 20px;
  }
  .black-box-div>div {
    font-size: 16px;
    letter-spacing: -0.4px;
  }
  .st14-logo {
    width: 240px;
  }
  .st14-div div {
    font-size: 20px;
    letter-spacing: -0.5px;
  }
}

@media (max-width: 1280px) {
  .main-logo {
    width: 600px;
  }
  .st2-tit, .st9-tit {
    font-size: 48px;
    letter-spacing: -1.2px;
  }
  .st2-bubble-div, .st2-bubble-div2 {
    width: 160px;
    top: -17%;
  }
  .st2-div p {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .st2-div {
    padding-right: 80px;
  }
  .st2-wrap:last-child .st2-div {
    padding-left: 80px;
  }
  .st3-container {
    padding: 0 40px;
  }
  .st3-wrap, .st11-wrap {
    width: 100%;
  }
  .st3-div p, .st11-div p {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .st3-box p {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
  .st3-inner>p {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  #section4 {
    padding: 80px 0;
  }
  .st5-bubble-inner {
    padding: 5px;
  }
  .st5-bubble-inner p {
    width: 560px;
    font-size: 28px;
    letter-spacing: -0.7px;
  }
  .st5-container {
    gap: 40px;
  }
  .st5-shop {
    width: 33%;
  }
  .st5-shop-div {
    width: 40%;
  }
  .wave01 {
    transform: scale(1.5);
  }
  .wave02 {
    transform: scale(1.3);
  }
  .wave03 {
    transform: scale(1.1);
  }
  #section6 {
    padding: 60px 40px 0;
  }
  .st6-inner {
    padding-top: 60px;
  }
  .st6-left-txt {
    font-size: 20px;
    letter-spacing: -0.5px;
  }
  .st6-right-txt {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .st6-bottom-wrap p {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .st6-bottom-div>p {
    font-size: 32px;
    letter-spacing: -0.8px;
  }
  .st6-bottom-div {
    height: 95px;
  }
  .up-div {
    width: 90px;
  }
  .light {
    width: 112px;
  }
  .up-arrow {
    width: 200px;
    right: -7%;
    bottom: -15%;
  }
  .st7-top {
    padding: 80px 0;
  }
  .st7-top .neon-tit, .st7-bottom p {
    font-size: 40px;
    letter-spacing: -1px;
  }
  .st8-container p {
    font-size: 24px;
    letter-spacing: -0.6px;
    width: 300px;
    height: 70px;
  }
  .st8-logo {
    width: 190px;
    left: 0;
  }
  #section8 {
    padding: 60px 40px 0;
  }
  .st8-inner {
    padding: 60px 0;
  }
  .st8-container {
    gap: 40px;
  }
  #section9 {
    padding: 60px 40px;
  }
  .st9-inner {
    padding: 80px 0;
  }
  .tab-wrap {
    gap: 20px;
  }
  .menu-tab {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .menu-wrap {
    gap: 16px;
  }
  .menu-item p {
    font-size: 20px;
    letter-spacing: -0.5px;
  }
  #section10 {
    padding: 80px 0 80px;
  }
  .marquee-hippho {
    width: 500px;
  }
  .marquee-txt {
    width: 688px;
  }
  .marquee-content {
    gap: 30px;
  }
  #section11 {
    padding: 60px 40px 60px;
  }
  .st11-inner {
    padding-bottom: 80px;
  }
  .st11-hr {
    height: 80px;
  }
  .st11-box-container {
    width: 90%;
  }
  .st11-box-div p {
    font-size: 20px;
    letter-spacing: -0.6px;
  }
  .st11-box-div div {
    font-size: 16px;
    letter-spacing: -0.4px;
  }
  .img-section img {
    width: 400px;
  }
  .st12-box-div p {
    font-size: 28px;
    letter-spacing: -0.7px;
  }
  #section13 {
    padding: 60px 40px 0;
  }
  #section14 {
    padding: 0 40px;
  }
  .st14-inner {
    padding: 60px 0;
  }
  .st14-logo {
    width: 210px;
  }
  .st14-div div {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
}

@media(max-width: 1200px) {
  .st13-item-tit>p:first-child {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
  .st13-item-div {
    padding: 20px 0;
  }
  .st13-item {
    padding: 40px 20px;
  }
  .black-box {
    font-size: 16px;
    letter-spacing: -0.4px;
  }
  .black-box-div>div {
    font-size: 14px;
    letter-spacing: -0.35px;
  }
  .st13-item-content {
    font-size: 16px;
    letter-spacing: -0.4px;
  }
  .st14-container {
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
  }
  .sign-img {
    width: 100%;
  }
  .st14-logo {
    width: 278px;
  }
  .st14-div div {
    font-size: 22px;
    letter-spacing: -0.55px;
  }
}

@media(max-width: 1024px) {
  .st2-bubble-div, .st2-bubble-div2 {
    width: 130px;
    top: -10%;
  }
  .st2-div p {
    font-size: 20px;
    letter-spacing: -0.5px;
  }
  .st2-div {
    padding-right: 40px;
  }
  .st2-wrap:last-child .st2-div {
    padding-left: 40px;
  }
  .menu-wrap {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .menu-item {
    max-width: unset;
    width: calc(50% - 8px);
  }
  .st11-box {
    gap: 10px;
  }
  .st12-container .bottom {
    height: 150vh;
  }
  .img-section img {
    width: 350px;
  }
  .st13-inner {
    border-radius: 0;
    background: transparent;
    gap: 30px;
  }
  .st13-container {
    flex-direction: column;
    gap: 20px;
    border-radius: 0;
    border: none;
  }
  .st13-item {
    width: 100%;
    border-radius: 12px;
    background: url(../img/st10-bg.png);
    background-position: center center !important;
    background-size: cover !important;
  }
  .st13-bottom {
    padding: 0 0 40px;
  }
  .st13-item-tit>p:first-child {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .st13-item-tit>p:last-child {
    font-size: 48px;
    letter-spacing: -1.2px;
  }
  .st13-item {
    padding: 50px 30px;
  }
  .st13-item-div {
    width: 70%;
    padding: 20px 10px;
  }
  .black-box {
    font-size: 20px;
    letter-spacing: -0.5px;
  }
  .black-box-div>div {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
  .st13-item-content {
    font-size: 20px;
    letter-spacing: -0.5px;
  }
  .interior-open {
    position: static;
  }
}

@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-logo {
    width: 500px;
  }
  #section2 {
    padding: 100px 0 80px;
  }
  .st2-tit, .st9-tit {
    font-size: 40px;
    letter-spacing: -1px;
    line-height: 140%;
  }
  .st-tit-div svg {
    width: 27px;
    position: absolute;
    top: 0;
    left: 7%;
    margin: 0 !important;
  }
  .st-tit-div svg:last-child {
    left: unset;
    top: unset;
    right: -3%;
    bottom: 13%;
  }
  .st2-sub-tit {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
  .st2-radio {
    width: 150px;
  }
  .st2-bubble-div, .st2-bubble-div2 {
    display: none;
  }
  .st2-wrap {
    gap: 60px;
  }
  .st2-div p {
    font-size: 18px;
    letter-spacing: -0.45px;
    padding: 6px 15px;
  }
  .st2-div {
    padding-right: 0;
  }
  .st2-div img {
    width: 27px;
  }
  .st2-wrap:last-child .st2-div {
    padding-left: 0;
  }
  .chain-div, .chain-div2 {
    padding: 20px 0;
  }
  .st3-container {
    padding: 0 20px;
  }
  .st3-div p, .st11-div p {
    font-size: 20px;
    letter-spacing: -0.5px;
  }
  .st3-box-container {
    flex-wrap: wrap;
  }
  .st3-box {
    width: calc(50% - 10px);
    aspect-ratio: 7 / 5.5;
  }
  .st3-box img {
    width: 30%;
  }
  .st3-inner>p {
    font-size: 20px;
    letter-spacing: -0.5px;
  }
  .st3-img-div {
    width: 30%;
    top: -3%;
    right: -16%;
  }
  .st3-img-div2 {
    width: 30%;
    left: -16%;
    bottom: 0;
  }
  .profit-table th, .profit-table td {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
  .inner-table td {
    font-size: 22px;
    letter-spacing: -0.55px;
  }
  #section5 {
    padding: 80px 0;
    background-attachment: unset;
  }
  .st5-bubble {
    display: none;
  }
  .st5-container {
    flex-direction: column;
    align-items: center;
  }
  .wave01 {
    transform: scale(1.6);
  }
  .wave02 {
    transform: scale(1.4);
  }
  .wave03 {
    transform: scale(1.2);
  }
  .st5-shop {
    width: 40%;
  }
  .st5-shop-div {
    width: 60%;
  }
  .vs {
    width: 65px;
  }
  #section6 {
    padding: 40px 20px 0;
  }
  .st6-inner {
    padding-top: 40px;
    gap: 40px;
  }
  .st6-wrap {
    gap: 20px;
  }
  .st6-left-txt {
    font-size: 18px;
    letter-spacing: -0.45px;
    padding: 15px;
    width: 35%;
  }
  .st6-right-txt {
    font-size: 20px;
    letter-spacing: -0.5px;
    padding: 16px 12px;
  }
  .st6-bottom-wrap p {
    font-size: 20px;
    letter-spacing: -0.5px;
  }
  .st6-bottom-div>p {
    font-size: 28px;
    letter-spacing: -0.7px;
  }
  .st6-bottom-div {
    height: 80px;
  }
  .up-div {
    width: 80px;
  }
  .light {
    width: 100px;
  }
  .up-arrow {
    width: 170px;
  }
  .st6-img-div div {
    aspect-ratio: 1 / 1.2;
  }
  .st6-img-div div img {
    height: 100%;
    object-fit: cover;
  }
  .st7-top {
    padding: 60px 0;
  }
  .st7-top .neon-tit, .st7-bottom p {
    font-size: 32px;
    letter-spacing: -0.8px;
  }
  .st7-bottom {
    height: 400px;
    background-attachment: unset;
  }
  #section8 {
    padding: 40px 20px 0;
  }
  .st8-inner {
    padding: 40px 0;
  }
  .st8-container {
    gap: 30px;
  }
  .st8-container p {
    font-size: 20px;
    letter-spacing: -0.5px;
    width: 240px;
    height: 60px;
  }
  .st8-logo {
    width: 160px;
  }
  #section9 {
    padding: 40px 20px;
  }
  .tab-wrap {
    gap: 15px;
  }
  .menu-tab {
    font-size: 20px;
    letter-spacing: -0.5px;
  }
  .menu-item p {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
  .marquee-hippho {
    width: 400px;
  }
  .marquee-txt {
    width: 588px;
  }
  .st10-txt {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
  #section11 {
    padding: 60px 20px 40px;
  }
  .st11-inner {
    padding-bottom: 60px;
  }
  .st11-hr {
    height: 60px;
  }
  .st11-box-container {
    gap: 10px;
  }
  .st11-box p {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
  .st11-box img {
    width: 30%;
  }
  .st11-box-div {
    gap: 4px;
  }
  .st12-top .st-tit {
    font-size: 36px;
    letter-spacing: -0.9px;
  }
  .st12-container .bottom {
    height: 130vh;
  }
  .img-section img {
    width: 300px;
  }
  .st12-box-div p {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  #section13 {
    padding: 40px 20px 0;
  }
  #section14 {
    padding: 0 20px;
  }
  .st14-inner {
    padding: 40px 0;
  }
  .st14-div {
    gap: 30px;
  }
  .st14-logo {
    width: 240px;
  }
  .st14-div div {
    font-size: 20px;
    letter-spacing: -0.5px;
  }
}

@media (max-width: 768px) {
  .layer-popup {
    position: fixed;
    top: 5%;
    left: 5%;
  }
  #section2 {
    padding: 80px 20px;
    gap: 40px;
  }
  .st3-inner {
    padding: 60px 0;
    gap: 40px;
  }
  .st3-container {
    padding: 0 12px;
  }
  .st3-box-container {
    width: 100%;
    padding: 0 20px;
  }
  #section4 {
    padding: 60px 12px;
    gap: 40px;
  }
  .profit-table {
    width: 100%;
  }
  #section5 {
    padding: 60px 0;
  }
  #section6 {
    padding: 40px 12px 0;
  }
  .st6-inner {
    padding-top: 20px;
    gap: 30px;
  }
  .st6-wrap {
    gap: 10px;
  }
  .st6-wrap img {
    width: 54px;
  }
  .st6-left-txt {
    font-size: 15px;
    letter-spacing: -0.375px;
  }
  .st6-right-txt {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
  .st6-bottom-wrap p {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
  .st6-bottom-div>p {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .st6-bottom-div {
    height: 75px;
  }
  .up-div {
    width: 65px;
  }
  .light {
    width: 82px;
  }
  .up-arrow {
    width: 140px;
  }
  #section8 {
    padding: 40px 12px 0;
  }
  .st8-inner {
    padding: 20px 0 40px;
    gap: 40px;
  }
  .st8-container {
    gap: 20px;
  }
  .st8-container p {
    font-size: 18px;
    letter-spacing: -0.45px;
    width: 200px;
    height: 50px;
  }
  .st8-logo {
    width: 120px;
  }
  #section9 {
    padding: 40px 12px;
  }
  .st9-inner {
    padding: 60px 12px;
  }
  .menu-container {
    width: 100%;
  }
  #section10 {
    padding: 60px 0;
  }
  #section11 {
    padding: 60px 12px 40px;
  }
  .st11-inner {
    padding-bottom: 40px;
  }
  .st11-hr {
    height: 40px;
  }
  .st12-container .bottom {
    height: 120vh;
  }
  .img-section img {
    width: 250px;
  }
  .st13-inner {
    gap: 20px;
  }
  .st13-item-tit>p:first-child {
    font-size: 20px;
    letter-spacing: -0.5px;
  }
  .st13-item-tit>p:last-child {
    font-size: 40px;
    letter-spacing: -1px;
  }
  .black-box {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
  .st13-item-content {
    font-size: 16px;
    letter-spacing: -0.4px;
  }
  .st13-item {
    padding: 50px 20px;
  }
  .st13-item-div {
    width: 80%;
  }
  .black-box-div>div {
    font-size: 15px;
    letter-spacing: -0.375px;
  }
  .st13-bottom {
    display: none;
  }
  .interior-swiper-container {
    display: flex;
  }
  #section14 {
    padding: 0 12px;
  }
  .st14-inner {
    padding: 20px 0;
    gap: 40px;
  }
}

@media (max-width: 650px) {
  .main-logo {
    width: 400px;
  }
  #section2 {
    background: url(../img/st2-mo-bg.png);
  }
  .st2-tit, .st9-tit {
    font-size: 32px;
    letter-spacing: -0.8px;
  }
  .st-tit-div svg {
    width: 20px;
    left: 8%;
    margin: 0 !important;
  }
  .st-tit-div svg:last-child {
    right: -2%;
  }
  .st2-sub-tit {
    font-size: 16px;
    letter-spacing: -0.4px;
  }
  .st2-wrap {
    gap: 40px;
    padding: 0 0 0 20px;
  }
  .st2-wrap:first-child {
    align-items: flex-end;
    padding: 0 20px 0 0;
  }
  .st2-div {
    gap: 16px;
  }
  .st2-div img {
    width: 20px;
  }
  .st2-div p {
    font-size: 16px;
    letter-spacing: -0.4px;
    padding: 4px 10px;
    border-radius: 2px;
    border-width: 1.5px;
    justify-content: flex-end;
    gap: 5px;
  }
  .st2-wrap:last-child .st2-div p {
    justify-content: flex-start;
  }
  .st3-box {
    gap: 10px;
    border-radius: 6px;
    box-shadow: 0px 8px 12px 0px rgba(0, 0, 0, 0.10);
    border-width: 2.5px;
  }
  .st3-inner>p {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
  .st3-img-div {
    width: 36%;
    right: -18%;
  }
  .st3-img-div2 {
    width: 36%;
    left: -18%;
  }
  .profit-table th, .profit-table td {
    font-size: 16px;
    letter-spacing: -0.4px;
  }
  .inner-table td {
    font-size: 20px;
    letter-spacing: -0.5px;
  }
  .st5-container {
    gap: 20px;
  }
  .st5-shop-div {
    width: 55%;
  }
  .st6-wrap {
    gap: 4px;
  }
  .st6-left-txt {
    font-size: 14px;
    letter-spacing: -0.35px;
    padding: 5px;
    border-radius: 20px;
  }
  .st6-right-txt {
    font-size: 16px;
    letter-spacing: -0.4px;
    padding: 12px 6px;
    border-radius: 30px;
    box-shadow: 0px 2.4px 7.2px 0px rgba(0, 0, 0, 0.08);
  }
  .st6-hr {
    width: 100%;
  }
  .st6-bottom-wrap {
    flex-wrap: wrap;
    gap: 3px;
    width: 75%;
  }
  .st6-bottom-wrap p {
    font-size: 16px;
    letter-spacing: -0.4px;
    padding: 4px 4px 4px 6px;
    gap: 5px;
  }
  .st6-bottom-div>p {
    font-size: 20px;
    letter-spacing: -0.5px;
  }
  .st6-bottom-div {
    height: 57px;
    gap: 8px;
  }
  .up-div {
    width: 53px;
  }
  .light {
    width: 65px;
  }
  .up-arrow {
    display: none;
  }
  .st7-top {
    padding: 50px 0;
  }
  .st7-top .neon-tit, .st7-bottom p {
    font-size: 28px;
    letter-spacing: -0.7px;
  }
  .st7-bottom {
    height: 300px;
  }
  .st8-container p {
    font-size: 16px;
    letter-spacing: -0.4px;
    width: 150px;
    height: 40px;
    border-radius: 6px;
  }
  .st8-logo {
    width: 100px;
  }
  .st8-arrow {
    top: -5%;
    left: -6%;
  }
  .tab-wrap {
    gap: 8px;
  }
  .menu-tab {
    font-size: 18px;
    letter-spacing: -0.45px;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.08);
    border-radius: 6px;
    border-width: 1px;
  }
  .menu-wrap {
    gap: 12px;
  }
  .menu-item {
    width: calc(50% - 6px);
    border-radius: 6px;
  }
  .menu-item p {
    font-size: 16px;
    letter-spacing: -0.4px;
  }
  #section10 .st-tit {
    font-size: 32px;
    letter-spacing: -0.8px;
  }
  .marquee {
    padding: 15px 0;
  }
  .marquee-content {
    gap: 20px;
  }
  .marquee-hippho {
    width: 300px;
  }
  .marquee-txt {
    width: 488px;
  }
  .st10-txt {
    font-size: 16px;
    letter-spacing: -0.4px;
  }
  .st11-box-container {
    flex-direction: column;
  }
  .st11-box {
    max-width: unset;
    width: 100%;
    padding: 20px;
    aspect-ratio: unset;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .st11-box img {
    width: 60px;
  }
  .st11-box-div {
    align-items: flex-start;
  }
  .st11-box-div div {
    text-align: left;
  }
  .st11-box-div div br {
    display: none;
  }
  .st12-top .st-sub-tit24 {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
  .st12-img-div {
    margin-left: -20%;
  }
  .st12-img-div2 {
    margin-right: -20%;
    margin-top: 30%;
  }
  .st12-box {
    padding: 20px 0;
    gap: 20px;
  }
  .st12-box-div p {
    font-size: 20px;
    letter-spacing: -0.5px;
  }
  #section12 {
    margin-top: -100vh;
  }
  .circle-txt-fixed {
    display: flex;
  }
  .st12-top .circle-txt {
    display: none;
  }
  #section13 {
    padding: 40px 12px 0;
  }
  .st13-item-tit>p:last-child {
    font-size: 32px;
    letter-spacing: -0.8px;
  }
  .st13-item {
    padding: 30px 10px;
  }
  .st13-item-div {
    width: 90%;
  }
  .st14-container {
    width: 100%;
  }
  .st14-div {
    gap: 20px;
    box-sizing: border-box;
    padding: 0 12px;
  }
  .st14-logo {
    width: 213px;
  }
  .st14-div div {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
}

@media (max-width: 480px) {
  .main-logo {
    width: 320px;
  }
  .st2-div p {
    width: 100%;
    font-size: 14px;
    letter-spacing: -0.35px;
    justify-content: flex-end;
  }
  .st2-wrap:last-child .st2-div p {
    justify-content: flex-start;
  }
  .st2-div img {
    width: 17px;
  }
  .st6-wrap img {
    width: 32px;
  }
  .st6-left-txt {
    font-size: 12px;
    letter-spacing: -0.3px;
  }
  .st6-right-txt {
    font-size: 14.4px;
    letter-spacing: -0.36px;
    width: 52%;
  }
  .st6-bottom-wrap p {
    font-size: 14px;
    letter-spacing: -0.35px;
  }
  .st6-bottom-div>p {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
  .st7-top .neon-tit, .st7-bottom p {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .st8-arrow {
    top: 5%;
  }
  .menu-tab {
    font-size: 16px;
    letter-spacing: -0.4px;
  }
  .menu-item p {
    font-size: 14px;
    letter-spacing: -0.35px;
  }
  .hover img {
    width: 60px;
  }
  .st11-box-div div br {
    display: block;
  }
  .st12-img-div {
    margin-left: -30%;
  }
  .st12-img-div2 {
    margin-right: -30%;
  }
  .st13-item-div {
    width: 100%;
    padding: 20px 0;
  }
  .st14-div div {
    font-size: 16px;
    letter-spacing: -0.4px;
  }
  .marquee-hippho {
    width: 270px;
  }
  .marquee-txt {
    width: 388px;
  }
}

@media(max-width: 400px) {
  .st6-bottom-wrap {
    width: 90%;
  }
}
