/* common */
html,
body {
  background: #f7f3e8;
}

/* animation-box */
.scroll_on {
  opacity: 0;
  transition: all ease-in-out 0.5s;
  display: block;
}

.scroll_on.type_top {
  transform: translate(0, -80px);
}

.scroll_on.type_bottom {
  transform: translate(0, 80px);
}

.scroll_on.type_left {
  transform: translate(-80px, 0);
}

.scroll_on.type_right {
  transform: translate(80px, 0);
}

.scroll_on.on {
  opacity: 1;
  transform: translate(0, 0);
}

.delay01 {
  transition-delay: 0.1s !important;
}
.delay02 {
  transition-delay: 0.2s !important;
}
.delay03 {
  transition-delay: 0.3s !important;
}
.delay04 {
  transition-delay: 0.4s !important;
}
.delay05 {
  transition-delay: 0.5s !important;
}
.delay06 {
  transition-delay: 0.6s !important;
}
.delay07 {
  transition-delay: 0.7s !important;
}
.delay08 {
  transition-delay: 0.8s !important;
}
.delay09 {
  transition-delay: 0.9s !important;
}
.delay10 {
  transition-delay: 1s !important;
}
.delay15 {
  transition-delay: 1.5s !important;
}
.delay20 {
  transition-delay: 2s !important;
}
.delay25 {
  transition-delay: 2.5s !important;
}
.delay30 {
  transition-delay: 3s !important;
}
.delay35 {
  transition-delay: 3.5s !important;
}
.delay40 {
  transition-delay: 4s !important;
}

/* header */
header {
  position: fixed;
  padding: 10px 20px;
  left: 50%;
  top: 0;
  width: 100%;
  max-width: 800px;
  transform: translateX(-50%);
  z-index: 1000;
  background: #f7f3e8;

  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

header h1 a img {
  width: 108px;
}

header .inner {
  gap: 0 8px;

  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

header .inner .kakao {
  width: 32px;
  height: 32px;
  font-size: 0;

  background: url("../images/icon_kakao.png") no-repeat center / cover;
}

header .inner .tel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;

  border-radius: 50px;
  height: 32px;
  border: 1px solid #000;

  padding: 0 12px;

  font-size: 12px;
  font-weight: 700;
}

/* footer */
footer {
  padding: 40px 20px;
  max-width: 800px;
  margin: 0 auto;
}

footer .footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

footer .footer-top h2 img {
  width: 108px;
}

footer .footer-top .inner {
  gap: 0 8px;

  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

footer .footer-top .inner .kakao {
  width: 32px;
  height: 32px;
  font-size: 0;

  background: url("../images/icon_kakao.png") no-repeat center / cover;
}

footer .footer-top .inner .tel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;

  border-radius: 50px;
  height: 32px;
  border: 1px solid #000;

  padding: 0 12px;

  font-size: 12px;
  font-weight: 700;
}

footer .footer-bottom {
  margin: 24px 0 0;
}

footer .footer-bottom p {
  font-weight: 500;
  line-height: 1.5;
}

/* section */
section {
  margin: 52px auto 0;
  max-width: 800px;
}

/* =========================
   main-top 개선 버전
========================= */

.main-box .main-top {
  position: relative;
  overflow: hidden;
  background: #000;
}

/* 배경 이미지 */
.main-box .main-top img {
  width: 100%;
  display: block;
}

/* 텍스트 가독성 오버레이 */
.main-box .main-top::before {
  content: "";

  position: absolute;
  inset: 0;

  z-index: 1;

  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.78) 0%,
    rgba(0, 0, 0, 0.6) 28%,
    rgba(0, 0, 0, 0.25) 55%,
    rgba(0, 0, 0, 0) 100%
  );
}

/* 텍스트 영역 */
.main-box .main-top .inner {
  position: absolute;

  left: 0;
  top: 0;

  width: 100%;
  height: 100%;

  z-index: 2;

  padding: 32px;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

/* 메인 타이틀 */
.main-box .main-top .inner h2 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.08;

  color: #fff;

  letter-spacing: -1.5px;

  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.45);
}

