@charset "UTF-8";
/* ===== Color ===== */
/* ===== Font ===== */
/* ===== Layout ===== */
/* ===== Radius ===== */
/* ===== Shadow ===== */
/* ===== Breakpoints ===== */
/* ===== Z-index ===== */
/* =========================================
   Astra layout override (Landing only)
   ========================================= */
body.page-template-page-landing-ds {
  /* Astra의 기본 컨테이너 폭/패딩 제거 */
  /* 경우에 따라 ast-container가 flex로 잡히는 것 방지 */
}
body.page-template-page-landing-ds .site-content > .ast-container,
body.page-template-page-landing-ds #content > .ast-container {
  max-width: none !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
body.page-template-page-landing-ds .ast-primary-header-bar {
  border-bottom-width: 0px !important;
}
body.page-template-page-landing-ds .ast-container {
  display: block !important;
}
body.page-template-page-landing-ds .lp-ds {
  font-family: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
}

/* =================================================
   common
   ================================================= */
:root {
  --header-offset: 0px;
}

html {
  scroll-padding-top: var(--header-offset);
  scroll-behavior: smooth;
}

section[id], [id] {
  scroll-margin-top: var(--header-offset);
}

.lp-arrow {
  display: inline-block;
  vertical-align: middle;
  margin: 0 6px;
  width: 0;
  height: 0;
  border-left: 8px solid rgba(255, 255, 255, 0.65);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

.lp-plus {
  color: #83a088;
  font-weight: 900;
}

/* PC 기본 */
.lp-rolling--pc {
  display: block;
}

.lp-rolling--mo {
  display: none;
}

.pc_v {
  display: block;
}

.mo_v {
  display: none;
}

/* 모바일에서만 MO 보이기 */
@media (max-width: 767px) {
  .lp-rolling--pc {
    display: none;
  }
  .lp-rolling--mo {
    display: block;
  }
  .pc_v {
    display: none !important;
  }
  .mo_v {
    display: block !important;
  }
}
/* header fixed */
.site-header {
  width: 100%;
  z-index: 9999;
  transition: top 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
  top: 0;
}

.site-header.fixed {
  position: fixed;
  left: 0;
  right: 0;
}

/* =================================================
   Client (Map)
   ================================================= */
.lp-client {
  padding: 70px 0;
  background: #fff;
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
}

.lp-client__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.lp-client__title {
  margin: 0 0 14px;
  font-size: 56px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #535353;
}

.lp-client__desc {
  margin: 0;
  font-size: 18px;
  line-height: 1.9;
  color: #535353;
}

.lp-client__map {
  position: relative;
}

.lp-map {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
}

.lp-map__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}

/* Dot */
.lp-map__dot {
  all: unset;
  box-sizing: border-box;
  position: absolute;
  transform: translate(-50%, -50%);
  width: 15px;
  height: 15px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.lp-map__dot--yellow {
  background-color: #dcc361;
  box-shadow: 0 0 7px 11px rgba(250, 239, 196, 0.8);
}
.lp-map__dot--yellow:hover, .lp-map__dot--yellow:focus, .lp-map__dot--yellow.is-active {
  box-shadow: 0 0 7px 11px rgba(250, 239, 196, 0.8);
  background-color: #dcc361;
}
.lp-map__dot--green {
  background-color: #4fbd73;
  box-shadow: 0 0 7px 11px rgba(208, 245, 220, 0.8);
}
.lp-map__dot--green:hover, .lp-map__dot--green:focus, .lp-map__dot--green.is-active {
  box-shadow: 0 0 7px 11px rgba(208, 245, 220, 0.8);
  background-color: #4fbd73;
}

.lp-map__dot:hover,
.lp-map__dot.is-active {
  transform: translate(-50%, -50%) scale(1.15);
  transition: 0.5s;
}

/* Popup (viewport 기준으로 고정) */
.lp-map__popup {
  position: fixed;
  left: -9999px;
  top: -9999px;
  opacity: 0;
  pointer-events: none;
  z-index: 9999;
  transition: opacity 0.12s ease;
}

.lp-map__popup.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.lp-map__popup-img {
  width: 255px;
  height: auto;
  display: block;
}

/* Responsive */
@media (max-width: 920px) {
  .lp-client__inner {
    grid-template-columns: 1fr;
    gap: 22px;
    text-align: center;
  }
  .lp-client__title {
    font-size: 28px;
    font-weight: 600;
  }
  .lp-client__desc {
    font-size: 12px;
  }
  .lp-map {
    aspect-ratio: 4/3;
  }
  .lp-map__popup-img {
    width: 200px;
  }
}
/* =================================================
   ABOUT US
   ================================================= */
.lp-about {
  background: #f9f9f9;
}

/* 이미지 영역을 크게 잡고 그 위에 텍스트를 얹음 */
.lp-about__visual {
  position: relative;
}

.lp-about__img {
  display: block;
  width: 50%;
  max-width: 921px;
  height: auto;
}

.lp-about__text {
  position: absolute;
  left: 60%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(1080px, 100% - 360px);
  padding: 0;
}

.lp-about__text-grid {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 70px;
  align-items: start;
}

/* ABOUT */
.lp-about__title {
  margin: 0;
  font-size: 50px;
  font-weight: 900;
  color: #2e763d;
}

.lp-about__sub {
  font-size: 14px;
  color: #2e763d;
  opacity: 0.4;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5em;
  line-height: 2.5;
}

/* 설명 텍스트 */
.lp-about__content p {
  margin: 0 0 18px;
  font-size: 20px;
  color: #535353;
}
.lp-about__content p:last-child {
  margin-bottom: 0;
}

/* Responsive */
/* =========================================
   ABOUT (Rebuild: PC + Mobile 안정형)
   - 모바일: 이미지(상단) -> 타이틀/텍스트(하단)
   ========================================= */
/* 레이아웃(PC): 필요하면 2열, 아니면 1열로도 문제없게 */
.lp-about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* 이미지 */
.lp-about__visual {
  min-width: 0;
}

.lp-about__visual img {
  display: block;
  width: 100%;
  height: auto;
}

/* 텍스트 */
.lp-about__text {
  min-width: 0;
}

.lp-about__title {
  margin: 0;
  font-size: 56px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.05;
  color: #2f7d44;
}

.lp-about__subtitle {
  margin: 12px 0 0;
  font-size: 14px;
  letter-spacing: 0.35em;
  color: rgba(47, 125, 68, 0.35);
  font-weight: 700;
}

.lp-about__desc {
  margin: 26px 0 0;
  font-size: 16px;
  line-height: 2;
  color: #4b4b4b;
  max-width: 44ch;
}

/* =========================
   ABOUT - Mobile clean card
   ========================= */
@media (max-width: 900px) {
  .lp-about {
    padding: 24px 0 40px;
    background: #fff;
  }
  /* 컨테이너 폭 */
  .lp-about .lp-container {
    width: min(100%, 520px);
    margin: 0 auto;
  }
  .lp-about__grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
  }
  /* 이미지 영역 */
  .lp-about__visual {
    width: 100%;
    order: 1;
    position: static;
    transform: none;
    margin: 0;
  }
  .lp-about__visual img {
    display: block;
    width: 100%;
    height: auto;
    /* 이미지 비율이 너무 길쭉/짧아 보이면 아래를 켜세요 */
    /* height: 320px !important;
       object-fit: cover;
       object-position: center; */
  }
  /* 텍스트 래퍼(제목~설명) */
  .lp-about__text {
    width: 100%;
    order: 2;
    padding: 40px 10px 20px;
    text-align: center;
    position: static;
    transform: none;
    margin: 0;
  }
  .lp-about__text-grid {
    display: block;
  }
  .lp-about__title {
    margin: 0;
    font-size: 38px;
    font-weight: 900;
    letter-spacing: 0.08em;
    line-height: 1.05;
    color: #2f7d44;
  }
  .lp-about__subtitle {
    margin: 10px 0 0;
    font-size: 12px;
    letter-spacing: 0.35em;
    color: rgba(47, 125, 68, 0.35);
    font-weight: 700;
  }
  .lp-about__desc {
    margin: 18px auto 0;
    font-size: 15px;
    line-height: 2;
    color: #5a5a5a;
    max-width: 32ch;
  }
  /* 혹시 어떤 부모 스타일 때문에 글자가 세로로 깨지는 경우 방지 */
  .lp-about__text,
  .lp-about__desc {
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    white-space: normal;
    word-break: keep-all;
    overflow-wrap: anywhere;
  }
  .lp-about__content p {
    font-size: 12px;
  }
}
/* =================================================
   MESSAGE SECTION (bg image + text only)
   ================================================= */
