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

.mobile {
  display: none;
}

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

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

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

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

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

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

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

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

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

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


/* main */
#main {
  width: 100%;
  min-height: 100vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 150px 0;
}

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

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

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

.main-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  z-index: 5;
}

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

.main-top>p {
  color: #FFF;
  font-family: "Gmarket Sans";
  font-size: 60px;
  line-height: 100%; /* 60px */
}

.main-top>div {
  width: fit-content;
  /* text-shadow: 0px 0px 30px #F7941C; */
  -webkit-text-stroke-width: 1.5px;
  -webkit-text-stroke-color: #F7941C;
  color: transparent;
  font-family: "Gmarket Sans";
  font-size: 80px;
  line-height: 100%; /* 80px */
  letter-spacing: 8px;
  padding-bottom: 10px;
  position: relative;
}

.main-top>div img {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}

.main-bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
}

.main-bottom-div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  animation: upDown 1.5s infinite;
  -webkit-animation: upDown 1.5s infinite;
}

.main-sale {
  display: flex;
  gap: 24px;
  justify-content: center;
}

.main-sale>p {
  background: linear-gradient(93deg, #BFB677 3.93%, #A48855 51.5%, #B28358 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  /* text-shadow: 0px 0px 10px #3B2213; */
  font-family: "Gmarket Sans";
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 33px */
  writing-mode: tb;
  margin-top: 2%; 
}

.main-sale>div {
  background: linear-gradient(93deg, #BFB677 3.93%, #A48855 51.5%, #B28358 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  /* text-shadow: 0px 0px 10px #3B2213; */
  font-family: "Gmarket Sans";
  font-size: 120px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 180px */
  letter-spacing: 6px;
  position: relative;
}

@keyframes upDown {
  0% { transform: translateY(0); }
  25% { transform: translateY(-5px); }
  50% { transform: translateY(5px); }
  75% { transform: translateY(-5px); }
  100% { transform: translateY(0); }
}

.light1 {
  position: absolute;
  top: -17%;
  left: -3.5%;
  animation: blink 1.5s infinite;
  -webkit-animation: blink 1.5s infinite;
}

.light2 {
  position: absolute;
  top: -15%;
  left: 65%;
  animation: blink 1.5s infinite;
  -webkit-animation: blink 1.5s infinite;
}

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

.main-bottom>p {
  color: #FFF;
  text-align: right;
  font-family: "GmarketSansMedium";
  font-size: 30px;
  font-weight: 500;
  line-height: 150%; /* 45px */
}


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

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

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

.st2-sale {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
}

.st2-sale>div {
  position: relative;
  background: linear-gradient(91deg, #B66B26 0.16%, #9D521B 99.72%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Gmarket Sans";
  font-size: 100px;
  line-height: 100%; /* 100px */
  letter-spacing: 2px;
}

.st2-light1 {
  position: absolute;
  left: -5%;
  top: -63%;
  animation: blink 1.5s infinite;
  -webkit-animation: blink 1.5s infinite;
}

.st2-light2 {
  position: absolute;
  left: 53%;
  bottom: -48%;
  animation: blink 1.5s infinite;
  -webkit-animation: blink 1.5s infinite;
}

.st2-sale>p {
  color: #3B2213;
  text-align: right;
  font-family: "GmarketSansMedium";
  font-size: 20px;
  line-height: 100%; /* 20px */
}

.st2-container {
  max-width: 1220px;
  width: 90%;
  display: flex;
  align-items: center;
  gap: 40px;
  justify-content: center;
}

.st2-container img {
  width: calc(33.3% - 27.6px);
}

.st2-container img.big {
  transform: scale(1.15);
}

.st2-bottom {
  border-radius: 100px;
  background: rgba(59, 34, 19, 0.60);
  color: #FFF;
  font-family: "MaruBuriRegular";
  text-align: center;
  font-size: 30px;
  line-height: 100%;
  letter-spacing: 1.5px;
  box-sizing: border-box;
  padding: 24px 84px;
}

.st2-bottom span:first-child {
  color: #FBC12A;
}

.st2-bottom span:last-child {
  color: #F29C14;
}


/* section3 */
#section3 {
  width: 100%;
  display: flex;
}

.st3-left {
  width: 45%;
  background: #3B2213;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 5%;
}

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

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

.st3-left-inner>div p {
  color: #BD9D8A;
  font-family: 'MaruBuri';
  font-size: 30px;
  line-height: 100%; /* 30px */
  letter-spacing: -0.6px;
}

.st3-left-inner>div div {
  color: #BD9D8A;
  font-family: 'MaruBuriRegular';
  font-size: 24px;
  line-height: 150%; /* 36px */
  letter-spacing: -0.48px;
  word-break: keep-all;
}

.st3-logo {
  position: absolute;
  right: 3%;
  bottom: 4%;
  width: 50%;
}

.st3-right {
  width: 55%;
}

.st3-img {
  width: 100%;
  object-fit: cover;
}


/* section4 */
#section4 {
  width: 100%;
  background: #FFF;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  padding: 120px 0;
}

.st4-inner {
  max-width: 1400px;
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 60px;
}

.st4-inner .st-mi-tit span {
  font-family: 'Gmarket Sans';
}

.st4-container {
  width: 100%;
  display: flex;
}

.st4-box {
  width: 25%;
  position: relative;
  overflow: hidden;
  border-right: 1px solid #FFF;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 0 40px 40px;
  aspect-ratio: 7 / 10;
  gap: 30px;
}

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

.st4-box p:first-child {
  color: #FFF;
  font-family: 'MaruBuri';
  font-size: 26px;
  line-height: 100%; /* 26px */
  z-index: 5;
}

.st4-box p:nth-child(2) {
  color: #FFF;
  font-family: 'MaruBuriRegular';
  font-size: 20px;
  line-height: 150%; /* 30px */
  position: relative;
  z-index: 5;
  min-height: 60px;
  word-break: keep-all;
}

.st4-box img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
}

