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






.font-style{
  font-family: "ON YeossihyangyakeonhaeOTF";
}

/* main */
#main {
  width: 100%;
  background: #111;
}
.page1{
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 32px;
}
.page1 .swap-txt-wrap{
  width: 100%;
  position: relative;
  height: 3.3em;              /* ⭐ 한 줄 높이 고정 */
  overflow: hidden
}
.page1 .swap-txt-wrap .txt{
  color: #FFF;
  text-align: center;
  font-family: "ON YeossihyangyakeonhaeOTF";
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -1px;
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0;
  left: 0;
  top: 0;
  width: 100%;
  transform: translateY(10px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.page1 .swap-txt-wrap .txt.is-active {
  opacity: 1;
  transform: translateY(0);
}
.page1 .page-logo{
  max-width: 610px;
  width: 70%;
  position: relative;
  z-index: 2;
}
.page1 .video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  z-index: 0;
}
.page1 .video-bg iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  /* 핵심 */
  min-width: 177.78vh;   /* 16:9 기준 가로 강제 */
  min-height: 56.25vw;   /* 16:9 기준 세로 강제 */
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.page2{
  background: url("../img/page2-bg.png");
  background-size: cover !important;
  background-position: center center !important;
}
.page2 .flex-wrap{
  max-width: 1300px;
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.page2 .flex-wrap .left-wrap{

}
.page2 .flex-wrap .left-wrap .top-wrap{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.page2 .flex-wrap .left-wrap .top-wrap .item{
  width: 25%;
  text-align: center;
  display: block;
}
.page2 .flex-wrap .left-wrap .top-wrap .item svg{
  width: 58px;
  margin-bottom: 12px;
}
.page2 .flex-wrap .left-wrap .top-wrap .item .txt{
  color: var(--darkbrown, #5B373B);
  text-align: center;
  font-family: 'ON YeossihyangyakeonhaeOTF';
  font-size: 16px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  letter-spacing: -0.4px;
}
.page2 .flex-wrap .left-wrap .page-logo{
  max-width: 407px;
  width: 90%;
  margin: 20px 0 60px 0;
}
.page2 .flex-wrap .left-wrap .txt1{
  margin-bottom: 25px;
}
.page2 .flex-wrap .right-wrap{
  width: 585px;
  position: relative;
  text-align: right;
}
.page2 .flex-wrap .right-wrap .video{
  width: 100%;
  position: relative;
  z-index: 1;
}
.page2 .flex-wrap .right-wrap .talk{
  width: 204px;
  position: absolute;
  z-index: 2;
  top: -90px;
  right: -6%;
}
.page2 .flex-wrap .right-wrap .talk.talk-mo{
  display: none;
}
.page2 .flex-wrap .right-wrap .youtube-wrap{
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.80);
  display: inline-flex;
  padding: 12px 20px;
  align-items: center;
  gap: 8px;
  margin-top: 20px;

  color: var(--darkbrown, #5B373B);
  font-family: Pretendard;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%; /* 24px */
  letter-spacing: -0.5px;
  cursor: pointer;
}
.page2 .flex-wrap .right-wrap .back{
  position: absolute;
  left: -35%;
  width: 100%;
  top: -85px;
}
.page3{
  background: url("../img/page3-bg.png");
  background-size: cover !important;
  background-position: center center !important;
}
.page3 .tit1{
  color: #0B080C;
  margin-bottom: 20px;
}
.page3 .tit2{
  color: #0B080C;
  line-height: 120%;
}
.page3 .slide-container{
  max-width: 1020px;
  margin: 60px auto 0;
  position: relative;
  width: 90%;
}
.page3 .slide-container .store-slide-container{
  overflow: hidden;
  width: 100%;
}
.page3 .slide-container .store-slide-container .swiper-slide{
  border: 1px solid #111;
  background: #FFF;
  padding: 10px;
  position: relative;
}
.page3 .slide-container .store-slide-container .swiper-slide img{
  width: 100%;
}
.page3 .slide-container .store-slide-container .swiper-slide .info-box{
  display: flex;
  padding: 6px 20px;
  align-items: center;
  gap: 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.90);
  backdrop-filter: blur(5px);
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  white-space: nowrap;
}
.page3 .slide-container .store-slide-container .swiper-slide .info-box .txt1{
  color: #D02326;
  font-family: "ON YeossihyangyakeonhaeOTF";
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 44.8px */
  letter-spacing: -0.8px;
}
.page3 .slide-container .store-slide-container .swiper-slide .info-box .txt2{
  color: #505050;
  font-family: Pretendard;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 28px */
  letter-spacing: -0.5px;
}
.page3 .slide-container .store-slide-container .swiper-slide .info-box .dv{
  color: rgba(80, 80, 80, 0.15);
  font-family: Pretendard;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: -0.5px;
}
.page3 .slide-container .store-slide-container .swiper-slide .info-box .mo-svg{
  display: none;
}
.page3 .slide-container .navi-wrap{
  display: flex;
  width: 120%;
  position: absolute;
  left: -10%;
  top: 50%;
  transform: translateY(-50%);
  align-items: center;
  justify-content: space-between;
}
.page3 .slide-container .navi-wrap .prev,
.page3 .slide-container .navi-wrap .next{
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.12);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  cursor: pointer;
}
.page4{
  background: url("../img/page4-bg.png");
  background-size: cover !important;
  background-position: center center !important;
  padding: 140px 0;
  display: flex;
  flex-direction: column;
  gap: 100px;
  overflow: hidden;
}
.page4 .sales-container{
  max-width: 1345px;
  width: 90%;
  margin: 0 auto;
  border: 1px solid #FFF;
  background: rgba(255, 255, 255, 0.10);
  padding: 40px 0;
  position: relative;
}
.page4 .sales-container .tit-wrap{
  max-width: 640px;
  width: 90%;
  margin: 0 auto -20px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 0;
  border: 1px solid var(--mainColor, #381804);
  background: #FFF;
  box-shadow: 0 8px 24px 0 rgba(0, 0, 0, 0.12);
  gap: 8px;
  top: -80px;
  will-change: clip-path, opacity, transform;
  clip-path: inset(0 50% 0 50%); /* 가운데만 */
  opacity: 0;                    /* 아예 안보이게 */
  transform: translateY(10px);
}
.page4 .sales-container .tit-wrap:after{
  content: "";
  position: absolute;
  left: 0;
  width: 8px;
  top: 5px;
  height: calc(100% - 10px);
  border-radius: 0 4px 4px 0px;
  background: var(--Pointcolor2, #EA5619);
}
.page4 .sales-container .tit-wrap:before{
  content: "";
  position: absolute;
  right: 0;
  width: 8px;
  top: 5px;
  height: calc(100% - 10px);
  border-radius: 4px 0px 0px 4px;
  background: var(--Pointcolor2, #EA5619);
}
.page4 .sales-container .flex-wrap{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
  width: 95%;
  margin: 0 auto;
}
.page4 .sales-container .flex-wrap img{
  width: calc((100% - 50px) / 3);
}
.page4 .sales-container .mark{
  position: absolute;
  bottom: -13%;
  right: -5%;
  max-width: 200px;
  width: 18%;
}
.page4 .sales-container .bottom-txt{
  color: #FFF;
  text-align: center;
  font-family: Pretendard;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: -0.4px;
  margin-top: 20px;
}
.page5{
  background: url("../img/page5-bg.png");
  background-size: cover !important;
  background-position: center center !important;
  overflow: hidden;
  position: relative;
}
.page5 .left{
  position: absolute;
  top: 12%;
  left: 0;
}
.page5 .right{
  position: absolute;
  top: 8%;
  right: 0;
}
.page5 .text28{
  margin: 30px 0 60px;
  font-weight: 400;
  line-height: 150%;
}
.page5 .mask{
  margin: 60px 0 125px;
}
.page5 .youtube-slide-container{
  width: 100%;
  position: relative;
  overflow: hidden;
}
.page5 .youtube-slide-container .video-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;   /* 유튜브 기본 비율 */
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.page5 .youtube-slide-container .video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  z-index: 1;
}
.page5 .youtube-slide-container .navi-wrap{
  width: 55%;
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 5;
  pointer-events: none;
}
.page5 .youtube-slide-container .navi-wrap .prev,
.page5 .youtube-slide-container .navi-wrap .next{
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.12);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  cursor: pointer;
  position: relative;
  z-index: 5;
  pointer-events: auto;
}
.page5 .middle{
  max-width: 1300px;
  width: 90%;
  margin: 0 auto;
  display: block;
}
.page5 .middle.middle-mo{
  display: none;
}
.page5 .store-wrap{
  max-width: 1300px;
  width: 90%;
  margin: 0 auto;
  position: relative;
  border: 1px solid #111;
}
.page5 .store-wrap .store{
  width: 100%;
  position: relative;
  z-index: 1;
}
.page5 .store-wrap .talk1{
  position: absolute;
  top: 17%;
  left: 8%;
  width: 25%;
  z-index: 2;
}
.page5 .store-wrap .talk2{
  position: absolute;
  top: 17%;
  right: 8%;
  width: 25%;
  z-index: 2;
}
.page5 .bottom-wrap{
  margin: 40px auto 0;
}
.page6{
  background: url("../img/page6-bg.png");
  background-size: cover !important;
  background-position: center center !important;
  overflow: hidden;
  position: relative;
}
.page6 .flex-wrap{
  max-width: 1300px;
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.page6 .flex-wrap .left-wrap{
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.page6 .flex-wrap .left-wrap .txt1{
  color: #fff;
  text-align: left;
}
.page6 .flex-wrap .left-wrap .txt2{
  color: rgba(255, 255, 255, 0.80);
  font-family: Pretendard;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 33.6px */
  letter-spacing: -0.6px;
}
.page6 .flex-wrap .right-wrap{
  width: 672px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.page6 .flex-wrap .right-wrap .item{
  width: 100%;
  display: flex;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  gap: 0;
  align-items: unset;
}
.page6 .flex-wrap .right-wrap .item img{
  width: 30%;
}
.page6 .flex-wrap .right-wrap .item .txt-wrap{
  padding: 25px 40px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.page6 .flex-wrap .right-wrap .item .txt-wrap .text28{
  padding: 6px 12px;
  border: 1px solid #D0B18B;
  background: #0B080C;
}
.page7{
  background: url("../img/page7-bg.png");
  background-size: cover !important;
  background-position: center center !important;
  overflow: hidden;
  position: relative;
}
.page7 .text72{
  line-height: 130%;
}
.page7 .txt2{
  margin: 32px 0;
  font-family: Pretendard;
  font-weight: 300;
}
.page7 .txt3{
  color: rgba(255, 255, 255, 0.80);
  font-family: Pretendard;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: -0.4px;
  text-align: center;
}
.page7 .chart-container{
  width: 100%;
  position: relative;
  margin-top: 60px;
}
.page7 .chart-container .chart{
  width: 100%;
}
.page7 .chart-container .chart.chart-mo{
  display: none;
}
.page7 .chart-container .box-wrap{
  position: absolute;
  left: 9%;
  bottom: 0;
  border: 4px solid #FFE991;
  background: rgba(208, 35, 38, 0.20);
  width: 30%;
  height: 90%;
  z-index: 2;
  animation: blinkBorder 1.2s infinite;
  text-align: center;
}
@keyframes blinkBorder {
  0% {
    border-color: #FFE991;
    opacity: 1;
  }
  50% {
    border-color: transparent;
    opacity: 0.7;
  }
  100% {
    border-color: #FFE991;
    opacity: 1;
  }
}
.page7 .chart-container .box-wrap .txt-img{
  position: relative;
  width: 90%;
  top: -12%;
}
.page7 .chart-container .box-wrap .txt-img2{
  position: relative;
  width: 80%;
  bottom: 5%;
}
.page7 .chart-container .box-wrap .arrow{
  position: absolute;
  top: -11%;
  right: -21%;
  height: 32%;
  width: 85%;
}
.page7 .chart-container .talk{
  position: absolute;
  right: 7%;
  top: -6%;
  width: 11%;
}
.page7 .bottom{
  color: rgba(255, 255, 255, 0.80);
  text-align: center;
  font-family: Pretendard;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 145%; /* 23.2px */
  letter-spacing: -0.4px;
  margin-top: 70px;
}


.page8 {
  background: url(../img/page5-bg.png);
  background-size: cover !important;
  background-position: center center !important;
  overflow: hidden;
  position: relative;
}
.page8 .text72{
  margin: 20px auto 32px;
}
.page8 .text28{
  font-weight: 300;
}
.rolling-text-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  font-size: 32px;
  font-weight: 600;
  margin: 50px 0;
}

/* 좌우 고정 텍스트 */
.rolling-text-wrap .side {
  color: #7a4a2e;
  white-space: nowrap;
}

/* 가운데 박스 */
.rolling-box {
  position: relative;
  height: 48px;                 /* 한 줄 높이 */
  overflow: hidden;
  padding: 0 24px;
  background: #0d0d0f;
  border-radius: 6px;
  color: #fff;
}

/* 실제 롤링 영역 */
.rolling-inner {
  position: relative;
}

/* 각 텍스트 */
.rolling-inner .item {
  height: 48px;
  line-height: 48px;
  text-align: center;
  white-space: nowrap;
}
.page8 .insta-slide-container{
  position: relative;
  width: 100%;
}
.page8 .insta-slide-container .swiper-slide {
  transform: scale(1);
  z-index: 1;
  transition: transform 0.45s ease;
  will-change: transform;
  display: flex;
  justify-content: center;
}

.page8 .insta-slide-container .swiper-slide-active {

}

.page8 .insta-slide-container .swiper-slide img {
  width: 100%;
  display: block;
  border-radius: 16px;
}
.page8 .insta-slide-container .swiper-slide .shorts-wrap {
  width: 100%;
  max-width: 320px;   /* PC에서 너무 커지지 않게 */
  aspect-ratio: 9 / 16;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
}
.shorts-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.page8 .insta-slide-container .phone {
  position: absolute;
  left: 0;
  top: 5px;
  bottom: auto;
  width: 0;
  height: 0;
  object-fit: contain;
  pointer-events: none;
  z-index: 10;
}
.page8 .mark-left{
  position: absolute;
  top: 12%;
  left: 0;
}
.page8 .mark-right {
  position: absolute;
  top: 8%;
  right: 0;
}
.page9{
  background: #F0F1F0;
  position: relative;
}
.page9 .flag{
  position: absolute;
  top: 0;
  left: 7%;
  max-width: 113px;
}
.page9 .text72{
  line-height: 120%;
  z-index: 2;
  position: relative;
}
.page9 .flex-wrap{
  margin: 60px auto 80px;
  max-width: 1300px;
  width: 90%;
  padding: 10px;
  box-sizing: border-box;
  background: #fff;
  display: flex;
  position: relative;
  z-index: 2;
}
.page9 .flex-wrap:nth-last-child(1){
  margin: 0 auto;
}
.page9 .flex-wrap .type-slide-container{
  width: 53%;
  position: relative;
  overflow: hidden;
  border-top: 1px solid #111;
  border-left: 1px solid #111;
  border-bottom: 1px solid #111;
}
.page9 .flex-wrap .type-slide-container img{
  width: 100%;
}
.page9 .flex-wrap .type-slide-container .navi-wrap{
  width: 140px;
  bottom: 20px;
  left: 20px;
  position: absolute;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 5;
  pointer-events: none;
}
.page9 .flex-wrap .type-slide-container .navi-wrap .prev,
.page9 .flex-wrap .type-slide-container .navi-wrap .next{
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.12);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  cursor: pointer;
  position: relative;
  z-index: 5;
  pointer-events: auto;
}
.page9 .flex-wrap .text-wrap{
  width: 47%;
  border-top: 1px solid #111;
  border-right: 1px solid #111;
  border-bottom: 1px solid #111;
  padding: 20px 40px;
  position: relative;
  z-index: 2;

}
.page9 .flex-wrap .text-wrap .txt1{
  color: #FFF;
  text-align: center;
  font-family: Pretendard;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.6px;
  padding: 8px 12px;
  background: #773E2A;
  margin-right: 20px;
}
.page9 .flex-wrap .text-wrap .txt2{
  color: #0B080C;
  font-family: Pretendard;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -1px;
  position: relative;
  top: 7px;
}
.page9 .flex-wrap .text-wrap ul{
  list-style: disc;
  margin: 20px 0 32px;
  padding-left: 20px;
}
.page9 .flex-wrap .text-wrap ul li{
  color: #444;
  font-family: Pretendard;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 30px */
  letter-spacing: -0.5px;
}
.page9 .flex-wrap .text-wrap .sales-wrap{
  border: 1px solid #773E2A;
}
.page9 .flex-wrap .text-wrap .sales-wrap .txt3{
  background: #0B080C;
  padding: 12px 0;
  color: #FFF;
  font-family: Pretendard;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.6px;
  text-align: center;
}
.page9 .flex-wrap .text-wrap .sales-wrap .txt4{
  color: #D02326;
  font-family: Pretendard;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.8px;
  padding: 20px 0;
  text-align: center;
}
.page9 .flex-wrap .text-wrap .txt5{
  color: #777;
  font-family: Pretendard;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.4px;
  margin-top: 5px;
}
.page9 .flex-wrap .text-wrap .talk{
  position: absolute;
  top: -8%;
  right: -8%;
  width: 35%;
}
.page9 .top-deco{
  position: absolute;
  top: 2%;
  right: 0;
  max-width: 366px;
  width: 25%;
  z-index: 1;
}
.page9 .bottom-deco{
  position: absolute;
  bottom: 2%;
  left: 0;
  max-width: 366px;
  width: 30%;
  z-index: 1;
}
.page10{
  background: #F0F1F0;
  padding: 0 40px 40px 40px;
  overflow: hidden;
}
.page10 .wrapper{
  width: 100%;
  border: 2px solid var(--darkbrown, #5B373B);
  background: #FFF;
  position: relative;
  padding: 80px 0;
  text-align: center;
}
.page10 .wrapper .top-right{
  position: absolute;
  top: -2px;
  right: -2.5px;
}
.page10 .wrapper .top-left{
  position: absolute;
  top: -2px;
  left: -2px;

}
.page10 .wrapper .bottom-right{
  position: absolute;
  bottom: -2.5px;
  right: -2.5px;
}
.page10 .wrapper .bottom-left{
  position: absolute;
  bottom: -2.5px;
  left: -2px;
}
.page10 .wrapper .text72{
  line-height: 120%;
}
.page10 .wrapper .text28{
  font-weight: 400;
  margin-top: 30px;
}
.page10 .wrapper .table-wrap{
  width: 90%;
  max-width: 1280px;
  margin: 60px auto 40px;
}
.page10 .wrapper .table-wrap table{
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
}
.page10 .wrapper .table-wrap table td{
  width: 20%;
  border: 1px solid #D0C4B4;
  text-align: center;
  padding: 20px 0px;
  font-family: Pretendard;
  font-size: 24px;
  font-style: normal;
  line-height: normal;
  letter-spacing: -0.6px;
  color: #0B080C;
  position: relative;
}
.page10 .wrapper .table-wrap table .black-bg{
  background: #0B080C;
  color: #fff;
  font-weight: 600;
}
.page10 .wrapper .table-wrap table .brown-bg{
  background: #5B373B;
  color: #fff;
  font-weight: 600;
}
.page10 .wrapper .table-wrap table .small{
  color: #505050;
  font-family: Pretendard;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.4px;
}
.page10 .wrapper .table-wrap table .stamp1{
  position: absolute;
  width: 95%;
  bottom: -13%;
  left: 2.5%;
}
.page10 .wrapper .table-wrap table .stamp2{
  position: absolute;
  width: 95%;
  bottom: -5%;
  left: 2.5%;
}
.page10 .wrapper .table-wrap table .stamp-mo{
  display: none;
}
.page10 .wrapper .table-wrap table .h{
  height: 90px;
}
.page10 .wrapper .table-wrap table br{
  display: none;
}
.page10 .wrapper .bottom{
  border-radius: 12px;
  background: #D02326;
  box-shadow: 0 8px 24px 0 rgba(0, 0, 0, 0.12);
  cursor: pointer;
  padding: 16px 32px;
  align-items: center;
  gap: 8px;
  align-items: center;
  display: inline-flex;
  color: #FFF;
  font-family: "ON YeossihyangyakeonhaeOTF";
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 33.6px */
  letter-spacing: -0.7px;
}
.page10 .wrapper .bottom:hover{
  background: #851618;
}
.page11{
  padding: 80px 40px;
  background: url("../img/page11-bg.png");
  background-size: cover !important;
  position: relative;
}
.page11 .tit-wrap{
  max-width: 640px;
  width: 70%;
  margin: 0 auto -20px;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 0;
  border: 1px solid var(--mainColor, #381804);
  background: #FFF;
  box-shadow: 0 8px 24px 0 rgba(0, 0, 0, 0.12);
  gap: 8px;
  top: 40px;
  left: 50%;
  will-change: clip-path, opacity, transform;
  clip-path: inset(0 50% 0 50%); /* 가운데만 */
  opacity: 0;                    /* 아예 안보이게 */
  transform: translateX(-50%);
  z-index: 2;
}
.page11 .tit-wrap:after{
  content: "";
  position: absolute;
  left: 0;
  width: 8px;
  top: 5px;
  height: calc(100% - 10px);
  border-radius: 0 4px 4px 0px;
  background: var(--Pointcolor2, #EA5619);
}
.page11 .tit-wrap:before{
  content: "";
  position: absolute;
  right: 0;
  width: 8px;
  top: 5px;
  height: calc(100% - 10px);
  border-radius: 4px 0px 0px 4px;
  background: var(--Pointcolor2, #EA5619);
}
.page11 .flex-wrap{
  max-width: 1480px;
  width: 100%;
  margin: 0 auto;
  background: url(../img/page2-bg.png);
  background-size: cover;
  flex-direction: row;
  display: flex;
}
.page11 .flex-wrap .text-wrap{
  width: 50%;
  padding: 80px 0px 80px 80px;
  text-align: left;
}
.page11 .flex-wrap .text-wrap .txt1{
  color: #773E2A;
  font-family: "ON Yeossihyangyakeonhae";
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.8px;
}
.page11 .flex-wrap .text-wrap .txt2{
  color: #0B080C;
  font-family: "ON YeossihyangyakeonhaeOTF";
  font-size: 72px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -1.8px;
  margin: 20px 0 40px;
}
.page11 .flex-wrap .text-wrap .txt3{
  color: #444;
  font-family: Pretendard;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 33.6px */
  letter-spacing: -0.6px;
}
.page11 .flex-wrap .text-wrap .txt3 strong{
  color: #0B080C;
}
.page11 .flex-wrap .img-wrap{
  width: 50%;
  background: url("../img/page11-img1.png");
  background-size: cover;
  position: relative;
  display: flex;
  align-items: flex-end;
}
.page11 .flex-wrap .img-wrap .img{
  width: 110%;
  position: relative;
  left: -10%;
}
.page11 .flex-wrap .img-wrap .cloud1,
.page11 .flex-wrap .img-wrap .cloud2{
  position: absolute;
  width: 105px;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}
.page11 .flex-wrap .img-wrap .cloud1{
  right: 10%;
  top:9%;
  animation: floatCloud1 6s infinite ease-in-out;
}
@keyframes floatCloud1 {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-18px);
  }
  100% {
    transform: translateX(0);
  }
}
.page11 .flex-wrap .img-wrap .cloud2{
  left: -50px;
  top: 41%;
  animation: floatCloud2 4.2s infinite ease-in-out;
}

@keyframes floatCloud2 {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(12px);
  }
  100% {
    transform: translateX(0);
  }
}
.page12{
  background-size: cover !important;
  background: url("../img/page12-bg.png");
  background-position: top center !important;
  text-align: center;
}
.page12 .circle-sub{
  display: inline-block;
  color: #fff;
  border: 1px solid #fff;
}
.page12 .text72{
  margin: 32px auto 100px;
}
.page12 .flex-wrap{
  max-width: 1300px;
  width: 90%;
  margin: 0 auto;
  justify-content: space-between;
  color: #000;
  display: flex;
}
.page12 .flex-wrap .item{
  width: 45%;
  position: relative;
  border: 12px solid #D0B18B;
  background: #FFF;
  padding: 75px 25px ;
  display: block;
}
.page12 .flex-wrap .item .tit-wrap{
  width: 100%;
  position: absolute;
  padding: 27px 0;
  top: -59px;
  left: 0;
}
.page12 .flex-wrap .item .tit-wrap p{
  position: relative;
  z-index: 3;
  color: #D0B18B;
  font-family: "ON YeossihyangyakeonhaeOTF";

}
.page12 .flex-wrap .item .tit-wrap .bg{
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
  z-index: 1;
}
.page12 .flex-wrap .item .tit-wrap .border{
  width: 115%;
  top: 2%;
  left: -7.5%;
  position: absolute;
  z-index: 2;
}
.page12 .flex-wrap .item .img-wrap{
  width: 100%;
  height: 320px;
  background: #ccc;
  margin-bottom: 24px;
}
.page12 .flex-wrap .item .txt{
  color: #444;
  text-align: center;
  font-family: Pretendard;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 33.6px */
  letter-spacing: -0.6px;
}
.page12 .flex-wrap .item .outline{
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

@media (max-width: 1650px) {
  .page11 .flex-wrap .text-wrap{
    padding: 80px 0px 80px 60px;
  }
  .page11 .flex-wrap .text-wrap .txt2{
    font-size: 70px;
  }
}
@media (max-width: 1550px) {
  .page11 .flex-wrap .text-wrap .txt1{
    font-size: 28px;
  }
}
@media (max-width: 1450px) {
  .page9 .flex-wrap .type-slide-container{
    width: 60%;
  }
}
@media (max-width: 1380px) {
  .page9 .flex-wrap .text-wrap .talk{
    width: 30%;
  }
  .page9 .flex-wrap .text-wrap .txt1{
    font-size: 20px;
  }
  .page9 .flex-wrap .text-wrap .txt2{
    font-size: 35px;
  }
  .page9 .flex-wrap .text-wrap ul li{
    font-size: 18px;
  }
  .page9 .flex-wrap .text-wrap .sales-wrap .txt3{
    font-size: 20px;
  }
  .page9 .flex-wrap .text-wrap .sales-wrap .txt4{
    font-size: 25px;
  }
  .page10 .wrapper .table-wrap table td{
    font-size: 20px;
  }
  .page10 .wrapper .table-wrap table .stamp1{
    bottom: -3%;
  }
  .page10 .wrapper .table-wrap table .stamp2{

  }

}
@media (max-width: 1350px) {
  .page5 .right,
  .page5 .left {
    width: 150px;
  }
  .page6 .flex-wrap .right-wrap {
    width: 580px;
  }
  .page11 .flex-wrap .text-wrap {
    padding: 80px 0px 80px 40px;
  }
  .page11 .flex-wrap .text-wrap .txt1 {
    font-size: 24px;
  }
  .page11 .flex-wrap .text-wrap .txt2 {
    font-size: 60px;
  }
  .page11 .flex-wrap .text-wrap .txt3{
    font-size: 20px;
  }
  .page12 .flex-wrap .item {
    width: 47%;
    padding: 65px 25px 40px;
  }
  .page12 .flex-wrap .item .tit-wrap p{
    font-size: 35px;
  }
  .page12 .flex-wrap .item .txt{
    font-size: 20px;
  }
}
@media (max-width: 1280px) {
  .page2 .flex-wrap .right-wrap {
    width: 50%;
  }
  .page2 .flex-wrap .left-wrap .page-logo{
    margin: 20px 0 40px;
  }
  .page2 .flex-wrap .left-wrap .top-wrap{
    max-width: 450px;
  }
  .page2 .flex-wrap .left-wrap .page-logo {
    max-width: 487px;
  }
  .page3 .slide-container .navi-wrap{
    position: relative;
    transform: none;
    justify-content: center;
    gap: 20px;
    margin: 30px auto 0;
  }
  .page6 .flex-wrap .right-wrap {
    width: 530px;
  }
  .page8 .mark-left,
  .page8 .mark-right{
    width: 160px;
  }
  .page9 .flex-wrap .text-wrap ul {
    margin: 20px 0 15px
  }
  .page9 .flex-wrap .text-wrap .txt1{
    font-size: 18px;
  }
  .page9 .flex-wrap .text-wrap .txt2{
    font-size: 30px;
  }
  .page9 .flex-wrap .text-wrap ul li{
    font-size: 16px;
  }
  .page9 .flex-wrap .text-wrap .sales-wrap .txt3{
    font-size: 20px;
    padding: 10px 0;
  }
  .page9 .flex-wrap .text-wrap .sales-wrap .txt4{
    font-size: 25px;
    padding: 10px 0;
  }
  .page9 .flag {
    max-width: 100px;
  }
}
@media(max-width: 1150px) {
  .page6 .flex-wrap .left-wrap .text72 {
    font-size: 55px;
  }
  .page6 .flex-wrap .left-wrap .txt2{
    font-size: 22px;
  }
  .page6 .flex-wrap .right-wrap {
    width: 480px;
  }
  .page6 .flex-wrap .right-wrap .item .txt-wrap {
    padding: 20px 30px;
  }
  .page10 .wrapper .table-wrap table{
    overflow: visible;
  }
  .page10 .wrapper .table-wrap table br{
    display: block;
  }
  .page10 .wrapper .table-wrap table .stamp1 {
    bottom: 2%;
    width: 105%;
    left: -2.5%;
  }
  .page10 .wrapper .table-wrap table .stamp2 {
    position: absolute;
    width: 105%;
    bottom: 0%;
    left: -2.5%;
  }
  .page10 .wrapper .table-wrap table .stamp-mo{
    display: block;
  }
  .page10 .wrapper .table-wrap table .stamp-pc{
    display: none;
  }
  .page11 .flex-wrap .text-wrap .txt1 {
    font-size: 20px;
  }
  .page11 .flex-wrap .text-wrap .txt2 {
    font-size: 50px;
  }
  .page11 .flex-wrap .text-wrap .txt3 {
    font-size: 18px;
  }
  .page11 .flex-wrap .img-wrap .cloud1, .page11 .flex-wrap .img-wrap .cloud2 {
    width: 90px;
  }
  .page12 .flex-wrap .item .tit-wrap .border {
    top: 6%;
  }
  .page12 .flex-wrap .item .tit-wrap p {
    font-size: 30px;
  }
  .page12 .flex-wrap .item .img-wrap{
    height: 280px;
  }
  .page12 .flex-wrap .item {
    padding: 65px 20px 40px;
  }
  .page12 .flex-wrap .item {
    width: 47%;
    padding: 65px 20px 40px;
  }
  .page12 .flex-wrap .item .txt {
    font-size: 18px;
  }
}
@media(max-width: 1100px) {
  .page9 .flex-wrap{
    flex-direction: column;
  }
  .page9 .flex-wrap .text-wrap,
  .page9 .flex-wrap .type-slide-container{
    width: 100%;
  }
  .page9 .flex-wrap .text-wrap{
    position: unset;
    border-left: 1px solid #111
  }
  .page9 .flex-wrap .text-wrap .talk {
    width: 25%;
    top: -6%;
    right: -4%;
  }
  .page9 .flex-wrap .type-slide-container{
    border-bottom: none;
  }
  .page9 .flex-wrap .text-wrap{
    border-top: none;
  }
  .page9 .flex-wrap .text-wrap .txt1{
    font-size: 25px;
  }
  .page9 .flex-wrap .text-wrap .txt2{
    font-size: 40px;
  }
  .page9 .flex-wrap .text-wrap ul li{
    font-size: 20px;
  }
  .page9 .flex-wrap .text-wrap .sales-wrap .txt3{
    font-size: 25px;
    padding: 20px 0;
  }
  .page9 .flex-wrap .text-wrap .sales-wrap .txt4{
    font-size: 30px;
    padding: 20px 0;
  }
  .page10 .wrapper .table-wrap table td{
    padding: 15px 0;
  }
  .page10 .wrapper .table-wrap table td {
    font-size: 18px;
  }
}
@media(max-width: 1024px) {
  .page1 .swap-txt-wrap .txt{
    font-size: 36px;
  }
  .page2 .flex-wrap{
    flex-direction: column;
    gap: 200px;
  }
  .page2 .flex-wrap .left-wrap,
  .page2 .flex-wrap .right-wrap{
    width: 100%;
  }
  .page2 .flex-wrap .right-wrap .youtube-wrap {
    width: 100%;
    justify-content: center;
  }
  .page2 .flex-wrap .right-wrap .talk.talk-pc{
    display: none;
  }
  .page2 .flex-wrap .right-wrap .talk.talk-mo{
    display: block;
  }
  .page2 .flex-wrap .right-wrap .talk{
    top: -230px;
    right: 5%;
    width: 480px;
  }
  .page2 .flex-wrap .right-wrap .back {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    top: -38%;
  }
  .page2 .flex-wrap .right-wrap .youtube-wrap{
    background: rgba(255, 255, 255, 0.80);
  }
  .page4{
    padding: 100px 0;
  }
  .page5 .right,
  .page5 .left {
    width: 100px;
  }
  .page5 .mask {
    margin: 60px 0 100px;
  }
  .page6 .flex-wrap .left-wrap .text72 {
    font-size: 45px;
  }
  .page6 .flex-wrap .left-wrap .txt2 {
    font-size: 20px;
  }
  .page6 .flex-wrap .right-wrap .item .txt-wrap .text28 {
    font-size: 20px;
  }
  .page6 .flex-wrap .right-wrap .item .txt-wrap .text20 {
    font-size: 16px;
  }
  .page6 .flex-wrap .right-wrap {
    width: 410px;
  }
  .rolling-text-wrap{
    font-size: 28px;
  }
  .page8 .mark-left, .page8 .mark-right {
    width: 130px;
  }
  .page9 .flag {
    max-width: 80px;
  }
  .page11 .flex-wrap{
    flex-direction: column;
  }
  .page11 .flex-wrap .text-wrap{
    width: 100%;
  }
  .page11 .flex-wrap .img-wrap{
    width: 100%;
    height: 60vh;
    justify-content: flex-end;
  }
  .page11 .flex-wrap .text-wrap .txt1 {
    font-size: 25px;
  }
  .page11 .flex-wrap .text-wrap .txt2 {
    font-size: 60px;
  }
  .page11 .flex-wrap .text-wrap .txt3 {
    font-size: 23px;
  }
  .page11 .flex-wrap .img-wrap .img {
    width: 70%;
    position: relative;
    right: -40px;
    left: unset;
  }
  .page11 .flex-wrap .img-wrap .cloud1 {
    bottom: 42%;
    top: unset;
  }
  .page11 .flex-wrap .img-wrap .cloud2 {
    left: 5%;
    top: -7%;
  }
  .page12 .flex-wrap{
    flex-direction: column;
    gap: 100px;
    align-items: center;
    justify-content: center;
  }
  .page12 .flex-wrap .item {
    width: 100%;
    padding: 65px 20px 40px;
    max-width: 500px;
  }
  .page12 .flex-wrap .item .tit-wrap .border {
    top: 0%;
  }
  .page12 .flex-wrap .item .txt {
    font-size: 20px;
  }
}
@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;
  }
  .page1 .swap-txt-wrap .txt{
    font-size: 32px;
  }
  .page2 .flex-wrap .right-wrap .talk {
    top: -190px;
    right: 5%;
    width: 400px;
  }
  .page4 .sales-container .flex-wrap img {
    width: calc((100% - 50px) / 2);
  }
  .page4 .sales-container .mark{
    width: 25%;
  }
  .page6 .flex-wrap{
    flex-direction: column;
    gap: 80px;
  }
  .page6 .flex-wrap .left-wrap{
    gap: 40px;
  }
  .page6 .flex-wrap .left-wrap .text72 {
    font-size: 55px;
  }
  .page6 .flex-wrap .left-wrap .txt2 {
    font-size: 25px;
  }
  .page6 .flex-wrap .right-wrap{
    width: 100%;
  }
  .page6 .flex-wrap .right-wrap .item .txt-wrap {
    padding: 40px 30px;
  }
  .page6 .flex-wrap .right-wrap .item .txt-wrap .text28 {
    font-size: 25px;
  }
  .page6 .flex-wrap .right-wrap .item .txt-wrap .text20 {
    font-size: 20px;
  }
  .page8 .mark-left, .page8 .mark-right {
    width: 100px;
  }
  .page10 .line-animation:nth-last-child(6){
    margin-bottom: 15px;
    display: inline-block;
  }
}

@media (max-width: 768px) {
  .layer-popup {
    position: fixed;
    top: 5%;
    left: 5%;
  }

  .page1 .swap-txt-wrap .txt{
    font-size: 30px;
  }
  .page2 .flex-wrap .left-wrap .top-wrap {
    max-width: 400px;
  }
  .page2 .flex-wrap .left-wrap .page-logo {
    max-width: 407px;
  }
  .page3{
    background: url("../img/page3-mo-bg.png");
  }
  .page3 .slide-container .store-slide-container {
    padding-bottom: 35px;
  }
  .page3 .slide-container .store-slide-container .swiper-slide .info-box{
    bottom: -30px;
  }
  .page3 .slide-container .store-slide-container .swiper-slide .info-box .txt1{
    font-size: 30px;
  }
  .page3 .slide-container .store-slide-container .swiper-slide .info-box .txt2{
    font-size: 18px;
  }
  .page3 .slide-container .store-slide-container .swiper-slide .info-box .mo-svg{
    display: block;
    position: absolute;
    top: -24px;
    left: 17px;
    opacity: 0.9;
  }
  .page3 .slide-container .navi-wrap{
    margin: 20px auto 0;
  }
  .page4{
    padding: 80px 0;
    gap: 140px;
  }
  .page4 .sales-container .tit-wrap{
    margin: 0 auto -45px;
  }
  .page4 .sales-container .flex-wrap{
    gap: 15px;
  }
  .page4 .sales-container .flex-wrap img {
    width: calc((100% - 30px) / 2);
  }
  .page5 .right {
    top: 12%;
  }
  .page5 .left {
    top: 20%;
  }
  .page5 .mask {
    margin: 60px 0 60px;
  }
  .page5 .middle.middle-pc{
    display: none;
  }
  .page5 .middle.middle-mo{
    display: block;
  }
  .page5 .store-wrap .talk1 {
    top: 15%;
    left: 5%;
    width: 30%;
  }
  .page5 .store-wrap .talk2 {
    top: 15%;
    right: 5%;
    width: 30%;
  }
  .page6 .flex-wrap .left-wrap .text72 {
    font-size: 50px;
  }
  .page6 .flex-wrap .left-wrap .txt2 {
    font-size: 22px;
  }
  .page6 .flex-wrap .right-wrap .item{
    flex-direction: column;
  }
  .page6 .flex-wrap .right-wrap .item img{
    width: 100%;
  }
  .page6 .flex-wrap .right-wrap .item .txt-wrap .text28 {
    font-size: 30px;
  }
  .page6 .flex-wrap .right-wrap .item .txt-wrap .text20 {
    font-size: 24px;
  }
  .page7 .chart-container .chart.chart-pc{
    display: none;
  }
  .page7 .chart-container .chart.chart-mo{
    display: block;
  }
  .page7 .chart-container .box-wrap {
    left: 2%;
    bottom: -8%;
    width: 37%;
  }
  .page7 .chart-container .talk {
    right: 0%;
    top: -12%;
    width: 15%;
  }
  .page9 .flex-wrap .text-wrap{
    padding: 20px;
  }
  .page9 .flex-wrap .text-wrap .txt1{
    font-size: 18px;
    margin-right: 10px;
  }
  .page9 .flex-wrap .text-wrap .txt2{
    font-size: 30px;
  }
  .page9 .flex-wrap .text-wrap ul li{
    font-size: 17px;
  }
  .page9 .flex-wrap .text-wrap .sales-wrap .txt3{
    font-size: 20px;
    padding: 20px 0;
  }
  .page9 .flex-wrap .text-wrap .sales-wrap .txt4{
    font-size: 25px;
    padding: 20px 0;
  }
  .page9 .flex-wrap .text-wrap .talk {
    width: 30%;
  }
  .page9 .flag {
    max-width: 60px;
  }
  .page10 .wrapper{
    padding: 60px 0;
  }
  .page10 .wrapper .table-wrap table td {
    font-size: 15px;
    word-break: keep-all;
    padding: 10px 0;
  }
  .page10 .wrapper .table-wrap table .small{
    font-size: 12px;
  }
  .page10 .wrapper .bottom{
    font-size: 20px;
  }
  .page11 .flex-wrap .text-wrap .txt1 {
    font-size: 20px;
  }
  .page11 .flex-wrap .text-wrap .txt2 {
    font-size: 50px;
  }
  .page11 .flex-wrap .text-wrap .txt3 {
    font-size: 20px;
  }
  .page11 .flex-wrap .img-wrap .img {
    width: 100%;
  }
  .page12 .flex-wrap .item .tit-wrap .border {
    top: 9%;
    width: 105%;
    left: -2.5%;
  }
}

@media (max-width: 650px) {
  .page1 .swap-txt-wrap .txt{
    font-size: 28px;
  }
  .page2 .flex-wrap {
    flex-direction: column;
    gap: 150px;
  }
  .page2 .flex-wrap .right-wrap .talk {
    top: -50%;
    right: 5%;
    width: 80%;
  }
  .page2 .flex-wrap .left-wrap .top-wrap {
    max-width: 350px;
  }
  .page2 .flex-wrap .left-wrap .page-logo {
    width: 85%;
  }
  .page3 .slide-container .store-slide-container .swiper-slide .info-box .txt1{
    font-size: 28px;
  }
  .page3 .slide-container .store-slide-container .swiper-slide .info-box .txt2{
    font-size: 16px;
  }
  .page3 .slide-container .store-slide-container .swiper-slide .info-box .dv{
    font-size: 15px;
  }
  .page4 .sales-container .mark {
    width: 30%;
  }
  .page5 .youtube-slide-container .navi-wrap {
    width: 95%;
  }
  .page6 .flex-wrap .right-wrap .item .txt-wrap .text28 {
    font-size: 25px;
  }
  .page6 .flex-wrap .right-wrap .item .txt-wrap .text20 {
    font-size: 20px;
  }
  .page7 .bottom{
    font-size: 13px;
  }
  .page7 .chart-container .box-wrap {
    height: 100%;
  }
  .page10 .wrapper .table-wrap table td {
    font-size: 12px;
    word-break: keep-all;
    padding: 10px 0;
  }
  .page10 .wrapper .table-wrap table .h {
    height: 70px;
  }
  .page10 .wrapper .table-wrap table .stamp1 {
    bottom: 26%;
    width: 110%;
    left: -5%;
  }
  .page10 .wrapper .table-wrap table .stamp2 {
    width: 105%;
    bottom: 15%;
    left: -5%;
  }
  .page11 .flex-wrap .text-wrap {
    padding: 60px 0px 60px 20px;
  }
  .page11 .flex-wrap .text-wrap .txt1 {
    font-size: 18px;
  }
  .page11 .flex-wrap .text-wrap .txt2 {
    font-size: 45px;
  }
  .page11 .flex-wrap .text-wrap .txt3 {
    font-size: 18px;
  }
  .page12 .flex-wrap .item .tit-wrap p {
    font-size: 28px;
  }
  .page12 .flex-wrap .item .tit-wrap p {
    font-size: 28px;
  }
  .page12 .flex-wrap .item .img-wrap {
    height: 240px;
  }
  .page12 .text72 {
    margin: 32px auto 100px;
    line-height: 120%;
  }
}

@media (max-width: 480px) {
  .page1 {
    gap: 10px
  }

  .page1 .swap-txt-wrap .txt {
    font-size: 24px;
  }
  .page2 .flex-wrap .left-wrap .top-wrap .item svg {
    width: 50px;
    margin-bottom: 12px;
  }
  .page2 .flex-wrap .left-wrap .top-wrap {
    width: 300px;
  }
  .page2 .flex-wrap .left-wrap .page-logo {
    margin: 20px 0 60px !important;
  }
  .page2 .flex-wrap {
    flex-direction: column;
    gap: 180px !important;
  }
  .page3 .slide-container .store-slide-container .swiper-slide .info-box .txt1 {
    font-size: 25px;
  }

  .page3 .slide-container .store-slide-container .swiper-slide .info-box .txt2 {
    font-size: 14px;
  }

  .page3 .slide-container .store-slide-container .swiper-slide .info-box .dv {
    font-size: 13px;
  }

  .page4 .sales-container .tit-wrap span {
    font-size: 24px;
  }

  .page4 .sales-container .mark {
    width: 35%;
  }
  .page5 .right, .page5 .left {
    width: 75px;
  }
  .page5 .right {
    top: 15%;
  }
  .page5 .left {
    top: 24%;
  }
  .page5 .text28{
    font-size: 18px;
  }
  .page5 .youtube-slide-container .navi-wrap .prev, .page5 .youtube-slide-container .navi-wrap .next{
    width: 45px;
    height: 45px;
  }
  .page6 .flex-wrap .right-wrap .item .txt-wrap {
    padding: 15px;
  }
  .page6 .flex-wrap .left-wrap .text72 {
    font-size: 40px;
  }
  .page6 .flex-wrap .left-wrap .txt2 {
    font-size: 17px;
  }
  .page6 .flex-wrap .right-wrap .item .txt-wrap .text20 {
    font-size: 18px;
  }
  .page6 .bottom{
    margin-top: 40px;
  }
  .page7 .chart-container .box-wrap .txt-img2{
    width: 90%;
  }
  .page8 .text72 {
    margin: 20px auto 22px;
    line-height: 110%;
  }
  .page8 .text32 {
    font-size: 18px;
  }
  .rolling-text-wrap {
    font-size: 20px;
    gap: 10px;
    margin: 40px 0;
  }
  .rolling-box {
    height: 40px;
    padding: 0 15px;
  }
  .rolling-inner .item {
    height: 40px;
    line-height: 40px;
  }
  .page9 .flex-wrap .text-wrap {
    padding: 15px;
  }
  .page9 .flex-wrap .text-wrap .txt1 {
    font-size: 13px;
    margin-right: 10px;
  }
  .page9 .flex-wrap .text-wrap .txt2 {
    font-size: 25px;
    top: 5px;
  }
  .page9 .flex-wrap .text-wrap ul li {
    font-size: 14px;
  }
  .page9 .flex-wrap .text-wrap .sales-wrap .txt3 {
    font-size: 18px;
    padding: 12px 0;
  }
  .page9 .flex-wrap .text-wrap .txt5{
    font-size: 14px;
  }
  .page9 .flex-wrap .text-wrap .sales-wrap .txt4{
    line-height: 140%;
  }
  .page9 .flex-wrap .type-slide-container .navi-wrap{
    width: 100px;
  }
  .page9 .flex-wrap .type-slide-container .navi-wrap .prev, .page9 .flex-wrap .type-slide-container .navi-wrap .next{
    width: 35px;
    height: 35px;
  }
  .page9 .flag {
    max-width: 50px;
  }
  .page10 .wrapper{
    padding: 20px 0;
  }
  .page10 .wrapper .table-wrap {
    margin: 60px auto 40px;
  }
  .page10 .wrapper .table-wrap table td {
    font-size: 10px;
  }
  .page10 .wrapper .table-wrap table .h {
    height: 50px;
  }
  .page10 .wrapper .table-wrap table .small {
    font-size: 8px;
  }
  .page10 .wrapper .text72{
    font-size: 30px;
  }
  .page10 .wrapper .bottom {
    font-size: 17px;
    padding: 12px 20px;
  }
  .page10 .wrapper .bottom svg{
    width: 15px;
    height: 15px;
  }
  .page11{
    padding: 80px 20px;
  }
  .page11 .tit-wrap{
    width: 80%;
    padding: 12px 0;
  }
  .page11 .flex-wrap .text-wrap .txt1 {
    font-size: 16px;
  }
  .page11 .flex-wrap .text-wrap .txt2 {
    font-size: 40px;
  }
  .page11 .flex-wrap .text-wrap .txt3 {
    font-size: 16px;
  }
  .page11 .flex-wrap .img-wrap {
    height: 40vh;
  }
  .page11 .flex-wrap .img-wrap .img{
    right: -20px;
  }
  .page11 .flex-wrap .img-wrap .cloud1, .page11 .flex-wrap .img-wrap .cloud2 {
    width: 60px;
  }
  .page11 .flex-wrap .img-wrap .cloud1 {
    bottom: 50%;
    top: unset;
  }
  .page12 .flex-wrap .item .tit-wrap {
    top: -52px;
  }
  .page12 .flex-wrap .item .tit-wrap .border {
    top: 11%;
  }
  .page12 .flex-wrap .item {
    width: 100%;
    padding: 35px 10px;
  }
  .page12 .flex-wrap .item .txt {
    font-size: 16px;
  }
  .page12 .flex-wrap .item .tit-wrap p {
    font-size: 22px;
  }
  .page12 .flex-wrap .item .img-wrap {
    height: 200px;
  }
}
@media (max-width: 400px) {
  .page2 .flex-wrap .left-wrap .top-wrap {
    width: 280px;
  }

  .page2 .flex-wrap .left-wrap .top-wrap .item .txt {
    font-size: 14px
  }

  .page2 .flex-wrap .left-wrap .top-wrap .item svg {
    width: 48px;
  }

  .page2 .flex-wrap .right-wrap .youtube-wrap {
    font-size: 18px !important;
  }
  .page12 .flex-wrap .item .tit-wrap .border {
    top: 16%;
  }
  .page12 .flex-wrap .item .txt {
    font-size: 14px;
  }
}