.lp-message {
  position: relative;
  padding: 70px 20px;
  background: url("../img/message-bg.jpg") center/cover no-repeat;
  color: #fff;
}

.lp-message__inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

/* 텍스트 */
.lp-message__text {
  margin: 0;
  font-size: 20px;
  line-height: 2;
}

/* 어두운 배경 위 가독성 보정 (선택) */
.lp-message::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
}

/* overlay 위로 텍스트 올리기 */
.lp-message__inner {
  position: relative;
  z-index: 1;
}

/* Responsive */
@media (max-width: 900px) {
  .lp-message {
    padding: 60px 10px;
  }
  .lp-message__text {
    font-size: 15px;
    line-height: 1.9;
  }
}
/* =================================================
   STATS TABLE
   ================================================= */
.lp-stats {
  padding: 110px 0;
  background: #fff;
}

.lp-stats__box {
  max-width: 980px;
  margin: 0 auto;
  padding: 60px 70px;
  background: #fafafa;
}

/* row: 4 columns (label + 3 countries) */
.lp-stats__row {
  display: grid;
  grid-template-columns: 180px repeat(3, 1fr);
  align-items: center;
  -moz-column-gap: 0;
       column-gap: 0;
  /* dotted divider */
  border-bottom: 2px dotted rgba(0, 0, 0, 0.25);
}
.lp-stats__row:first-child {
  border-top: 2px dotted rgba(0, 0, 0, 0.25);
}

.lp-stats__row--head {
  padding: 14px 0;
  font-weight: 700;
  color: #444;
}

.lp-stats__row:not(.lp-stats__row--head) {
  padding: 26px 0;
}

/* left label cell */
.lp-stats__cell--label {
  font-size: 18px;
  font-weight: 700;
  color: #535353;
  line-height: 1.15;
  padding-right: 10px;
  text-align: center;
}

/* country header cells */
.lp-stats__cell--country {
  text-align: center;
  font-size: 18px;
}

/* values */
.lp-stats__cell--value {
  text-align: center;
  font-size: 18px;
  color: #535353;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

/* rate row bigger */
.lp-stats__row--rate .lp-stats__cell--label {
  font-size: 20px;
}

.lp-stats__row--rate .lp-stats__cell--value {
  font-size: 28px;
  font-weight: 700;
}

/* number + unit for % */
.lp-stats__num {
  font-size: 60px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #2e763d;
  line-height: 1;
}

.lp-stats__unit {
  font-size: 24px;
  font-weight: 700;
  margin-left: 4px;
  margin-top: 3%;
  color: #2e763d;
  line-height: 1;
}

/* lighter percent */
.lp-stats__num.is-light,
.lp-stats__unit.is-light {
  color: rgba(0, 0, 0, 0.35);
  font-weight: 400;
}

/* 강조 토글(필요시) */
/* Responsive */
@media (max-width: 900px) {
  .lp-stats {
    padding: 0;
  }
  .lp-stats__box {
    padding: 30px 10px;
    max-width: 720px;
  }
  .lp-stats__row {
    grid-template-columns: 150px repeat(3, 1fr);
  }
  .lp-stats__row:not(.lp-stats__row--head) {
    padding: 20px 0;
  }
  .lp-stats__cell--label {
    font-size: 14px;
  }
  .lp-stats__row--rate .lp-stats__cell--label {
    font-size: 12px;
  }
  .lp-stats__cell--country {
    font-size: 12px;
  }
  .lp-stats__num {
    font-size: 30px;
  }
  .lp-stats__unit {
    font-size: 12px;
    margin-left: 0;
  }
}
/* =================================================
   SECTION HEAD (공통)
   ================================================= */
.lp-section-head {
  text-align: center;
  margin-bottom: 5%;
}

.lp-section-head__bar {
  display: inline-block;
  width: 180px;
  height: 8px;
  margin-bottom: 22px;
}

/* 공통 기본 */
.lp-section-head__bar {
  background: #d9d9d9; /* 기준색 */
}

/* 시스템 섹션 */
.lp-system .lp-section-head__bar {
  background: #c4dcbe;
}

/* 리포트 섹션 */
.lp-report .lp-section-head__bar {
  background: rgba(0, 0, 0, 0.1);
}

.lp-section-head__title {
  margin: 0;
  font-size: 44px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #2b2b2b;
}

/* =================================================
   SYSTEM SECTION
   ================================================= */
.lp-system {
  padding: 110px 0 130px;
  background: #e8f6e5; /* 연한 민트 톤 */
}

.lp-system__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 46px;
  align-items: start;
  justify-items: center;
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
}