.st4-box::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(59, 34, 19, 0.00) 0%, #3B2213 65.38%, #3B2213 100%);
}

.st4-box:hover img {
  transform: scale(1.1);
}


/* section5 */
#section5 {
  width: 100%;
  background: #F7941C;
  box-sizing: border-box;
  padding: 120px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

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

.st5-top .st-sub-tit {
  font-family: "GmarketSansMedium";
}

.menu-container {
  max-width: 1400px;
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.menu-tab {
  max-width: 350px;
  width: 45%;
  box-sizing: border-box;
  padding: 30px 0;
  border-radius: 20px 20px 0px 0px;
  background: #3B2213;
  color: #F7941C;
  text-align: center;
  font-family: "Gmarket Sans";
  font-size: 30px;
  line-height: 100%; /* 30px */
  letter-spacing: -0.6px;
  cursor: pointer;
}

.menu-tab.show {
  background: #FFF;
}

.menu-wrap {
  width: 100%;
  box-sizing: border-box;
  padding: 72px 0 72px;
  border-radius: 20px;
  display: none;
  justify-content: center;
  align-items: center;
  background: #FFF;
  position: relative;
  margin-top: -2px;
}

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

.menu-swiper-container {
  width: 85%;
  position: relative;
  overflow: hidden;
}

.menu-swiper-container .swiper-slide {
  width: 250px !important;
}

.menu-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

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

.menu-item p {
  color: #3B2213;
  text-align: center;
  font-family: 'MaruBuriSemiBold';
  font-size: 20px;
  font-weight: 600;
  line-height: 130%; /* 31.2px */
  letter-spacing: -0.42px;
}

.nav-wrap {
  position: absolute;
  left: 50%;
  top: 40%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 98%;
}

.nav-btn {
  z-index: 5;
  cursor: pointer;
}

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

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

#section6 .st-tit span {
  font-family: "GmarketSansMedium";
}

.rate-box {
  box-sizing: border-box;
  padding: 30px 32px;
  background: #FFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.rate-box p {
  color: #3B2213;
  font-family: "GmarketSansMedium";
  font-size: 30px;
  line-height: 100%; /* 30px */
}

.rate-box p span {
  color: #D0171E;
  font-family: "Gmarket Sans";
}

.rate-box img {
  width: 260px;
  animation: clipReveal 2.5s ease-out infinite;
  -webkit-animation: clipReveal 2.5s ease-out infinite;
}

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

.review-swiper-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-top: 60px;
  margin-bottom: -12%;
}

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

.review-swiper-container .swiper-slide {
  width: 360px !important;
  transform: scale(0.85);
  overflow: hidden;
}

.review-swiper-container .swiper-slide img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 4px 4px 20px 0px rgba(0, 0, 0, 0.25);
}