/* 강조 텍스트 */
.main-box .main-top .inner h2 b {
  font-size: 42px;
  font-weight: 800;

  color: #e7c35f;
}

/* 서브 문구 */
.main-box .main-top .inner p {
  margin: 18px 0 0;

  font-size: 30px;
  font-weight: 700;
  line-height: 1.45;

  color: #fff;

  letter-spacing: -1px;

  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.45);
}

/* 모바일 */
@media all and (max-width: 640px) {
  .main-box .main-top .inner {
    padding: 24px;
  }

  .main-box .main-top .inner h2 {
    font-size: 34px;
  }

  .main-box .main-top .inner h2 b {
    font-size: 34px;
  }

  .main-box .main-top .inner p {
    font-size: 24px;
    line-height: 1.4;
  }
}

/* main-app */
.main-box .main-app {
  padding: 40px 0;
}

.main-box .main-app h2 {
  text-align: center;
  font-size: 32px;
  color: #871c21;
  font-weight: 700;
}

.main-box .main-app ul {
  margin: 24px 0 0;

  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;

  gap: 0 24px;
}

.main-box .main-app ul li a {
  display: block;

  font-size: 0;

  width: 80px;
  height: 80px;

  background-size: cover;
  background-position: center;
}

.main-box .main-app ul li:nth-of-type(1) a {
  background-image: url("../images/img_main_app_01.png");
}

.main-box .main-app ul li:nth-of-type(2) a {
  background-image: url("../images/img_main_app_02.png");
}

/* main-sugar */
.main-box .main-sugar {
  background: #231916;
  padding: 32px 20px 25px;
}

.main-box .main-sugar h2 {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #ffd664;
}

.main-box .main-sugar p {
  margin: 12px 0 0;

  text-align: center;

  font-size: 24px;
  font-weight: 700;

  color: #f7f3e8;
}

/* main-food */
.main-box .main-food {
  padding: 40px 0;
}

.main-box .main-food h2 {
  font-size: 24px;
  font-weight: 700;
  color: #871c21;

  text-align: center;

  margin: 0 0 8px;
}

.main-box .main-food p {
  font-size: 18px;
  font-weight: 700;
  color: #871c21;

  word-break: keep-all;

  text-align: center;
  line-height: 1.5;

  margin: 0 0 24px;
}

.main-box .main-food img {
  max-width: 100%;
  margin: 0 auto 24px;
  display: block;
}

.main-box .main-food img.logo {
  margin: 0 auto;
  max-width: 240px;
  display: block;
}

/* main-menu */
.main-box .main-menu {
  background: #231916;
}

.main-box .main-menu .inner {
  padding: 40px 20px;
}

.main-box .main-menu .inner h2 b {
  font-size: 40px;
  font-weight: 700;
  color: #c6984f;

  text-align: center;
  display: block;

  margin: 4px 0 0;
}

.main-box .main-menu .inner h2 span {
  display: block;

  text-align: center;

  font-size: 24px;
  font-weight: 700;

  color: #fff;
  line-height: 1.5;
}

.main-box .main-menu .inner ul {
  border-top: 2px solid #f7f3e8;

  padding: 24px 24px 0;
  margin: 24px 0 0;
}

.main-box .main-menu .inner ul li {
  margin: 0 0 12px;

  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;

  text-align: center;
  word-break: keep-all;

  background: #e0c8a2;

  padding: 12px 16px;

  font-size: 18px;
  font-weight: 700;
}

.main-box .main-menu .inner p {
  border-top: 2px solid #f7f3e8;

  padding: 24px 0 0;
  margin: 24px 0 0;

  text-align: center;

  font-size: 18px;
  font-weight: 500;

  color: #fff;
  line-height: 1.5;
}

.main-box .main-menu img {
  width: 100%;
}

/* main-price */
.main-box .main-price {
  background: #0d0d0c;
  padding: 40px 20px 0;
}