/* 카드: 둥근 사각 + 뉴모피즘(오목/볼록) */
.lp-system__card {
  position: relative;
  width: 100%;
  max-width: 280px;
  padding: 34px 28px 34px;
  border-radius: 120px;
  text-align: center;
  background: #e8f6e5;
  overflow: hidden;
  min-height: 394px;
  /* 시안 느낌: 부드러운 볼록 + 아주 약한 오목 */
  box-shadow: 18px 18px 42px rgba(0, 0, 0, 0.07), -18px -18px 42px rgba(255, 255, 255, 0.78), inset 10px 10px 22px rgba(0, 0, 0, 0.03), inset -10px -10px 22px rgba(255, 255, 255, 0.55);
  /* 카드 표면 질감(뿌옇게 덮지 않게 아주 약하게) */
  /* hover는 선택: 원하면 유지 */
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.lp-system__card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit; /* 중요: radius 일치 */
  pointer-events: none;
  opacity: 0.35;
  background: radial-gradient(120% 120% at 50% 0%, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0) 60%);
}

.lp-system__card:hover {
  transform: translateY(-4px);
  box-shadow: 22px 22px 52px rgba(0, 0, 0, 0.09), -22px -22px 52px rgba(255, 255, 255, 0.82), inset 10px 10px 22px rgba(0, 0, 0, 0.03), inset -10px -10px 22px rgba(255, 255, 255, 0.55);
}

/* 카드 내부 콘텐츠는 항상 위로 */
.lp-system__card > * {
  position: relative;
  z-index: 1;
}

/* 상단 번호 */
.lp-system__no {
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 22px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.18);
  letter-spacing: 0.06em;
  z-index: 2;
}

/* 원형 아이콘 배지: 오목(인셋) */
.lp-system__badge {
  width: 150px;
  height: 150px;
  margin: 26px auto 26px;
  border-radius: 50%;
  background: #e8f6e5;
  display: grid;
  place-items: center;
  box-shadow: inset 12px 12px 26px rgba(0, 0, 0, 0.06), inset -12px -12px 26px rgba(255, 255, 255, 0.82), 0 16px 28px rgba(0, 0, 0, 0.05);
}

.lp-system__badge img {
  display: block;
  height: auto;
  /* 원 안에서 안전하게 */
  max-width: 199px; /* 아이콘 크기: 필요하면 64~84 사이로 조절 */
  width: 70%;
}

/* 텍스트 */
.lp-system__name {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 800;
  color: #535353;
}

.lp-system__desc {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: #535353;
}

.lp-system__note {
  margin: 12px 0 0;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 700;
  color: #2e763d;
}

/* Responsive */
/* =========================
   SYSTEM - Mobile layout
   ========================= */
@media (max-width: 900px) {
  .lp-system {
    padding: 70px 0 80px;
  }
  .lp-section-head__bar {
    margin-bottom: 15px;
    width: 150px;
  }
  .lp-section-head__title {
    font-size: 30px;
  }
  .lp-system__grid {
    display: flex;
    flex-direction: column;
    gap: 28px;
    align-items: stretch;
    justify-items: initial;
    margin-top: 10%;
  }
  .lp-system__card {
    width: 100%;
    max-width: 100%;
    padding: 34px 18px 34px 150px;
    border-radius: 999px;
    min-height: 150px;
    text-align: left;
    position: relative;
    overflow: visible;
    background: #e8f6e5;
    box-shadow: 16px 16px 36px rgba(0, 0, 0, 0.06), -16px -16px 36px rgba(255, 255, 255, 0.75);
  }
  .lp-system__card::before,
  .lp-system__card::after {
    opacity: 0.35;
  }
  /* 01/02/03 : 카드 왼쪽 바깥에 연하게 */
  .lp-system__no {
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    font-size: 15px;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.14);
    letter-spacing: 0.08em;
  }
  /* 원형 배지: 왼쪽에 겹치게 */
  .lp-system__badge {
    position: absolute;
    left: 30%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #eaf4e3;
    box-shadow: inset 10px 10px 20px rgba(0, 0, 0, 0.06), inset -10px -10px 20px rgba(255, 255, 255, 0.75), 0 14px 26px rgba(0, 0, 0, 0.06);
  }
  .lp-system__badge img {
    width: 80%;
    height: auto;
    display: block;
  }
  /* 텍스트 타이포: 모바일용 */
  .lp-system__name {
    margin: 0 0 10px;
    font-size: 15px;
    font-weight: 900;
    margin-left: 14%;
  }
  .lp-system__desc {
    margin: 0;
    font-size: 12px;
    line-height: 1.8;
    margin-left: 14%;
  }
  .lp-system__note {
    margin-top: 10px;
    font-size: 12px;
    font-weight: 800;
    margin-left: 14%;
  }
  /* hover는 모바일에서 필요 없으면 무력화 */
  .lp-system__card:hover {
    transform: none;
    box-shadow: 16px 16px 36px rgba(0, 0, 0, 0.06), -16px -16px 36px rgba(255, 255, 255, 0.75);
  }
}
/* =================================================
   REPORT SECTION
   ================================================= */
.lp-report {
  padding: 120px 0 140px;
  background: #fff;
}

.lp-report__lead {
  margin: 18px auto 0;
  max-width: 920px;
  font-size: 16px;
  line-height: 2;
  color: #666;
}

/* 4개 이미지 영역 */
.lp-report__gallery {
  position: relative;
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px;
  align-items: end; /* 바닥 라인 맞추기 */
  width: 80%;
  max-width: 1500px;
  margin: 0 auto;
}

/* 긴 바닥 그림자 (시안 핵심) */
.lp-report__floor-shadow {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  width: min(1000px, 92%);
  height: 38px;
  border-radius: 999px;
  background: radial-gradient(60% 120% at 50% 50%, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0) 70%);
  filter: blur(4px);
  opacity: 0.35;
  z-index: 0;
  pointer-events: none;
}