.review-swiper-container .swiper-slide-active {
  transform: scale(1);
  border-radius: 40px;
}

.phone {
  width: 400px;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: 5;
}


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

.st7-img-div {
  width: 900px;
  position: absolute;
  left: -15%;
  top: 50%;
  transform: translateY(-50%);
}

.st7-img {
  width: 100%;
}

.st7-container {
  max-width: 1400px;
  width: 90%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
}

.st7-wrap {
  max-width: 734px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 60px;
  z-index: 5;
}

.st7-wrap .st-tit {
  text-align: left;
  line-height: 140%;
}

.benefit-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.benefit-box {
  width: 100%;
  border: 1px solid #FFF;
  box-sizing: border-box;
  padding: 10px;
}

.benefit-box-inner {
  width: 100%;
  border: 1px solid #FFF;
  background: rgba(0, 0, 0, 0.30);
  backdrop-filter: blur(6px);
  box-sizing: border-box;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.benefit-box-inner p {
  color: #FFF;
  font-family: 'MaruBuri';
  font-size: 26px;
  line-height: 100%; /* 26px */
}

.benefit-box-inner div {
  color: #FFF;
  font-family: 'MaruBuriRegular';
  font-size: 20px;
  line-height: 150%; /* 30px */
}

.benefit-box-inner div span {
  display: none;
}

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

#section8 .st-tit {
  position: relative;
  padding-bottom: 10px;
}

#section8 .st-tit img {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
}

.map-container {
  position: relative;
  max-width: 1400px;
  width: 90%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 5px solid #3B2213;
  background: #FFF;
}

#map {
  width: 100%;
  height: 615px;
}

.store-list-container {
  width: 370px;
  border: 1px solid #3B2213;
  background: #FFF;
  overflow: hidden;
  height: 535px;
  position: absolute;
  top: 40px;
  left: 50px;
  border-radius: 20px;
  z-index: 5;
  box-sizing: border-box;
  padding: 20px;
}

.search-head {
  display: flex;
  box-sizing: border-box;
  height: 50px;
  padding: 0 10px 0 20px;
  justify-content: space-between;
  align-items: center;
  color: #222;
  text-align: center;
  font-size: 16px;
  line-height: 24px; /* 150% */
  letter-spacing: -0.4px;
  gap: 10px;
}

#section8 input[type="text"] {
  border: none !important;
  padding: 0 !important;
  height: 24px;
  font-family: "MaruBuriRegular";
  font-size: 16px;
  line-height: 100%; /* 16px */
}

#section8 input[type="text"]::placeholder {
  color: rgba(59, 34, 19, 0.60);
  font-family: "MaruBuriRegular";
  font-size: 16px;
  line-height: 100%; /* 16px */
}

.select-box {
  display: flex;
  box-sizing: border-box;
  padding: 10px 20px;
  align-items: center;
  border-top: 1px solid #CDCDCD;
  position: relative;
  background: #FFF;
}

.select {
  width: 100%;
  display: flex;
  gap: 8px;
  align-items: center;
  color: #505050;
  text-align: center;
  font-family: "MaruBuriRegular";
  font-size: 14px;
  line-height: 24px; /* 171.429% */
  letter-spacing: -0.35px;
}

.option-list {
  position: absolute;
  background: #fff;
  top: 44px;
  box-sizing: border-box;
  padding: 5px 20px;
  display: none;
  z-index: 100;
  border-radius: 12px;
  border: 1px solid #CDCDCD;
}

.option {
  color: #505050;
  text-align: center;
  font-family: "MaruBuriRegular";
  font-size: 14px;
  line-height: 24px; /* 171.429% */
  letter-spacing: -0.35px;
}

.list-wrap {
  overflow-y: scroll;
  height: calc(100% - 93px);
  display: flex;
  flex-direction: column;
  border-top: 1px solid #EEE;
  overflow-y: scroll;
  background: #FFF;
  padding-top: 20px;
}

.rotate-180 {
  transform: rotate(180deg);
}

.store-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  padding: 16px;
  flex-direction: column;
  border-top: 1px solid #CDCDCD;
  cursor: pointer;
  gap: 12px;
}

.store-item:first-of-type {
  border-top: none;
}

.store-item:hover {
  background: rgba(208, 23, 30, 0.10);
}