.main-box .main-price p {
  font-size: 18px;
  font-weight: 500;

  text-align: center;
  line-height: 1.5;
  word-break: keep-all;

  color: #f7f3e8;

  margin: 0 0 24px;
}

.main-box .main-price strong {
  max-width: 100%;

  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;

  border-radius: 50px;
  border: 1px solid #f7f3e8;

  padding: 24px 20px;

  font-size: 22px;
  font-weight: 700;

  color: #fff;
}

.main-box .main-price strong b {
  font-size: 22px;
  font-weight: 700;

  color: #ffd664;

  margin: 0 0 0 5px;
}

.main-box .main-price img {
  width: calc(100% + 40px);
  margin: 40px -20px 0;
}

/* main-success */
.main-box .main-success {
  padding: 40px 20px;
}

.main-box .main-success h2 {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  color: #304c72;
}

.main-box .main-success p {
  margin: 12px 0 24px;

  text-align: center;

  font-size: 14px;
  font-weight: 700;

  color: #304c72;

  word-break: keep-all;
  line-height: 1.5;
}

.main-box .main-success ul li {
  padding: 24px 0;

  font-size: 18px;
  font-weight: 700;

  text-align: center;
  line-height: 1.4;

  word-break: keep-all;

  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
}

.main-box .main-success ul li:last-of-type {
  border: 0;
}

/* main-review */
.main-box .main-review {
  background: #231916;
  padding: 40px 20px;
}

.main-box .main-review h2 {
  font-size: 22px;
  font-weight: 700;

  color: #f7f3e8;

  text-align: center;
}

.main-box .main-review p {
  font-size: 18px;
  font-weight: 500;

  color: #f7f3e8;

  text-align: center;

  word-break: keep-all;
  line-height: 1.5;

  margin: 8px 0 0;
}

.main-box .main-review span {
  max-width: 350px;

  margin: 0 auto;
  display: block;

  text-align: center;

  font-weight: 500;
  line-height: 1.5;

  word-break: keep-all;

  color: #f7f3e8;
}

.main-box .main-review img.review {
  display: block;
  margin: 8px auto 0;

  max-width: 152px;
  width: 100%;
}

.main-box .main-review img.store {
  width: 100%;
  margin: 24px auto;
}

.sales-section {
  padding: 0;
}

.sales-title-wrap {
  margin-bottom: 50px;
}

.sales-title {
  display: block;
  font-size: 52px;
  line-height: 1.2;
  font-weight: 900;
  text-align: center;
  color: #111;
}

.sales-title b {
  color: #d62828;
}