/* 각 이미지 카드 */
.lp-report__item {
  position: relative;
  margin: 0;
  z-index: 1;
  overflow: hidden; /* 이미지 모서리 라운드 */
  background: #fff;
  /* 카드 자체 그림자 */
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
  transform: translateZ(0); /* 렌더 안정 */
}

.lp-report__item img {
  width: 100%;
  max-width: 338px;
  height: auto;
  display: block;
}

/* 약간의 "떠있는" 느낌 */
.lp-report__item {
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.lp-report__item:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.16);
}

/* Responsive */
@media (max-width: 1100px) {
  .lp-report__gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }
  .lp-report__floor-shadow {
    bottom: 10px;
    width: min(760px, 92%);
    height: 34px;
  }
}
@media (max-width: 640px) {
  .lp-report {
    padding: 70px 0 80px;
  }
  .lp-report__lead {
    font-size: 12px;
  }
  .lp-report__gallery {
    grid-template-columns: fr;
  }
  .lp-report__floor-shadow {
    display: none; /* 모바일에선 자연스럽게 생략 */
  }
}
/* =================================================
   GUIDE SECTION (Top + Floating Process + Bottom)
   ================================================= */
.lp-section.lp-guide {
  position: relative;
}

/* -----------------------------
   1) TOP
------------------------------ */
.lp-guide__top {
  position: relative;
  z-index: 1;
  padding: 90px 0 260px; /* ✅ float 박스가 걸칠 공간 */
  background: url("../img/guide-top-bg.jpg") center/cover no-repeat;
  color: #fff;
}

.lp-guide__top-inner {
  width: 70%;
  max-width: 1300px;
  margin: 0 auto;
}

.lp-guide__top-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  align-items: start;
}

.lp-guide__title {
  margin: 0;
  font-size: 40px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #fff;
}

.lp-guide__intro {
  margin: 0 0 22px;
  font-size: 22px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.9);
}

.lp-guide__flow {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 18px;
  align-items: start;
}

.lp-guide__flow-line {
  position: relative;
  width: 2px;
  height: 100%;
  margin: 6px auto 0;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 999px;
}
.lp-guide__flow-line::before, .lp-guide__flow-line::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 8px;
  height: 8px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
}
.lp-guide__flow-line::before {
  top: -6px;
}
.lp-guide__flow-line::after {
  bottom: -6px;
}

.lp-guide__bullets {
  list-style: none;
  margin: 0;
  padding: 0;
}
.lp-guide__bullets li {
  margin-top: 18px;
  font-size: 22px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.9);
  text-indent: -25px;
  padding-left: 25px;
}

.lp-guide__flow-item {
  margin-top: 14px; /* flow-box 전용 */
}

.lp-guide__flow-box {
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.1);
  padding: 14px 16px;
  text-indent: 0;
}
.lp-guide__flow-box p {
  margin: 0;
  font-size: 22px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.92);
}

.lp-guide .lp-arrow {
  border-left-color: #a4f7b9;
}

.lp-guide__mark {
  color: #c8ffb6;
  font-weight: 800;
  margin-right: 2px;
}

.lp-guide__label {
  color: #c8ffb6;
  font-weight: 700;
}

.lp-guide__value {
  color: #fff;
  font-weight: 400;
}

.lp-guide__highlight {
  color: #d9ff4f;
  font-weight: 900;
}

.lp-guide__text {
  color: rgba(255, 255, 255, 0.9);
}

/* -----------------------------
   2) FLOATING PROCESS (겹침 핵심)
   - HTML 구조: top 다음에 process가 오고, 그 다음 mid(띠), bottom
------------------------------ */
/* ✅ process 자체를 absolute로 띄움 */
.lp-guide__process--float {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 700px;
  width: min(1400px, 100% - 80px);
  z-index: 10;
  /* 박스 스타일 */
  padding: 26px 26px 24px;
  background: rgb(15, 50, 30);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}

.lp-guide__process-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 18px;
  align-items: start;
}

.lp-guide__step {
  text-align: center;
}

.lp-guide__step .lp-arrow {
  border-left: 8px solid #83a088;
}

.lp-guide__thumb {
  overflow: hidden;
  display: inline-block;
}
.lp-guide__thumb img {
  width: 100%;
  max-width: 246px;
  height: auto;
  display: block;
}

.lp-guide__step-title {
  margin: 12px 0 6px;
  font-size: 22px;
  font-weight: 800;
  color: #98ffad;
}

.lp-guide__step-desc {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
}

.lp-guide__arrow {
  align-self: center;
  font-size: 22px;
  color: #fff;
}

/* ✅ 중간 띠(찐초록)는 배경 역할만 */
.lp-guide__mid {
  height: 220px;
  background: #163a27;
}

/* -----------------------------
   3) BOTTOM
   - process가 겹쳐 있으므로 padding-top 크게 확보
------------------------------ */
.lp-guide__bottom {
  position: relative;
  z-index: 1;
  background: #e3f3c9;
  padding: 500px 0 0; /* ✅ 겹치는 박스 높이만큼 위 공간 */
}

.lp-guide__bottom-inner {
  position: relative;
  min-height: 360px;
  width: 85%;
  max-width: 1400px;
  margin: 0 auto;
}

.lp-guide__checklist {
  width: min(830px, 100%);
}

.lp-guide__checks {
  list-style: none;
  margin: 0;
  padding: 0;
}
.lp-guide__checks li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 16px;
  margin-bottom: 18px;
  border: 2px solid #568c19;
  border-radius: 999px;
  color: #535353;
  font-size: 20px;
  line-height: 1.8;
}

.lp-guide__check-icon {
  width: 33px;
  height: 33px;
  flex: 0 0 33px;
  border-radius: 50%;
  border: 2px solid #568c19;
  display: grid;
  place-items: center;
  color: #568c19;
  font-weight: 900;
  font-size: 16px;
  margin-top: 1px;
}

.lp-guide__person {
  position: absolute;
  right: 0;
  bottom: -8px;
  width: min(440px, 48vw);
  pointer-events: none;
}
.lp-guide__person img {
  width: 100%;
  height: auto;
  display: block;
}