.s-name {
  color: #3B2213;
  font-family: "MaruBuri";
  font-size: 18px;
  line-height: 100%; /* 18px */
}

.s-address {
  color: #3B2213;
  font-family: "MaruBuriRegular";
  font-size: 16px;
  line-height: 100%; /* 16px */
  word-break: keep-all;
}

.s-number {
  color: #D0171E;
  font-family: "MaruBuri";
  font-size: 20px;
  line-height: 100%; /* 20px */
}

.total {
  color: #D8222B;
}

.no-store {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  line-height: 24px; /* 150% */
  letter-spacing: -0.4px;
}


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

.contact-img {
  width: 35%;
  position: absolute;
  top: 0;
  left: 0;
}

.contact-img2 {
  width: 40%;
  position: absolute;
  right: 0;
  bottom: 0;
}

.contact-form {
  max-width: 870px;
  width: 90%;
  border: 1px solid #FFF;
  box-sizing: border-box;
  padding: 40px 50px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 5;
}

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

.item .label {
  width: 140px;
}

.item label {
  width: 140px;
  box-sizing: border-box; 
  color: #FFF;
  font-family: 'MaruBuriRegular';
  font-size: 20px !important;
  line-height: 100% !important; /* 24px */
}

.input, .s-btn-wrap {
  width: calc(100% - 170px);
}

.contact-form input[type="text"], input[type="tel"], textarea {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  padding: 10px 0px 10px 16px;
  color: #111;
  font-family: 'MaruBuriRegular' !important;
  font-size: 18px !important;
  font-weight: 400;
  line-height: 130%; /* 21px */
  border: 1px solid #FFF;
  background: #FFF;
}

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

.contact-form input[type="text"]::placeholder, .contact-form input[type="tel"]::placeholder, textarea::placeholder {
  font-family: 'MaruBuriRegular';
  color: #BBB;
  font-size: 18px;
  font-weight: 400;
  line-height: 130%; 
}

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

.align-start {
  align-items: flex-start;
}

.align-start .label {
  padding-top: 20px;
}

.form-tab {
  width: 50%;
  background: #FFF;
  padding: 20px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
  text-align: center;
  font-family: 'MaruBuriRegular';
  font-size: 18px;
  line-height: 100%; /* 20px */
  cursor: pointer;
}

.s-btn-wrap {
  display: flex;
}

.this {
  background: #F7941C;
  color: #FFF;
}

.form-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 23px;
  justify-content: center;
  align-items: center;
  margin-top: 23px;
}

.agree-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}

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

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

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

.agree {
  color: #FFF;
  font-family: 'MaruBuriRegular';
  font-size: 18px !important;
  line-height: 100% !important; 
  cursor: pointer;
}

.c-btn {
  display: flex;
  box-sizing: border-box;
  width: 100%;
  padding: 17px 0;
  justify-content: center;
  align-items: center;
  color: #FFF;
  text-align: center;
  font-family: 'MaruBuri';
  font-size: 20px;
  line-height: 100%; /* 24px */
  border: none;
  border-radius: 4px;
  background: #D0171E;
}

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

@media(min-width: 1700px) {
  .st3-left {
    padding-top: 8%;
  }
  .menu-item p {
    font-size: 24px;
    letter-spacing: -0.48px;
  }
  .review-swiper-container {
    margin-bottom: -8%;
  }
  .st7-img-div {
    width: 1050px;
    left: -35%;
  }
  .item label {
    font-size: 24px !important;
  }
  .contact-form input[type="text"], input[type="tel"], textarea {
    font-size: 20px !important;
  }
  .contact-form input[type="text"]::placeholder, .contact-form input[type="tel"]::placeholder, textarea::placeholder {
    font-size: 20px;
  }
  .c-btn {
    font-size: 24px;
  }
  .form-tab {
    font-size: 20px;
  }
}