.sales-proof-wrap {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.sales-card {
  overflow: hidden;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sales-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.sales-image-wrap {
  position: relative;
  overflow: hidden;
}

.sales-card img {
  width: 100%;
  display: block;

  transition: transform 0.5s ease, filter 0.5s ease;
}

/* =========================
   OVERLAY
========================= */

.sales-overlay {
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  background: rgba(0, 0, 0, 0.45);

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;

  transition: opacity 0.4s ease;
}

.sales-overlay-inner {
  text-align: center;
  color: #fff;
}

.sales-overlay-inner span {
  display: block;
  font-size: 20px;
  margin-bottom: 14px;
  opacity: 0.8;
}

.sales-overlay-inner strong {
  display: block;
  font-size: 48px;
  line-height: 1.1;
  font-weight: 900;
  margin-bottom: 16px;
}

.sales-overlay-inner em {
  display: block;
  font-size: 18px;
  font-style: normal;
  opacity: 0.9;
}

/* =========================
   HOVER
========================= */

.sales-card:hover img {
  transform: scale(1.08);
  filter: blur(4px);
}

.sales-card:hover .sales-overlay {
  opacity: 1;
}

/* =========================
   MOBILE
========================= */

@media screen and (max-width: 768px) {
  .sales-section {
    padding: 60px 0;
  }

  .sales-title {
    font-size: 36px;
  }

  .sales-card {
    border-radius: 22px;
  }

  .sales-overlay-inner span {
    font-size: 15px;
  }

  .sales-overlay-inner strong {
    font-size: 30px;
    margin-bottom: 10px;
  }

  .sales-overlay-inner em {
    font-size: 14px;
  }
}
.seo-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.main-contact {
  position: relative;

  padding: 60px 0;
  margin-top: 0px;

  background: #111;
}

.main-contact .inner {
  max-width: 760px;

  margin: 0 auto;

  padding: 0 20px;
}

/* 타이틀 */

.contact-title {
  text-align: center;

  margin-bottom: 50px;
}

.contact-title h2 {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.2;

  color: #fff;

  margin-bottom: 18px;
}

.contact-title p {
  font-size: 17px;
  line-height: 1.7;

  color: rgba(255, 255, 255, 0.7);
}

/* 폼 */

.contact-form {
  display: flex;
  flex-direction: column;

  gap: 18px;

  padding: 40px;

  border-radius: 28px;

  background: rgba(255, 255, 255, 0.05);

  border: 1px solid rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(10px);
}

.contact-form .input-box {
  width: 100%;
}

/* 공통 */

.contact-form input,
.contact-form textarea,
.email-select {
  width: 100%;

  background: rgba(255, 255, 255, 0.06);

  border: 1px solid rgba(255, 255, 255, 0.1);

  border-radius: 16px;

  color: #fff !important;

  font-size: 16px;
  font-weight: 500;

  box-sizing: border-box;

  transition: all 0.3s ease;
}

.contact-form input {
  height: 64px;

  padding: 0 22px;
}

.contact-form textarea {
  height: 220px;

  padding: 22px;

  line-height: 1.7;

  resize: none;
}

/* focus */

.contact-form input:focus,
.contact-form textarea:focus,
.email-select:focus {
  outline: none;

  border-color: rgba(255, 255, 255, 0.3);

  background: rgba(255, 255, 255, 0.09);
}

/* placeholder */

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

/* 이메일 */

.email-wrap {
  display: flex;

  align-items: center;

  gap: 10px;
}

.email-input {
  flex: 1;
}

.email-select {
  width: 180px;

  height: 64px;

  padding: 0 18px;

  cursor: pointer;

  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.email-select option {
  background: #111;

  color: #fff;
}

.email-at {
  color: rgba(255, 255, 255, 0.6);

  font-size: 20px;
  font-weight: 700;
}

/* disabled */

#emailDomainInput:disabled {
  opacity: 0.5;
}

/* hcaptcha */

.h-captcha {
  margin-top: 4px;
}

/* 버튼 */

.contact-btn {
  width: 100%;
  height: 68px;

  border: none;

  border-radius: 16px;

  background: #fff;

  color: #111;

  font-size: 17px;
  font-weight: 700;

  cursor: pointer;

  transition: all 0.3s ease;
}

.contact-btn:hover {
  transform: translateY(-2px);

  opacity: 0.92;
}

/* 자동완성 대응 */

.contact-form input:-webkit-autofill,
.contact-form input:-webkit-autofill:hover,
.contact-form input:-webkit-autofill:focus,
.contact-form textarea:-webkit-autofill {
  -webkit-text-fill-color: #fff;

  transition: background-color 9999s ease-out 0s;
}

/* 모바일 */

@media screen and (max-width: 768px) {
  .main-contact {
    padding: 90px 0;
  }

  .contact-title {
    margin-bottom: 35px;
  }

  .contact-title h2 {
    font-size: 36px;
  }

  .contact-title p {
    font-size: 15px;
  }

  .contact-form {
    padding: 24px;

    gap: 14px;

    border-radius: 22px;
  }

  .contact-form input,
  .contact-form textarea,
  .email-select {
    height: 56px;

    font-size: 15px;
  }

  .contact-form textarea {
    height: 180px;
  }

  .contact-btn {
    height: 60px;

    font-size: 15px;
  }

  .email-wrap {
    flex-wrap: wrap;
  }

  .email-select {
    width: 100%;
  }
}