/* -----------------------------
   Responsive
------------------------------ */
@media (max-width: 1100px) {
  .lp-guide__top {
    padding: 60px 0 500px;
  }
  .lp-guide__top-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .lp-guide__top-inner {
    width: 90%;
    max-width: 720px;
  }
  .lp-guide__title {
    text-align: left;
    font-size: 30px;
  }
  .lp-guide__intro {
    font-size: 13px;
  }
  .lp-guide__flow {
    gap: 10px;
  }
  .lp-guide__bullets li {
    font-size: 13px;
    margin-top: 10px;
    text-indent: -15px;
    padding-left: 15px;
  }
  .lp-guide__bullets li.lp-guide__flow-item {
    padding-left: 0;
    text-indent: 0;
  }
  .lp-guide__flow-box p {
    font-size: 13px;
  }
  .lp-guide__process--float {
    position: relative;
    left: auto;
    transform: none;
    top: auto;
    width: 100%;
    margin: -80px auto 0;
  }
  .lp-guide__mid {
    width: 100%;
    max-width: none;
    height: auto;
    padding: 0;
  }
  .lp-guide__process {
    margin-top: -450px;
    padding: 26px 16px 24px;
    border-radius: 8px;
    width: 85%;
  }
  .lp-guide__process-grid {
    display: flex;
    flex-direction: column;
    gap: 22px;
    align-items: stretch;
  }
  .lp-guide__arrow {
    display: block;
    text-align: center;
    font-size: 22px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.7);
    margin: -6px 0 -6px;
    transform: rotate(90deg);
  }
  .lp-guide__step {
    display: grid;
    grid-template-columns: 150px 1fr;
    grid-template-rows: auto auto;
    grid-template-areas: "thumb title" "thumb desc";
    -moz-column-gap: 18px;
         column-gap: 18px;
    /* ★ 이게 중요: 세로 가운데 정렬 방지 */
    align-items: start !important;
  }
  /* 이미지(썸네일) */
  .lp-guide__thumb {
    margin: 0;
    width: 150px;
    border-radius: 18px;
    overflow: hidden;
    grid-area: thumb;
  }
  .lp-guide__thumb img {
    width: 100%;
    height: auto;
    display: block;
  }
  /* 타이틀/설명 우측 정렬 */
  .lp-guide__step-title {
    grid-area: title;
    margin: 15% 0 0 0;
    font-size: 15px;
    font-weight: 800;
    text-align: left;
  }
  .lp-guide__step-desc {
    grid-area: desc;
    margin: 0;
    font-size: 13px;
    line-height: 1.8;
    text-align: left;
  }
  .lp-guide__step-title,
  .lp-guide__step-desc {
    grid-column: 2/3; /* 무조건 오른쪽 컬럼 */
  }
  .lp-guide__bottom {
    padding-top: 450px;
    margin-top: -400px;
  }
  .lp-guide__person {
    position: relative;
    width: min(460px, 70%);
    margin: 30px 0 0 35%;
    bottom: 0;
    right: 0;
  }
  .lp-guide__checklist {
    margin: 0 auto;
  }
  .lp-guide__checks li {
    border-radius: 18px;
    font-size: 12px;
    padding: 6px 8px;
  }
  .lp-guide__check-icon {
    font-size: 10px;
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
  }
}
/* =================================================
   PROSTHO (補綴) SECTION - guide와 동일 구조(겹침)
   ================================================= */
.lp-section.lp-prostho {
  position: relative;
}

/* TOP (화이트) */
.lp-prostho__top {
  position: relative;
  z-index: 1;
  padding: 110px 0 300px;
  background: #fff;
}

.lp-prostho__top-inner {
  width: 70%;
  max-width: 1300px;
  margin: 0 auto;
}

.lp-prostho__top-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 50px;
  align-items: start;
}

.lp-prostho__title {
  margin: 0;
  color: #2f7d44;
  font-size: 42px;
  font-weight: 900;
  letter-spacing: 0.02em;
}
.lp-prostho__title span {
  font-size: 22px;
  font-weight: 700;
  opacity: 0.9;
}

.lp-prostho__intro {
  margin: 0 0 18px;
  font-size: 22px;
  line-height: 2;
  color: #3a3a3a;
}

.lp-prostho__flow {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 18px;
  align-items: start;
}

.lp-prostho__flow-line {
  position: relative;
  width: 2px;
  height: 100%;
  margin: 6px auto 0;
  background: rgba(47, 125, 68, 0.28);
  border-radius: 999px;
}
.lp-prostho__flow-line::before, .lp-prostho__flow-line::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 8px;
  height: 8px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(47, 125, 68, 0.55);
}
.lp-prostho__flow-line::before {
  top: -6px;
}
.lp-prostho__flow-line::after {
  bottom: -6px;
}

.lp-prostho__bullets {
  list-style: none;
  margin: 0;
  padding: 0;
}
.lp-prostho__bullets li {
  margin-top: 18px;
  font-size: 22px;
  line-height: 1.9;
  color: #3a3a3a;
  text-indent: -25px;
  padding-left: 25px;
}

.lp-prostho__flow-box {
  margin-top: 12px;
  border: 1px solid rgba(47, 125, 68, 0.3);
  background: rgba(47, 125, 68, 0.08);
  padding: 16px 18px;
  text-indent: 0;
}
.lp-prostho__flow-box p {
  margin: 0;
  font-size: 22px;
  line-height: 1.8;
  color: #2b2b2b;
}

.lp-prostho .lp-arrow {
  border-left-color: #8fc69c;
}

.lp-prostho__mark {
  color: #2f7d44;
  font-weight: 900;
  margin-right: 2px;
}

.lp-prostho__label {
  color: #2f7d44;
  font-weight: 800;
}

.lp-prostho__value {
  color: #2b2b2b;
  font-weight: 400;
}

.lp-prostho__value.light_gray {
  color: #808080;
}

.lp-prostho__highlight {
  color: #2fae9a;
  font-weight: 900;
}

.lp-prostho__text {
  color: #3a3a3a;
}

/* FLOAT process (겹침 핵심) */
.lp-prostho__process--float {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 730px;
  width: min(1400px, 100% - 80px);
  z-index: 10;
  /* 박스 스타일 */
  padding: 26px 26px 24px;
  background: rgb(15, 50, 30);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}

.lp-prostho__process-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 18px;
  align-items: start;
}

.lp-prostho__step {
  text-align: center;
}

.lp-prostho__step .lp-arrow {
  border-left: 8px solid #83a088;
}

.lp-prostho__thumb {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.25);
  display: inline-block;
}
.lp-prostho__thumb img {
  width: 100%;
  max-width: 246px;
  height: auto;
  display: block;
}

.lp-prostho__step-title {
  margin: 12px 0 6px;
  font-size: 22px;
  font-weight: 800;
  color: #98ffad;
}