@media (max-width: 1400px) {
  .main-top>p {
    font-size: 48px;
    letter-spacing: -1.2px;
  }
  .main-top>div {
    font-size: 72px;
    letter-spacing: 8px;
  }
  .main-sale>p {
    font-size: 28px;
    letter-spacing: -0.7px;
  }
  .main-sale>div {
    font-size: 104px;
    letter-spacing: -2.5px;
  }
  .main-bottom-div>img {
    width: 70px;
  }
  .light1 {
    top: -23%;
    left: -5%;
  }
  .light2 {
    top: -23%;
    left: 63%;
  }
  .main-bottom>p {
    font-size: 28px;
    letter-spacing: -0.7px;
  }
  #section3 {
    flex-direction: column;
  }
  .st3-left, .st3-right {
    width: 100%;
  }
  .st3-left {
    padding: 80px 0 120px;
  }
  .st3-left-inner {
    align-items: center;
    gap: 30px;
  }
  .st3-left-inner .st-mi-tit {
    text-align: center;
  }
  .st3-left-inner>div {
    align-items: center;
    gap: 16px;
  }
  .st3-left-inner>div p, .st3-left-inner>div div {
    text-align: center;
  }
  .st3-logo {
    left: 50%;
    right: unset;
    transform: translate(-50%);
  }
  .st3-right {
    aspect-ratio: 1 / 0.5;
  }
  .st4-container {
    flex-wrap: wrap;
  }
  .st4-box {
    padding: 0 0 30px 30px;
  }
  #section6 {
    padding-top: 100px;
  }
  .rate-box p {
    font-size: 28px;
    letter-spacing: -0.7px;
  }
  .rate-box img {
    width: 240px
  }
  .review-swiper-container {
    margin-top: 40px;
  }
}

@media(max-width: 1500px) {
  .menu-swiper-container .swiper-slide {
    width: 240px !important;
  }
}

@media (max-width: 1280px) {
  #main {
    padding: 100px 0;
  }
  .main-top {
    gap: 30px;
  }
  .main-sale>p {
    margin-top: 1%;
  } 
  .main-sale>div, .st2-sale>div {
    font-size: 96px;
    letter-spacing: -2.4px;
  }
  .main-bottom-div {
    gap: 20px;
  }
  .main-bottom-div>img {
    width: 60px;
  }
  .main-sale {
    gap: 15px;
  }
  .light1 {
    top: -26%;
    left: -6%;
  }
  .light2 {
    top: -26%;
    left: 62%;
  }
  .main-bottom {
    gap: 10px;
  }
  .main-bottom>p {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .st2-light1 {
    left: -6%;
    top: -65%;
  }
  .st2-light2 {
    left: 52.5%;
    bottom: -46%;
  }
  .st3-left-inner>div p {
    font-size: 28px;
    letter-spacing: -0.7px;
  }
  .st3-left-inner>div div {
    font-size: 20px;
    letter-spacing: -0.5px;
  }
  #section4 {
    padding: 100px 0;
  }
  .st4-box {
    padding: 0 0 20px 20px;
    aspect-ratio: 3 / 5;
  }
  .st4-box p:first-child {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .st4-box p:nth-child(2) {
    font-size: 18px;
    letter-spacing: -0.45px;
    min-height: 50px;
  }
  #section5 {
    padding: 100px 0;
  }
  .menu-tab {
    font-size: 28px;
    letter-spacing: -0.55px;
    padding: 25px 0;
  }
  .menu-wrap {
    padding: 60px 0;
  }
  .menu-swiper-container .swiper-slide {
    width: 230px !important;
  }
  .menu-item {
    gap: 20px;
  }
  #section7 {
    padding: 100px 0;
  }
  .st7-img-div {
    width: 800px;
  }
  .benefit-box-inner p {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .benefit-box-inner div {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
  #section8 {
    padding: 100px 0;
  }
  .store-list-container {
    width: 320px;
    left: 30px;
  }
  #contact {
    padding: 100px 0;
  }
}

@media(max-width: 1024px){
  #main {
    padding: 0;
  }
  .st4-inner {
    align-items: center;
  }
  #section4 .st-mi-tit {
    text-align: center;
  }
  .st4-container {
    flex-wrap: wrap;
  }
  .st4-box {
    width: 50%;
    aspect-ratio: 3 / 3;
  }
  .st4-box:nth-child(2) {
    border-right: none;
  }
  .menu-swiper-container .swiper-slide {
    width: 220px !important;
  }
  .menu-item p {
    font-size: 18px;
    letter-spacing: -0.35px;
  }
  .review-swiper-container .swiper-slide {
    width: 300px !important;
  }
  .review-swiper-container {
    margin-bottom: -18%;
  }
  .phone {
    width: 330px;
  }
  .st7-img-div {
    width: 700px;
  }
  .st7-wrap {
    align-items: flex-end;
    gap: 40px;
  }
  .st7-wrap .st-tit {
    text-align: right;
  }
  .benefit-box-inner {
    align-items: flex-end;
  }
  .benefit-box-inner p, .benefit-box-inner div {
    text-align: right;
  }
}