.lp-prostho__step-desc {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
}

.lp-prostho__arrow {
  align-self: center;
  font-size: 22px;
  color: #fff;
}

/* 중간 띠 */
.lp-prostho__mid {
  height: 220px;
  background: #163a27;
}

/* BOTTOM */
.lp-prostho__bottom {
  position: relative;
  z-index: 1;
  background: #f0f2ee;
  padding: 650px 0 0px;
}

.lp-prostho__bottom-inner {
  position: relative;
  min-height: 360px;
  margin: 0 auto;
}

.lp-prostho__checklist {
  width: min(830px, 100%);
  margin-left: 14%;
}

.lp-prostho__checks {
  list-style: none;
  margin: 0;
  padding: 0;
}
.lp-prostho__checks li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 16px;
  margin-bottom: 18px;
  border: 2px solid #568c19;
  border-radius: 999px;
  color: #535353;
  font-size: 20px;
  line-height: 1.8;
}

.lp-prostho__check-icon {
  width: 33px;
  height: 33px;
  flex: 0 0 33px;
  border-radius: 50%;
  border: 2px solid #568c19;
  display: grid;
  place-items: center;
  color: #568c19;
  font-weight: 900;
  font-size: 16px;
  margin-top: 1px;
}

.lp-prostho__person {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(700px, 56vw);
  pointer-events: none;
}
.lp-prostho__person img {
  width: 100%;
  height: auto;
  display: block;
}

/* Responsive */
@media (max-width: 1100px) {
  .lp-prostho__top {
    padding: 60px 0 500px;
  }
  .lp-prostho__top-inner {
    width: 90%;
    max-width: 720px;
  }
  .lp-prostho__top-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .lp-prostho__title {
    font-size: 30px;
    text-align: left;
  }
  .lp-prostho__intro {
    font-size: 13px;
  }
  .lp-prostho__flow {
    gap: 10px;
  }
  .lp-prostho__bullets li {
    font-size: 13px;
    margin-top: 10px;
    text-indent: -15px;
    padding-left: 15px;
  }
  .lp-prostho__flow-box {
    margin-left: -15px;
  }
  .lp-prostho__flow-box p {
    font-size: 13px;
  }
  .lp-prostho__process--float {
    position: relative;
    left: auto;
    transform: none;
    top: auto;
    width: 100%;
    margin: -80px auto 0;
  }
  .lp-prostho__mid {
    width: 100%;
    max-width: none;
    height: auto;
    padding: 0;
  }
  .lp-prostho__process {
    margin-top: -450px;
    padding: 26px 16px 24px;
    border-radius: 8px;
    width: 85%;
  }
  .lp-prostho__process-grid {
    display: flex;
    flex-direction: column;
    gap: 22px;
    align-items: stretch;
  }
  .lp-prostho__arrow {
    display: block;
    text-align: center;
    font-size: 22px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.7);
    margin: -6px 0 -6px;
    transform: rotate(90deg);
  }
  .lp-prostho__step {
    display: grid;
    grid-template-columns: 150px 1fr;
    grid-template-rows: auto auto;
    grid-template-areas: "thumb title" "thumb desc";
    -moz-column-gap: 18px;
         column-gap: 18px;
    align-items: start !important;
  }
  /* 이미지(썸네일) */
  .lp-prostho__thumb {
    margin: 0;
    width: 150px;
    border-radius: 18px;
    overflow: hidden;
    grid-area: thumb;
  }
  .lp-prostho__thumb img {
    width: 100%;
    height: auto;
    display: block;
  }
  .lp-prostho__step-title {
    grid-area: title;
    margin: 12% 0 0 0;
    font-size: 15px;
    font-weight: 800;
    text-align: left;
  }
  .lp-prostho__step-desc {
    grid-area: desc;
    margin: 0;
    font-size: 13px;
    line-height: 1.8;
    text-align: left;
    word-break: keep-all;
  }
  .lp-prostho__step-title,
  .lp-prostho__step-desc {
    grid-column: 2/3;
  }
  .lp-prostho__bottom {
    padding-top: 450px;
    margin-top: -400px;
  }
  .lp-prostho__person {
    position: relative;
    width: min(460px, 70%);
    margin: 30px 0 0 30%;
    bottom: 0;
    right: 0;
    overflow: hidden;
  }
  .lp-prostho__checklist {
    margin: 0 auto;
  }
  .lp-prostho__checks {
    width: 85%;
    margin: 0 auto;
  }
  .lp-prostho__checks li {
    border-radius: 18px;
    font-size: 12px;
    padding: 6px 8px;
  }
  .lp-prostho__checks-icon {
    font-size: 10px;
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
  }
}
/* =================================================
   MATERIAL SECTION
================================================= */
.lp-material {
  position: relative;
}

/* TOP */
.lp-material__top {
  padding: 90px 0 260px;
  background: #fff;
}
.lp-material__top-inner {
  width: 80%;
  margin: 0 auto;
}

/* head */
.lp-material__head {
  display: flex;
  align-items: baseline;
  gap: 26px;
  margin-bottom: 34px;
  margin-left: 8%;
}

.lp-material__title {
  margin: 0;
  font-size: 42px;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: #2f7d44;
}

.lp-material__lead {
  margin: 0;
  font-size: 22px;
  color: #4b4b4b;
}

.lp-material__visual-wrap {
  width: 100vw;
  margin-left: calc(50% - 63vw);
  overflow: visible;
  margin-top: 10px;
}

/* 이미지 + 초록박스 오버레이 */
.lp-material__hero {
  position: relative;
  width: min(992px, 92vw);
  margin-left: auto;
  margin-right: 0;
  overflow: visible;
}

.lp-material__hero-media {
  margin: 0;
}
.lp-material__hero-media img {
  width: 100%;
  height: auto;
  max-width: 992px;
  display: block;
}

.lp-material__quote {
  position: absolute;
  left: -400px;
  bottom: -160px;
  width: 973px;
  height: 407px;
  display: grid;
  place-items: center;
  background: linear-gradient(90deg, rgba(11, 63, 38, 0.88), rgba(38, 162, 92, 0.88));
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
  z-index: 5;
}

.lp-material__quote-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.04em;
  text-align: center;
  position: relative;
}
.lp-material__quote-text::before, .lp-material__quote-text::after {
  position: absolute;
  color: rgba(255, 255, 255, 0.25);
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
}
.lp-material__quote-text::before {
  content: "“";
  left: -44px;
  top: -18px;
}
.lp-material__quote-text::after {
  content: "”";
  right: -44px;
  bottom: -18px;
}