@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-top>p {
    font-size: 40px;
    letter-spacing: -1px;
  }
  .main-top>div {
    font-size: 64px;
    letter-spacing: 7px;
  }
  .main-sale {
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }
  .main-sale>p {
    margin-top: 0;
    writing-mode: initial;
  } 
  .main-sale>div, .st2-sale>div {
    font-size: 72px;
    letter-spacing: -1.8px;
  }
  .main-bottom-div {
    gap: 15px;
    align-items: flex-end;
  }
  .main-bottom-div>img {
    width: 55px;
  }
  .light1 {
    top: -42%;
    left: -9%;
  }
  .light2 {
    top: -42%;
    left: 59%;
  }
  .main-bottom {
    gap: 5px;
  }
  .main-bottom>p {
    font-size: 20px;
    letter-spacing: -0.5px;
  }
  .st2-light1 {
    left: -9.5%;
    top: -89%;
  }
  .st2-light2 {
    left: 49.5%;
    bottom: -64%;
  }
  .st2-sale>p {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
  .st2-container {
    gap: 30px;
  }
  .st2-container img {
    width: calc(33.3% - 20px);
  }
  .st2-bottom  {
    font-size: 28px;
    letter-spacing: 1.3px;
    padding: 21px 62px;
  }
  .st3-left-inner>div p {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .st3-left-inner>div div {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
  #section4 {
    padding: 80px 0;
  }
  .st4-box {
    width: 50%;
    aspect-ratio: 3 / 4;
    gap: 20px;
  }
  #section5 {
    padding: 80px 0;
  }
  .menu-tab {
    font-size: 24px;
    letter-spacing: -0.5px;
    width: 40%;
  }
  .menu-container {
    width: 100%;
  }
  .menu-wrap {
    border-radius: 0;
    padding: 40px 0;
  }
  .nav-wrap {
    display: none;
  }
  .menu-swiper-container {
    width: 100%;
  }
  #section6 {
    padding-top: 80px;
  }
  .rate-box p {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .rate-box img {
    width: 220px;
  }
  .review-swiper-container .swiper-slide {
    width: 270px !important;
  }
  .review-swiper-container {
    margin-bottom: -19%;
  }
  .phone {
    width: 300px;
  }
  #section7 {
    padding: 80px 0;
  }
  .st7-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }
  .st7-img-div {
    width: 75%;
    position: static;
    transform: none;
  }
  .st7-wrap {
    gap: 30px;
  }
  #section8 {
    padding: 80px 0;
  }
  .store-list-container {
    width: 300px;
    padding: 16px;
    height: 350px;
    top: 20px;
    left: 20px;
  }
  .s-name, .s-number {
    font-size: 16px;
    letter-spacing: -0.32px;
  }
  .s-address {
    font-size: 14px;
    letter-spacing: -0.28px;
  }
  #map {
    height: 700px;
  }
  #contact {
    padding: 80px 0;
  }
  .contact-img {
    width: 50%;
  }
  .contact-img2 {
    width: 65%;
  }
  .contact-form {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .layer-popup {
    position: fixed;
    top: 5%;
    left: 5%;
  }
  .main-container {
    gap: 40px;
  }
  .main-top {
    gap: 20px;
  }
  .main-top>p {
    font-size: 32px;
    letter-spacing: -0.8px;
  }
  .main-top>div {
    font-size: 56px;
    letter-spacing: 6px;
  }
  .main-sale>p {
    font-size: 24px;
    letter-spacing: -0.6px;
  } 
  .main-sale>div, .st2-sale>div {
    font-size: 64px;
    letter-spacing: -1.6px;
  }
  .main-bottom-div {
    gap: 10px;
  }
  .main-bottom-div>img {
    width: 50px;
  }
  .light1 {
    top: -50%;
    left: -11%;
  }
  .light2 {
    top: -50%;
    left: 57%;
  }
  .main-bottom {
    align-items: center;
  }
  .main-bottom>p {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
  #section2 {
    padding: 60px 20px;
  }
  .st2-top {
    gap: 30px;
  }
  .st2-light1 {
    left: -11%;
    top: -100%;
  }
  .st2-light2 {
    left: 47.5%;
    bottom: -73%;
  }
  .st2-sale {
    align-items: center;
  }
  .st2-sale>p {
    font-size: 16px;
    letter-spacing: -0.4px;
  }
  .st2-container {
    flex-wrap: wrap;
    gap: 40px;
    row-gap: 0;
  }
  .st2-container img {
    width: calc(50% - 20px);
  }
  .st2-container img.big {
    transform: scale(1.12);
  }
  #section4 {
    padding: 60px 20px;
  }
  .st4-inner {
    gap: 40px;
    width: 100%;
  }
  #section5 {
    padding: 60px 0;
    gap: 40px;
  }
  #section6 {
    padding-top: 60px;
    gap: 20px;
  }
  #section7 {
    padding: 60px 20px;
  }
  .st7-container {
    width: 100%;
  }
  #section8 {
    padding: 60px 20px;
    gap: 50px;
  }
  .map-container {
    width: 100%
  }
  #contact {
    padding: 60px 20px;
    gap: 50px;
  }
  .contact-form {
    width: 100%;
  }
}

@media (max-width: 650px) {
  .main-top>p {
    font-size: 28px;
    letter-spacing: -0.7px;
  }
  .main-top>div {
    font-size: 50px;
    letter-spacing: 5px;
  }
  .main-sale>p {
    font-size: 20px;
    letter-spacing: -0.5px;
  } 
  .main-sale>div, .st2-sale>div {
    font-size: 56px;
    letter-spacing: -1.4px;
  }
  .main-bottom-div {
    gap: 5px;
  }
  .main-bottom-div>img {
    width: 45px;
  }
  .light1, .light2, .st2-light1, .st2-light2 {
    width: 80px;
  }
  .light1 {
    top: -29%;
    left: -6%;
  }
  .light2 {
    top: -29%;
    left: 62%;
  }
  .main-bottom>p {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
  #section2 {
    gap: 50px;
  }
  .st2-top {
    gap: 20px;
  }
  .st2-top-tit {
    gap: 16px;
  }
  .st2-top-tit .st-sub-tit {
    font-size: 20px;
    letter-spacing: -0.5px;
  }
  .st2-light1 {
    left: -6%;
    top: -67%;
  }
  .st2-light2 {
    left: 52%;
    bottom: -48%;
  }
  .st2-sale {
    gap: 14px;
  }
  .st2-sale>p {
    font-size: 14px;
    letter-spacing: -0.35px;
  }
  .st2-container {
    gap: 30px;
    row-gap: 0;
  }
  .st2-container img {
    width: calc(50% - 15px);
  }
  .st2-bottom {
    margin-top: -30px;
    font-size: 24px;
    letter-spacing: 1.2px;
  }
  .st3-left {
    padding: 80px 20px 120px;
  }
  .st3-left-inner>div p {
    font-size: 20px;
    letter-spacing: -0.5px;
  }
  .st3-left-inner>div div {
    font-size: 16px;
    letter-spacing: -0.4px;
  }
  .st3-logo {
    width: 60%;
    bottom: 8%;
  }
  .st4-box {
    padding: 0 16px 16px 16px;
    gap: 16px;
  }
  .st4-box p:first-child {
    font-size: 20px;
    letter-spacing: -0.5px;
  }
  .st4-box p:nth-child(2) {
    font-size: 16px;
    letter-spacing: -0.4px;
    min-height: 45px;
  }
  .rate-box {
    gap: 10px;
    padding: 20px 25px;
  }
  .rate-box p {
    font-size: 20px;
    letter-spacing: -0.5px;
  }
  .rate-box img {
    width: 160px;
  }
  .st5-top {
    gap: 16px;
  }
  .menu-tab {
    font-size: 20px;
    letter-spacing: -0.4px;
    padding: 17px 0;
    border-radius: 10px 10px 0 0;
  }
  .menu-swiper-container .swiper-slide {
    width: 210px !important;
  }
  .menu-item {
    gap: 16px;
  }
  .menu-item p {
    font-size: 16px;
    letter-spacing: -0.32px;
  }
  .review-swiper-container .swiper-slide {
    width: 250px !important;
  }
  .review-swiper-container {
    margin-bottom: -21%;
  }
  .phone {
    width: 280px;
  }
  .benefit-box-inner {
    gap: 16px;
    padding: 20px;
  }
  .benefit-box-inner p {
    font-size: 20px;
    letter-spacing: -0.5px;
  }
  .benefit-box-inner div {
    font-size: 16px;
    letter-spacing: -0.4px;
  }
  .map-container {
    border-width: 3px;
  }
  .store-list-container {
    width: 90%;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
  }
  #map {
    height: 800px;
  }
  .contact-img {
    width: 80%;
    left: -12%;
  }
  .contact-img2 {
    width: 110%;
    right: -20%;
  }
  .contact-form {
    padding: 20px;
    gap: 12px;
  }
  .item .label {
    display: none;
  }
  .input, .s-btn-wrap {
    width: 100%;
  }
  .form-wrap {
    margin-top: 12px;
    gap: 32px;
  }
  .form-tab, .agree {
    font-size: 16px !important;
  }
}