.lp-material__quote-mark {
  opacity: 0.45;
  font-weight: 900;
  margin: 0 8px;
}

/* 포인트(세로 라인 + 불릿) */
.lp-material__points {
  width: min(720px, 100%);
  margin: 250px auto 0;
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 16px;
  align-items: start;
}

.lp-material__line {
  position: relative;
  width: 2px;
  height: 100%;
  margin: 6px auto 0;
  background: rgba(47, 125, 68, 0.22);
  border-radius: 999px;
}
.lp-material__line::before, .lp-material__line::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 8px;
  height: 8px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(47, 125, 68, 0.55);
}
.lp-material__line::before {
  top: -6px;
}
.lp-material__line::after {
  bottom: -6px;
}

.lp-material__bullets {
  list-style: none;
  padding: 0;
  margin: 0;
}
.lp-material__bullets li {
  margin-top: 18px;
  font-size: 22px;
  line-height: 1.9;
  color: #535353;
  text-indent: -25px;
  padding-left: 25px;
}

.lp-material__value.light_gray {
  color: #808080;
}

.lp-material__mark {
  color: #2f7d44;
  font-weight: 900;
  margin-right: 2px;
}

.lp-material__label {
  color: #2f7d44;
  font-weight: 800;
}

.lp-material__value {
  color: #2b2b2b;
  font-weight: 400;
}

.lp-material__highlight {
  color: #2fae9a;
  font-weight: 900;
}

.lp-material__text {
  color: #4b4b4b;
}

/* MID */
.lp-material__mid {
  position: relative;
  background: #eef2ea;
  z-index: 1;
}

.lp-material__process {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%) translateY(-50%);
  width: min(1420px, 100% - 80px);
  background: #fff;
  border-radius: 2px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
  padding: 26px 28px 22px;
  z-index: 5;
}

.lp-material__process-head {
  color: #535353;
}
.lp-material__process-head p {
  margin: 0;
  font-size: 22px;
  line-height: 1.6;
}
.lp-material__process-head p:nth-of-type(2) {
  margin-bottom: 2.5%;
}

.lp-material__mark {
  margin-right: 4px;
  font-weight: 400;
}

/* 강조되는 앞부분 */
.lp-material__label {
  font-weight: 700;
}

/* 뒤에 오는 값 */
.lp-material__value {
  font-weight: 400;
}

.lp-material__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: center;
}

/* 화살표는 CSS로(문자 깨짐 방지) */
.lp-material__step-arrow {
  display: none;
}

.lp-material__step {
  text-align: center;
  position: relative;
}

/* 각 step 사이 화살표(연결) */
.lp-material__step:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -11px;
  top: 50%;
  transform: translate(50%, -20%);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #36a562;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
  z-index: 1;
}

.lp-material__step:not(:last-child)::before {
  content: "";
  position: absolute;
  right: -12px;
  top: 51%;
  transform: translate(50%, -20%);
  width: 0;
  height: 0;
  border-left: 8px solid #fff;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  margin-left: 2px;
  z-index: 2;
}

.lp-material__step-img {
  background: #fff;
  padding: 0;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
}
.lp-material__step-img img {
  width: 100%;
  height: auto;
  display: block;
}

.lp-material__step-cap {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  padding: 10px 0;
  border-radius: 0;
  color: #fff;
}

.lp-material__step:nth-of-type(1) .lp-material__step-cap {
  background: #86a28c;
}

.lp-material__step:nth-of-type(2) .lp-material__step-cap {
  background: #5d8366;
}

.lp-material__step:nth-of-type(3) .lp-material__step-cap,
.lp-material__step:nth-of-type(4) .lp-material__step-cap {
  background: #356440;
}

/* BOTTOM */
.lp-material__bottom {
  background: #eef2ea;
  padding: 410px 0 0;
  overflow: hidden;
}

.lp-material__bottom-inner {
  position: relative;
  min-height: 360px;
  margin: 0 auto;
}

.lp-material__checklist {
  width: min(830px, 100%);
  margin-left: 14%;
}

.lp-material__checks {
  list-style: none;
  margin: 0;
  padding: 0;
}
.lp-material__checks li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 16px;
  margin-bottom: 18px;
  border: 2px solid #568c19;
  border-radius: 999px;
  color: #535353;
  font-size: 20px;
  line-height: 1.8;
}

.lp-material__check-icon {
  width: 33px;
  height: 33px;
  flex: 0 0 33px;
  border-radius: 50%;
  border: 2px solid #568c19;
  display: grid;
  place-items: center;
  color: #568c19;
  font-weight: 900;
  font-size: 16px;
  margin-top: 1px;
}

.lp-material__person {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(1080px, 48vw);
  pointer-events: none;
}
.lp-material__person img {
  width: 100%;
  height: auto;
}

/* Responsive */
@media (max-width: 980px) {
  .lp-material {
    padding: 60px 0 0;
  }
  .lp-material__top {
    padding: 0 0 600px;
  }
  .lp-material__top-inner {
    width: 100%;
    max-width: 720px;
  }
  .lp-material__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    width: 90%;
    margin: 0 auto;
  }
  .lp-material__title {
    text-align: left;
    font-size: 30px;
  }
  .lp-material__lead {
    font-size: 13px;
  }
  .lp-material__visual-wrap {
    width: 100%;
    margin-left: 0;
  }
  .lp-material__points {
    width: 90%;
    margin: 30px auto 0;
    gap: 10px;
  }
  .lp-material__bullets li {
    font-size: 13px;
    margin-top: 10px;
    text-indent: -15px;
    padding-left: 15px;
  }
  .lp-material__flow-box p {
    font-size: 13px;
  }
  .lp-material__process {
    margin-top: -10%;
  }
  .lp-material__process-head p {
    font-size: 14px;
  }
  .lp-material__steps {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .lp-material__step::before,
  .lp-material__step::after {
    display: none;
  }
  .lp-material__step-cap {
    font-size: 14px;
    padding: 5px 0;
  }
  .lp-material__bottom {
    padding: 530px 0 0;
  }
  .lp-material__person {
    position: relative;
    width: 100%;
    margin: 0;
    bottom: 0;
    right: 0;
  }
  .lp-material__checklist {
    margin: 0 auto;
    width: 90%;
  }
  .lp-material__checks li {
    border-radius: 18px;
    font-size: 12px;
    padding: 6px 8px;
  }
  .lp-material__check-icon {
    font-size: 10px;
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
  }
}
/* =================================================
   SEMINAR SECTION
 ================================================= */