@media(max-width: 550px) {
  .main-sale>div, .st2-sale>div {
    font-size: 48px;
    letter-spacing: -1.2px;
  }
  .main-bottom-div>img {
    width: 40px;
  }
  .light1 {
    top: -36%;
    left: -8%;
  }
  .light2 {
    top: -36%;
    left: 60%;
  }
  .st2-light1 {
    left: -8%;
    top: -78%;
  }
  .st2-light2 {
    left: 51%;
    bottom: -54%;
  }
}

@media (max-width: 480px) {
  .main-top>p {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .main-sale>div, .st2-sale>div {
    font-size: 40px;
    letter-spacing: -1px;
  }
  .main-bottom-div>img {
    width: 32px;
  }
  .light1 {
    top: -46%;
    left: -11%;
  }
  .light2 {
    top: -46%;
    left: 57%;
  }
  .main-bottom>p {
    font-size: 16px;
    letter-spacing: -0.4px;
  }
  .st2-top-tit .st-sub-tit {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
  .st2-top-tit .st-tit {
    font-size: 28px;
    letter-spacing: -0.7px;
  }
  .st2-light1 {
    left: -10.5%;
    top: -95%;
  }
  .st2-light2 {
    left: 49%;
    bottom: -71%;
  }
  .st2-container {
    width: 100%;
    row-gap: 20px;
  }
  .st2-container img {
    width: 100%;
  }
  .st2-container img.big {
    transform: none;
  }
  .st2-bottom {
    width: 100%;
  }
  .st4-box {
    aspect-ratio: 1 / 1.4;
  }
  .st4-box p:first-child {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
  .st4-box p:nth-child(2) {
    font-size: 14px;
    letter-spacing: -0.35px;
    min-height: 40px;
  }
  .menu-swiper-container .swiper-slide {
    width: 200px !important;
  }
  .review-swiper-container .swiper-slide {
    width: 230px !important;
  }
  .review-swiper-container {
    margin-bottom: -25%;
  }
  .phone {
    width: 260px;
  }
  .st7-wrap .st-tit {
    font-size: 30px;
    line-height: 130%; /* 39px */
    letter-spacing: -0.75px;
  }
  .benefit-box-inner p {
    font-size: 18px;
    letter-spacing: -0.45px;
  }
  .benefit-box-inner div {
    font-size: 14px;
    letter-spacing: -0.35px;
  }
  .benefit-box-inner div span {
    display: inline-block;
  }
  #map {
    height: 750px;
  }
}

@media(max-width: 400px) {
  .st2-top-tit .st-sub-tit {
    font-size: 16px;
    letter-spacing: -0.4px;
  }
  .st2-top-tit .st-tit {
    font-size: 24px;
    letter-spacing: -0.6px;
  }
  .st4-box p:first-child {
    font-size: 16px;
    letter-spacing: -0.4px;
  }
  .review-swiper-container .swiper-slide {
    width: 210px !important;
  }
  .review-swiper-container {
    margin-bottom: -29%;
  }
  .phone {
    width: 240px;
  }
  .benefit-box-inner p {
    font-size: 16px;
    letter-spacing: -0.32px;
  }
  #map {
    height: 700px;
  }
}

@media(max-width: 370px) {
  .main-sale>div {
    font-size: 36px;
    letter-spacing: -0.95px;
  }
  .main-bottom-div>img {
    width: 28px;
  }
  .light1 {
    top: -52%;
    left: -12%;
  }
  .light2 {
    top: -52%;
    left: 56%;
  }
  .main-bottom>p {
    font-size: 14px;
    letter-spacing: -0.35px;
  }
}