.lp-seminar {
  position: relative;
}

.lp-seminar__bg {
  padding: 86px 0 86px;
  background: url("../img/seminar-bg.jpg") center/cover no-repeat;
  color: #fff;
}

.lp-seminar__inner {
  width: 80%;
  max-width: 1400px;
  margin: 0 auto;
}

.lp-seminar__grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 44px;
  align-items: start;
}

.lp-seminar__title {
  margin: 0;
  font-size: 42px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #fff;
}

.lp-seminar__intro {
  margin: 0 0 5%;
  font-size: 22px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.92);
}

/* flow: line + bullets */
.lp-seminar__flow {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 30px;
  align-items: start;
}

.lp-seminar__line {
  position: relative;
  width: 2px;
  height: 100%;
  margin: 6px auto 0;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 999px;
}
.lp-seminar__line::before, .lp-seminar__line::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 8px;
  height: 8px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
}
.lp-seminar__line::before {
  top: -6px;
}
.lp-seminar__line::after {
  bottom: -6px;
}

.lp-seminar__bullets {
  list-style: none;
  margin: 0;
  padding: 0;
}

.lp-seminar__item + .lp-seminar__item {
  margin-top: 22px;
}

.lp-seminar__headline {
  margin: 0 0 8px;
  font-size: 22px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.92);
}

.lp-seminar__desc {
  margin: 0;
  font-size: 22px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.85);
  padding-left: 25px;
}

/* 강조 분리(앞은 굵게, 뒤는 보통) */
.lp-seminar__mark {
  color: #c8ffb6;
  font-weight: 800;
  margin-right: 4px;
}

.lp-seminar__label {
  color: #c8ffb6;
  font-weight: 700;
}

.lp-seminar__value {
  color: #fff;
  font-weight: 400;
}

/* Responsive */
@media (max-width: 980px) {
  .lp-seminar__bg {
    padding: 60px 0;
  }
  .lp-seminar__inner {
    width: 90%;
    max-width: 720px;
    margin: 0 auto;
  }
  .lp-seminar__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .lp-seminar__title {
    text-align: left;
    font-size: 30px;
  }
  .lp-seminar__intro {
    font-size: 13px;
  }
  .lp-seminar__flow {
    gap: 10px;
  }
  .lp-seminar__headline,
  .lp-seminar__desc {
    font-size: 12.5px;
  }
  .lp-seminar__desc {
    padding-left: 15px;
  }
}
/* =================================================
   ENDING SECTION
   ================================================= */
.lp-ending {
  position: relative;
}

.lp-ending__bg {
  padding: 150px 0;
  background: url("../img/ending-bg.jpg") center/cover no-repeat;
  position: relative;
}
.lp-ending__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.18);
  pointer-events: none;
}

.lp-ending__inner {
  position: relative;
  width: 80%;
  margin: 0 auto;
}

.lp-ending__content {
  min-height: 170px;
  display: grid;
  place-items: center;
  text-align: center;
  gap: 18px;
}

.lp-ending__logo {
  display: inline-block;
}
.lp-ending__logo img {
  display: block;
  width: min(319px, 70vw);
  height: auto;
}

.lp-ending__copy {
  margin: 0;
  font-size: 28px;
  line-height: 1.8;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.92);
}

/* Responsive */
@media (max-width: 980px) {
  .lp-ending__bg {
    padding: 70px 0;
  }
  .lp-ending__inner {
    width: 92%;
  }
  .lp-ending__content {
    min-height: 150px;
    gap: 14px;
  }
  .lp-ending__logo img {
    width: min(339px, 50vw);
  }
  .lp-ending__copy {
    font-size: 15px;
    line-height: 1.3;
  }
}
/* =========================
   FOOTER
========================= */
.lp-footer {
  background: linear-gradient(90deg, #08331f, #0b4428);
  color: rgba(255, 255, 255, 0.88);
  padding: 36px 0;
}

.lp-footer__inner {
  width: min(1400px, 100% - 80px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 60px;
}

/* 로고 */
.lp-footer__brand {
  text-align: center;
}
.lp-footer__brand img {
  width: 237px;
  max-width: 100%;
  height: auto;
}

/* 컬럼 */
.lp-footer__col {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.4);
}
.lp-footer__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.lp-footer__col ul li.lp-footer__title, .lp-footer__col ul li.lp-footer__tel {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  padding: 0;
}
.lp-footer__col ul li:not(.lp-footer__title):not(.lp-footer__tel) {
  display: block;
  margin-top: 10px;
}

.lp-footer__title::after {
  content: " | ";
  margin: 0 10px;
  font-weight: 400;
}

.lp-footer__addr {
  font-style: normal;
  margin: 0;
}

/* =========================
   Responsive
========================= */
@media (max-width: 980px) {
  .lp-footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 26px;
    width: 80%;
  }
  .lp-footer__brand img {
    width: 160px;
  }
  .lp-footer__col {
    font-size: 13px;
    line-height: 1.3;
    text-align: left;
    letter-spacing: -0.02em;
  }
}
/* =================================================
   nav-bar
 ================================================= */
.nav-bar {
  position: fixed;
  top: 20%;
  right: 18px;
  z-index: 999;
}
.nav-bar ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.nav-bar .quick-btn {
  position: relative;
  height: 70px;
  width: 70px;
  display: block;
}
.nav-bar .quick-btn img {
  position: relative;
  z-index: 2;
  width: 70px;
  height: 70px;
  display: block;
  border-radius: 50%;
  background: #1f4a28;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}
.nav-bar .quick-label {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translate(10px, -50%);
  z-index: 1;
  height: 70px;
  display: flex;
  align-items: center;
  padding: 0 18px 0 22px;
  border-radius: 999px;
  background: #90754e;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.06em;
  white-space: nowrap;
  width: 0;
  opacity: 0;
  overflow: hidden;
  transition: width 0.35s ease, opacity 0.25s ease, transform 0.35s ease;
  pointer-events: none;
}
.nav-bar .quick-btn:hover .quick-label {
  width: 210px;
  opacity: 1;
  transform: translate(0, -50%);
}
.nav-bar .quick-btn:hover img {
  background: #90754e;
  box-shadow: none;
}