/* default.css */
@charset "UTF-8";
/* color set */
/* AEM site chrome (~10) 위 캠페인 루트 */
/* 레이어 열림 시 캠페인 루트 */
/* body 포털 토스트 — 레이어($layer-z-index) 바로 위, 컨테이너 스택 안 */
/* rem */
/* vw - vw(픽셀, 기준값). 기준값 생략 시 1920 */
/* media Query */
/* line-height: %·px 등 단위 있으면 그대로, 숫자만이면 10 이상은 px→rem, 미만은 배율 */
/* font */
/* img */
/* img */
/* btn */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

body,
html {
  overflow-x: clip;
}

html.is-scroll-locked,
body.is-scroll-locked {
  overflow: hidden;
  overscroll-behavior: none;
}

body.is-scroll-locked {
  padding-right: var(--layer-lock-scrollbar-gap, 0);
}

.lifesgood-container {
  width: 100%;
  margin: 0 auto;
  background-color: #f0ece4;
  overflow-x: clip;
  position: relative;
  z-index: 11;
}
.lifesgood-container.is-layer-stack-active {
  z-index: 100;
}
.lifesgood-container__content {
  position: relative;
  z-index: 2;
  background-color: #f0ece4;
}
.lifesgood-container .inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media all and (min-width: 1480px) {
  .lifesgood-container .inner {
    padding: 0;
  }
}
.lifesgood-container .heading {
  font-family: "LGEI Headline", sans-serif;
}
.lifesgood-container * {
  scrollbar-width: auto;
}
.lifesgood-container *::-webkit-scrollbar {
  background: rgba(0, 0, 0, 0.05); /* 스크롤바 뒷 배경 색상 */
  width: 0.375rem; /* 세로 스크롤바 두께 */
  height: 0.375rem; /* 가로 스크롤바 두께 */
}
.lifesgood-container *::-webkit-scrollbar-track {
  border-radius: 999px;
}
.lifesgood-container *::-webkit-scrollbar-thumb {
  background: #646464; /* 스크롤바 막대 색상 */
  border-radius: 999px;
}
.lifesgood-container sup {
  top: 0;
  font-size: 60%;
  vertical-align: super;
}

.only-pc {
  display: none;
}
.only-tab {
  display: none;
}
.only-mo {
  display: block;
}
@media all and (min-width: 768px) {
  .only-mo {
    display: none;
  }
  .only-tab {
    display: block;
  }
  .only-pc {
    display: none;
  }
}
@media all and (min-width: 1480px) {
  .only-pc {
    display: block;
  }
  .only-tab {
    display: none;
  }
  .only-mo {
    display: none;
  }
}

.hidden-mo {
  display: none;
}
@media all and (min-width: 768px) {
  .hidden-mo {
    display: block;
  }
}
.hidden-ta {
  display: block;
}
@media all and (min-width: 768px) {
  .hidden-ta {
    display: none;
  }
}
@media all and (min-width: 1480px) {
  .hidden-ta {
    display: block;
  }
}
.hidden-pc {
  display: block;
}
@media all and (min-width: 1480px) {
  .hidden-pc {
    display: none;
  }
}

.lifesgood-slider-controls {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.875rem;
  margin-block-start: 1rem;
}
@media all and (min-width: 1480px) {
  .lifesgood-slider-controls {
    width: auto;
    gap: 0.5rem;
    margin-block-start: unset;
  }
}
.lifesgood-slider-controls .slider-prev,
.lifesgood-slider-controls .slider-next {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border: none;
  background-color: transparent;
  cursor: pointer;
  transition: opacity 0.3s, background-color 0.3s, border-color 0.3s;
}
.lifesgood-slider-controls .slider-prev::after,
.lifesgood-slider-controls .slider-next::after {
  content: "";
  display: block;
  width: 2.25rem;
  height: 2.25rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: icon("nav-mo");
}
@media all and (min-width: 1480px) {
  .lifesgood-slider-controls .slider-prev,
  .lifesgood-slider-controls .slider-next {
    width: 2.75rem;
    height: 2.75rem;
    background-color: rgba(255, 255, 255, 0.3);
    border: 1px solid #646464;
    border-radius: 50%;
  }
  .lifesgood-slider-controls .slider-prev::after,
  .lifesgood-slider-controls .slider-next::after {
    background-image: icon("nav");
    width: 1.5rem;
    height: 1.5rem;
  }
}
.lifesgood-slider-controls .slider-prev:disabled, .lifesgood-slider-controls .slider-prev.swiper-button-disabled,
.lifesgood-slider-controls .slider-next:disabled,
.lifesgood-slider-controls .slider-next.swiper-button-disabled {
  cursor: not-allowed;
  pointer-events: none;
}
.lifesgood-slider-controls .slider-prev:disabled::after, .lifesgood-slider-controls .slider-prev.swiper-button-disabled::after,
.lifesgood-slider-controls .slider-next:disabled::after,
.lifesgood-slider-controls .slider-next.swiper-button-disabled::after {
  background-image: icon("nav-mo-disabled");
}
@media all and (min-width: 1480px) {
  .lifesgood-slider-controls .slider-prev:disabled, .lifesgood-slider-controls .slider-prev.swiper-button-disabled,
  .lifesgood-slider-controls .slider-next:disabled,
  .lifesgood-slider-controls .slider-next.swiper-button-disabled {
    border-color: #cbc8c2;
  }
  .lifesgood-slider-controls .slider-prev:disabled::after, .lifesgood-slider-controls .slider-prev.swiper-button-disabled::after,
  .lifesgood-slider-controls .slider-next:disabled::after,
  .lifesgood-slider-controls .slider-next.swiper-button-disabled::after {
    background-image: icon("nav-disabled");
  }
}
.lifesgood-slider-controls .slider-prev {
  transform: rotate(180deg);
}
.lifesgood-slider-controls .slider-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 400;
  color: #333;
  pointer-events: none;
}
.lifesgood-slider-controls .slider-pagination .swiper-pagination-current,
.lifesgood-slider-controls .slider-pagination .swiper-pagination-total {
  min-width: 0.625rem;
}
@media all and (min-width: 1480px) {
  .lifesgood-slider-controls .slider-pagination {
    display: none;
  }
}
.lifesgood-slider-controls .slider-pagination.swiper-pagination-fraction {
  position: static;
  width: auto;
  gap: 0.25rem;
}

.lifesgood-share-toast {
  position: fixed;
  left: 50%;
  bottom: 1.5rem;
  z-index: 110;
  max-width: calc(100% - 2rem);
  margin: 0;
  padding: 0.75rem 1.5rem;
  border-radius: 62.4375rem;
  background-color: #646464;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(0.5rem);
  font-size: 0.875rem;
  line-height: 1.125rem;
  font-weight: 600;
  color: #fff;
}
@media all and (min-width: 768px) {
  .lifesgood-share-toast {
    bottom: 2.5rem;
    font-size: 1rem;
    line-height: 1.25rem;
    font-weight: 600;
    color: #fff;
  }
}
.lifesgood-share-toast.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* share-result.css */
@charset "UTF-8";
/* color set */
/* AEM site chrome (~10) 위 캠페인 루트 */
/* 레이어 열림 시 캠페인 루트 */
/* body 포털 토스트 — 레이어($layer-z-index) 바로 위, 컨테이너 스택 안 */
/* rem */
/* vw - vw(픽셀, 기준값). 기준값 생략 시 1920 */
/* media Query */
/* line-height: %·px 등 단위 있으면 그대로, 숫자만이면 10 이상은 px→rem, 미만은 배율 */
/* font */
/* img */
/* img */
/* btn */
.share-result {
  position: fixed;
  inset: 0;
  z-index: 100;
  width: 100%;
  height: 100vh;
  height: 100dvh;
}
.share-result[hidden] {
  display: none;
}
.share-result__backdrop {
  display: none;
}
@media all and (min-width: 768px) {
  .share-result__backdrop {
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
  }
}
.share-result__dialog {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow-y: auto;
  overflow-x: hidden;
  padding-block-end: 1.5rem;
  background-color: #f0ece4;
}
@media all and (min-width: 768px) {
  .share-result__dialog {
    width: calc(100% - 2rem);
    height: 39.75rem;
    max-width: 83.375rem;
    max-height: calc(100dvh - 10rem);
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 1rem;
    padding-block: 0;
  }
}
.share-result__header {
  width: 100%;
  display: flex;
  padding: 1.5rem 1rem;
  position: sticky;
  top: 0;
  background-color: #f0ece4;
}
@media all and (min-width: 768px) {
  .share-result__header {
    width: 0;
    height: 0;
    margin: 0;
    padding: 0;
    z-index: 2;
  }
}
.share-result__close {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 1.5rem;
  height: 1.5rem;
  margin-inline-start: auto;
}
@media all and (min-width: 768px) {
  .share-result__close {
    position: fixed;
    top: 2rem;
    right: 2rem;
  }
}
.share-result__close-icon {
  display: block;
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  object-fit: contain;
}
.share-result__content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media all and (min-width: 768px) {
  .share-result__content-wrapper {
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    flex-direction: row;
    align-items: stretch;
  }
}
.share-result__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-inline: 1rem;
}
@media all and (min-width: 768px) {
  .share-result__content {
    width: 50%;
    height: 100%;
    padding-inline: 0;
    flex-shrink: 0;
  }
}
.share-result__persona-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
  border-radius: 1.25rem;
  padding: 1.5rem 1rem;
}
@media all and (min-width: 768px) {
  .share-result__persona-card {
    width: 100%;
    height: 100%;
    border-radius: 0;
    padding: 2rem 1.5rem;
  }
}
@media all and (min-width: 1480px) {
  .share-result__persona-card {
    padding: 2.5rem;
  }
}
.share-result__persona-card-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 0.5rem;
}
@media all and (min-width: 768px) {
  .share-result__persona-card-header {
    padding-inline: 0;
  }
}
.share-result__persona-card-header-logo img {
  display: block;
  width: 3.125rem;
  height: auto;
}
.share-result__persona-card-header-slogan img {
  display: block;
  width: 5.125rem;
  height: auto;
}
.share-result__persona-card-body {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media all and (min-width: 768px) {
  .share-result__persona-card-body {
    max-width: 26.25rem;
    margin: 0 auto;
  }
}
.share-result__persona-card-body-image {
  width: 100%;
  aspect-ratio: 1;
  max-width: 17.5rem;
  align-content: 1;
}
@media all and (min-width: 768px) {
  .share-result__persona-card-body-image {
    width: 56%;
  }
}
.share-result__persona-card-body-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.share-result__persona-card-body-title {
  font-size: 1.5rem;
  line-height: 1.75rem;
  font-weight: 800;
  color: #287D00;
  letter-spacing: 1.44px;
  margin-block-end: 0.5rem;
}
@media all and (min-width: 768px) {
  .share-result__persona-card-body-title {
    font-size: 1.5rem;
    line-height: 1.75rem;
    font-weight: 800;
    color: #287D00;
    letter-spacing: 1.44px;
  }
}
.share-result__persona-card-body-description {
  font-size: 1rem;
  line-height: 1.25rem;
  font-weight: 600;
  color: #737373;
  margin-block-end: 1rem;
  text-align: center;
}
.share-result__persona-card-body-disclaimer {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  width: 100%;
  margin-block-start: 1.5rem;
  text-align: left;
}
@media all and (min-width: 768px) {
  .share-result__persona-card-body-disclaimer {
    margin-block-start: 2rem;
  }
}
.share-result__persona-card-body-disclaimer p {
  font-size: 0.875rem;
  line-height: 1rem;
  color: #737373;
  display: flex;
  gap: 0.5rem;
}
.share-result__persona-card-body-disclaimer p::before {
  content: "*";
  padding-block-start: 0.125rem;
  display: flex;
}
.share-result__extra {
  width: 100%;
  flex: 1;
  min-height: 0;
}
@media all and (min-width: 768px) {
  .share-result__extra {
    width: 50%;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
  }
}
.share-result__extra-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  height: 100%;
  padding: 3rem 2.5rem;
  margin-block-start: 1.5rem;
}
@media all and (min-width: 768px) {
  .share-result__extra-inner {
    gap: 0;
    padding: 0;
    padding-inline: 1.5rem;
    margin-block-start: 0;
    margin-inline: auto;
    width: 100%;
    max-width: 31.25rem;
  }
}
.share-result__extra-title {
  text-align: center;
  font-size: 1.5rem;
  line-height: 1.75rem;
  font-weight: 600;
}
@media all and (min-width: 768px) {
  .share-result__extra-title {
    font-size: 2rem;
    line-height: 2.25rem;
    font-weight: 550;
    margin-block-start: 3rem;
  }
}
.share-result__extra-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  line-height: 100%;
  font-weight: 600;
  width: fit-content;
  height: 2.25rem;
  border-radius: 6.25rem;
  padding: 0 1rem;
  background: #fff;
  border: 1px solid #646464;
  color: #000;
}
.share-result__extra-cta:hover, .share-result__extra-cta:active {
  border: none;
  background: #EA1917;
  color: #fff;
  text-decoration: none;
}
@media all and (min-width: 1480px) {
  .share-result__extra-cta {
    font-size: 1rem;
    height: 2.75rem;
    padding: 0 1.25rem;
  }
}
.share-result__extra-cta {
  font-size: 1rem;
  line-height: 1.25rem;
  font-weight: 600;
}
@media all and (min-width: 768px) {
  .share-result__extra-cta {
    margin-block-start: 2rem;
  }
}
.share-result__persona-fan {
  flex-shrink: 0;
  width: 77.7777777778vw;
  display: flex;
  justify-content: center;
}
@media all and (min-width: 768px) {
  .share-result__persona-fan {
    width: min(100%, 22.8645833333vw);
  }
}
.share-result__persona-fan-track {
  position: relative;
}
.share-result__persona-fan-item {
  position: absolute;
  padding: 1.125rem 0.3125rem;
  background-color: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 0 0.6635rem rgba(0, 0, 0, 0.1);
  overflow: hidden;
  cursor: pointer;
}
@media all and (min-width: 768px) {
  .share-result__persona-fan-item {
    padding: 1.75rem 0.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
  }
}
.share-result__persona-fan-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* result.css */
@charset "UTF-8";
/* color set */
/* AEM site chrome (~10) 위 캠페인 루트 */
/* 레이어 열림 시 캠페인 루트 */
/* body 포털 토스트 — 레이어($layer-z-index) 바로 위, 컨테이너 스택 안 */
/* rem */
/* vw - vw(픽셀, 기준값). 기준값 생략 시 1920 */
/* media Query */
/* line-height: %·px 등 단위 있으면 그대로, 숫자만이면 10 이상은 px→rem, 미만은 배율 */
/* font */
/* img */
/* img */
/* btn */
.mental-load-result {
  position: fixed;
  inset: 0;
  z-index: 100;
  width: 100%;
  height: 100vh;
  height: 100dvh;
}
.mental-load-result[hidden] {
  display: none;
}
.mental-load-result__backdrop {
  display: none;
}
@media all and (min-width: 768px) {
  .mental-load-result__backdrop {
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
  }
}
.mental-load-result__dialog {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow-y: auto;
  overflow-x: hidden;
  padding-block-end: 1.5rem;
  background-color: #f0ece4;
}
@media all and (min-width: 768px) {
  .mental-load-result__dialog {
    width: calc(100% - 2rem);
    height: 39.75rem;
    max-width: 83.375rem;
    max-height: calc(100dvh - 10rem);
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 1rem;
    padding-block: 0;
  }
}
@media all and (min-width: 768px) {
  .mental-load-result__dialog--has-product-disclaimer {
    height: 44.375rem;
  }
}
.mental-load-result__header {
  width: 100%;
  display: flex;
  padding: 1.5rem 1rem;
  position: sticky;
  top: 0;
  z-index: 2;
  background-color: #f0ece4;
}
@media all and (min-width: 768px) {
  .mental-load-result__header {
    width: 0;
    height: 0;
    margin: 0;
    padding: 0;
    z-index: 2;
  }
}
.mental-load-result__close {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 1.5rem;
  height: 1.5rem;
  margin-inline-start: auto;
}
@media all and (min-width: 768px) {
  .mental-load-result__close {
    position: fixed;
    top: 2rem;
    right: 2rem;
  }
}
.mental-load-result__close-icon {
  display: block;
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  object-fit: contain;
}
.mental-load-result__content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media all and (min-width: 768px) {
  .mental-load-result__content-wrapper {
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    flex-direction: row;
    align-items: stretch;
  }
}
@media all and (min-width: 768px) {
  .mental-load-result__content-wrapper.no-product {
    justify-content: center;
    background: #fff;
  }
}
.mental-load-result__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-inline: 1rem;
}
@media all and (min-width: 768px) {
  .mental-load-result__content {
    width: 40%;
    height: 100%;
    max-width: 31.25rem;
    padding-inline: 0;
    flex-shrink: 0;
  }
}
@media all and (min-width: 768px) {
  .no-product .mental-load-result__content {
    width: 100%;
  }
}
.mental-load-result__persona-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
  border-radius: 1.25rem;
  padding: 1.5rem 1rem;
}
@media all and (min-width: 768px) {
  .mental-load-result__persona-card {
    width: 100%;
    height: 100%;
    border-radius: 0;
    padding: 2rem 1.5rem;
  }
}
@media all and (min-width: 1480px) {
  .mental-load-result__persona-card {
    padding: 2.5rem;
  }
}
.mental-load-result__persona-card-capture-area {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.mental-load-result__persona-card-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 0.5rem;
}
@media all and (min-width: 768px) {
  .mental-load-result__persona-card-header {
    padding-inline: 0;
  }
}
.mental-load-result__persona-card-header-logo img {
  display: block;
  width: 3.125rem;
  height: auto;
}
.mental-load-result__persona-card-header-slogan img {
  display: block;
  width: 5.125rem;
  height: auto;
}
.mental-load-result__persona-card-body-image {
  width: 100%;
  aspect-ratio: 1;
  max-width: 17.5rem;
  align-content: 1;
}
@media all and (min-width: 768px) {
  .mental-load-result__persona-card-body-image {
    width: 56%;
  }
}
.mental-load-result__persona-card-body-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mental-load-result__persona-card-body-title {
  font-size: 1.5rem;
  line-height: 1.75rem;
  font-weight: 800;
  color: #287D00;
  letter-spacing: 1.44px;
  text-align: center;
  margin-block-end: 0.5rem;
}
@media all and (min-width: 768px) {
  .mental-load-result__persona-card-body-title {
    font-size: 1.5rem;
    line-height: 1.75rem;
    font-weight: 800;
    color: #287D00;
    letter-spacing: 1.44px;
  }
}
.mental-load-result__persona-card-body-description {
  font-size: 1rem;
  line-height: 1.25rem;
  font-weight: 600;
  color: #737373;
  margin-block-end: 1rem;
  text-align: center;
}
.mental-load-result__persona-card-body-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-block-end: 1.5rem;
}
.mental-load-result__persona-card-body-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  object-fit: contain;
  background-color: #fff;
  border-radius: 62.4375rem;
  border: 0.75px solid #E1E2E5;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
  padding: 0.375rem;
  cursor: pointer;
}
.mental-load-result__persona-card-body-cta-btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.mental-load-result__persona-card-body-cta-btn:active, .mental-load-result__persona-card-body-cta-btn:hover {
  background-color: #EA1917;
  border-color: #EA1917;
}
.mental-load-result__persona-card-body-cta-btn:active img, .mental-load-result__persona-card-body-cta-btn:hover img {
  filter: brightness(0) invert(1);
}
.mental-load-result__persona-card-body-disclaimer {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  width: 100%;
  text-align: left;
}
.mental-load-result__persona-card-body-disclaimer p {
  font-size: 0.875rem;
  line-height: 1rem;
  color: #737373;
  display: flex;
  gap: 0.5rem;
}
.mental-load-result__persona-card-body-disclaimer p::before {
  content: "*";
  padding-block-start: 0.125rem;
  display: flex;
}
.mental-load-result__product-section-wrapper {
  width: 100%;
}
@media all and (min-width: 768px) {
  .mental-load-result__product-section-wrapper {
    height: 100%;
    overflow-y: auto;
  }
}
.mental-load-result__product-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-block-start: 1.5rem;
}
@media all and (min-width: 768px) {
  .mental-load-result__product-section {
    width: 100%;
    height: 100%;
    max-width: 40.25rem;
    margin: 0;
    margin-inline: auto;
    padding-block-start: 5rem;
    padding-inline: 1rem;
  }
}
.mental-load-result__product-section-title {
  width: 100%;
  font-size: 1.5rem;
  line-height: 1.75rem;
  font-weight: 600;
  padding-inline: 1rem;
}
@media all and (min-width: 768px) {
  .mental-load-result__product-section-title {
    padding-inline: 0;
  }
}
.mental-load-result__product-section-products {
  width: 100%;
  margin-block-start: 1.5rem;
}
@media all and (min-width: 768px) {
  .mental-load-result__product-section-products {
    margin-block-start: 2rem;
    padding-block-end: 2.5rem;
  }
}
.mental-load-result__product-section-products .mental-load-result__product-slider {
  padding-inline: 1rem;
  overflow: hidden;
}
@media all and (min-width: 768px) {
  .mental-load-result__product-section-products .mental-load-result__product-slider {
    width: 100%;
    padding-inline: 0;
  }
}
.mental-load-result__product-section-products .mental-load-result__product-slider .swiper-wrapper {
  align-items: stretch;
}
.mental-load-result__product-section-products .mental-load-result__product-slider .swiper-slide {
  height: auto;
}
.mental-load-result__product-section-products .mental-load-result__product-pagination {
  position: static;
  width: 100%;
  margin-block-start: 1rem;
  text-align: center;
}
.mental-load-result__product-section-products .mental-load-result__product-pagination .swiper-pagination-bullet {
  width: 0.75rem;
  height: 0.75rem;
  background-color: #d9d9d9;
  opacity: 1;
  border-radius: 62.4375rem;
}
.mental-load-result__product-section-products .mental-load-result__product-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #000;
}
.mental-load-result__product-section-products .mental-load-result__product-section-disclaimer {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-block-start: 1rem;
  padding-inline: 1rem;
}
@media all and (min-width: 768px) {
  .mental-load-result__product-section-products .mental-load-result__product-section-disclaimer {
    padding-inline: 0;
  }
}
.mental-load-result__product-section-products .mental-load-result__product-section-disclaimer p {
  font-size: 0.875rem;
  line-height: 1rem;
  color: #737373;
  display: flex;
  gap: 0.5rem;
}
.mental-load-result__product-section-products .mental-load-result__product-section-disclaimer p::before {
  content: "*";
  flex-shrink: 0;
}
.mental-load-result__product-section-products-slide {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  height: auto;
}
.mental-load-result__product-section-products-item {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-radius: 1.25rem;
  padding: 1.5rem 1.25rem;
}
@media all and (min-width: 768px) {
  .mental-load-result__product-section-products-item {
    height: auto;
    flex-direction: row;
    align-items: flex-start;
    padding: 1rem 1.25rem;
  }
}
.mental-load-result__product-section-products-item-image {
  width: 8.875rem;
  aspect-ratio: 1;
  margin-block-end: 0.75rem;
  margin-inline: auto;
}
@media all and (min-width: 768px) {
  .mental-load-result__product-section-products-item-image {
    width: 9.375rem;
    aspect-ratio: 1;
    margin-block-end: 0;
    margin-inline-end: 0.75rem;
  }
}
.mental-load-result__product-section-products-item-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.mental-load-result__product-section-products-item-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}
.mental-load-result__product-section-products-item-title {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 1rem;
  line-height: 1.25rem;
  font-weight: 800;
  margin-block-end: 0.5rem;
}
.mental-load-result__product-section-products-item-title-text {
  min-width: 0;
}
.mental-load-result__product-section-products-item-title-ai-logo {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  object-fit: contain;
}
.mental-load-result__product-section-products-item-description {
  font-size: 1rem;
  line-height: 1.25rem;
  color: #333;
  margin-block-end: 1rem;
}
.mental-load-result__product-section-products-item-cta {
  font-size: 1rem;
  line-height: 1rem;
  font-weight: 600;
}

/* mental-load.css */
@charset "UTF-8";
/* color set */
/* AEM site chrome (~10) 위 캠페인 루트 */
/* 레이어 열림 시 캠페인 루트 */
/* body 포털 토스트 — 레이어($layer-z-index) 바로 위, 컨테이너 스택 안 */
/* rem */
/* vw - vw(픽셀, 기준값). 기준값 생략 시 1920 */
/* media Query */
/* line-height: %·px 등 단위 있으면 그대로, 숫자만이면 10 이상은 px→rem, 미만은 배율 */
/* font */
/* img */
/* img */
/* btn */
.mental-load {
  position: fixed;
  inset: 0;
  z-index: 100;
  width: 100%;
  height: 100vh;
  height: 100dvh;
}
.mental-load[hidden] {
  display: none;
}
.mental-load__icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.mental-load__backdrop {
  display: none;
}
@media all and (min-width: 768px) {
  .mental-load__backdrop {
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
  }
}
.mental-load__dialog {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 1.5rem 1rem;
  background-color: #f0ece4;
}
@media all and (min-width: 768px) {
  .mental-load__dialog {
    width: calc(100% - 2rem);
    height: auto;
    max-width: 83.375rem;
    min-height: 37.5rem;
    max-height: calc(100dvh - 10rem);
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 1rem;
    padding-block: 5rem;
  }
}
.mental-load__header {
  width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 1.5rem;
  margin-block-end: 1.5rem;
}
@media all and (min-width: 768px) {
  .mental-load__header {
    max-width: 57.5rem;
    margin-inline: auto;
  }
}
.mental-load__back {
  display: flex;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  cursor: pointer;
}
.mental-load__back[hidden] {
  display: none;
}
@media all and (min-width: 768px) {
  .mental-load__back {
    width: auto;
    height: 2.5rem;
    padding-inline: 0.5rem 1rem;
    gap: 0.125rem;
    border: 1px solid #000;
    border-radius: 62.4375rem;
  }
}
.mental-load__back-label {
  display: none;
}
@media all and (min-width: 768px) {
  .mental-load__back-label {
    display: block;
    font-size: 1rem;
    line-height: 1.25rem;
    font-weight: 550;
  }
}
.mental-load__progress {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
}
@media all and (min-width: 768px) {
  .mental-load__progress {
    width: auto;
    padding-inline: 1rem;
    margin-inline-start: auto;
  }
}
.mental-load__progress-label {
  font-size: 1rem;
  line-height: 1.25rem;
  font-weight: 600;
}
.mental-load__progress-bar {
  width: 100%;
  height: 0.375rem;
  background-color: rgba(0, 0, 0, 0.15);
  border-radius: 62.4375rem;
  overflow: hidden;
  position: relative;
}
.mental-load__progress-fill {
  display: block;
  width: 0;
  height: 100%;
  background-color: #EA1917;
  border-radius: 62.4375rem;
  position: absolute;
  top: 0;
  left: 0;
}
.mental-load__close {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 1.5rem;
  height: 1.5rem;
  margin-inline-start: auto;
}
@media all and (min-width: 768px) {
  .mental-load__close {
    position: absolute;
    top: 2rem;
    right: 2rem;
  }
}
.mental-load__back-icon, .mental-load__close-icon {
  display: block;
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  object-fit: contain;
}
.mental-load__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media all and (min-width: 768px) {
  .mental-load__content {
    max-width: 57.5rem;
    margin-inline: auto;
  }
}
.mental-load__question-number {
  font-size: 1.125rem;
  line-height: 1.375rem;
  font-weight: 800;
  color: #EA1917;
  letter-spacing: 1.08px;
  margin-block-end: 0.5rem;
}
@media all and (min-width: 768px) {
  .mental-load__question-number {
    font-size: 1.75rem;
    line-height: 2.25rem;
    font-weight: 800;
    color: #EA1917;
    letter-spacing: 1.68px;
    margin-block-end: 1rem;
  }
}
.mental-load__title {
  font-size: 1.25rem;
  line-height: 1.5rem;
  font-weight: 600;
  margin-block-end: 1.5rem;
}
@media all and (min-width: 768px) {
  .mental-load__title {
    font-size: 2.5rem;
    line-height: 2.75rem;
    font-weight: 600;
    margin-block-end: 2rem;
  }
}
.mental-load__options {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
}
@media all and (min-width: 768px) {
  .mental-load__options {
    align-items: stretch;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 0.75rem;
  }
}
.mental-load__option {
  width: 100%;
  min-height: 3.625rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.125rem;
  padding: 0.5rem;
  border: 1px solid transparent;
  border-radius: 62.4375rem;
  background-color: #fff;
  cursor: pointer;
}
@media all and (min-width: 768px) {
  .mental-load__option {
    width: calc((100% - 0.75rem) / 2);
    padding: 1rem 1.5rem;
    flex-direction: row;
    gap: 0.625rem;
    flex-shrink: 0;
  }
}
@media all and (min-width: 768px) and (min-width: 1480px) {
  .mental-load__option {
    width: calc((100% - 2.25rem) / 4);
  }
  .mental-load__options--choice .mental-load__option {
    width: calc((100% - 0.75rem) / 2);
  }
}
.mental-load__option:hover:not(.is-selected), .mental-load__option:focus-visible:not(.is-selected) {
  border-color: #EA1917;
  background-color: #fff;
}
.mental-load__option:hover:not(.is-selected) .mental-load__option-icon, .mental-load__option:focus-visible:not(.is-selected) .mental-load__option-icon {
  color: #EA1917;
}
.mental-load__option:hover:not(.is-selected) .mental-load__option-label, .mental-load__option:focus-visible:not(.is-selected) .mental-load__option-label {
  color: #000;
}
.mental-load__option.is-selected {
  background-color: #EA1917;
  border-color: #EA1917;
}
.mental-load__option.is-selected .mental-load__option-icon {
  color: #fff;
}
.mental-load__option.is-selected .mental-load__option-label {
  color: #fff;
}
.mental-load__option-icon {
  display: block;
  flex-shrink: 0;
  width: 0.875rem;
  height: 0.875rem;
  color: #cbc8c2;
}
@media all and (min-width: 768px) {
  .mental-load__option-icon {
    width: 1.5rem;
    height: 1.5rem;
  }
}
.mental-load__option-label {
  font-size: 1rem;
  line-height: 1.25rem;
  font-weight: 600;
}
@media all and (min-width: 768px) {
  .mental-load__option-label {
    font-size: 1.25rem;
    line-height: 1.5rem;
    font-weight: 600;
  }
}
.mental-load__disclaimer {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  width: 100%;
  margin-block-start: 1.5rem;
  text-align: left;
}
@media all and (min-width: 768px) {
  .mental-load__disclaimer {
    margin-block-start: 2rem;
  }
}
.mental-load__disclaimer p {
  font-size: 0.875rem;
  line-height: 1rem;
  color: #737373;
  display: flex;
  gap: 0.5rem;
}
.mental-load__disclaimer p::before {
  content: "*";
  padding-block-start: 0.125rem;
  display: flex;
}
.mental-load__disclaimer p a {
  color: inherit;
  text-decoration: underline;
}
.mental-load__disclaimer p a:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

/* video-layer.css */
@charset "UTF-8";
/* color set */
/* AEM site chrome (~10) 위 캠페인 루트 */
/* 레이어 열림 시 캠페인 루트 */
/* body 포털 토스트 — 레이어($layer-z-index) 바로 위, 컨테이너 스택 안 */
/* rem */
/* vw - vw(픽셀, 기준값). 기준값 생략 시 1920 */
/* media Query */
/* line-height: %·px 등 단위 있으면 그대로, 숫자만이면 10 이상은 px→rem, 미만은 배율 */
/* font */
/* img */
/* img */
/* btn */
.video-layer {
  --video-layer-close-size: 1.5rem;
  --video-layer-close-gap: 0.5rem;
  --video-layer-pad-block: 0.625rem;
  --video-layer-pad-inline: 0.625rem;
  --video-layer-max-h: calc(
    100dvh - var(--video-layer-pad-block) * 2 - var(--video-layer-close-size) - var(--video-layer-close-gap)
  );
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--video-layer-pad-block) var(--video-layer-pad-inline);
}
@media all and (min-width: 768px) {
  .video-layer {
    --video-layer-close-size: 2.5rem;
    --video-layer-close-gap: 0.75rem;
    --video-layer-pad-block: 2.5rem;
    --video-layer-pad-inline: 2.5rem;
  }
}
.video-layer[hidden] {
  display: none;
}
.video-layer__backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.85);
}
.video-layer__dialog {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  max-width: 80rem;
  max-height: 100%;
}
.video-layer__close {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: var(--video-layer-close-size);
  height: var(--video-layer-close-size);
  margin-block-end: var(--video-layer-close-gap);
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.video-layer__close:focus-visible {
  outline: 0.125rem solid #fff;
  outline-offset: 0.125rem;
}
.video-layer__close-icon {
  display: block;
  width: 100%;
  height: 100%;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.video-layer__media {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-height: var(--video-layer-max-h);
  background-color: #000;
}
.video-layer__video, .video-layer__iframe {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: var(--video-layer-max-h);
  margin: 0 auto;
  border: 0;
}
.video-layer__video {
  object-fit: contain;
  object-position: center;
}
.video-layer__iframe {
  width: 100%;
  aspect-ratio: 16/9;
  height: auto;
  max-height: var(--video-layer-max-h);
}

/* scroll-down.css */
@charset "UTF-8";
/* color set */
/* AEM site chrome (~10) 위 캠페인 루트 */
/* 레이어 열림 시 캠페인 루트 */
/* body 포털 토스트 — 레이어($layer-z-index) 바로 위, 컨테이너 스택 안 */
/* rem */
/* vw - vw(픽셀, 기준값). 기준값 생략 시 1920 */
/* media Query */
/* line-height: %·px 등 단위 있으면 그대로, 숫자만이면 10 이상은 px→rem, 미만은 배율 */
/* font */
/* img */
/* img */
/* btn */
.lifesgood-scroll-down {
  position: fixed;
  z-index: 5;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
  pointer-events: none;
}
@media all and (min-width: 768px) {
  .lifesgood-scroll-down {
    bottom: 3.5rem;
  }
}
.lifesgood-scroll-down__icon {
  position: relative;
  width: 1.875rem;
  height: 3.875rem;
}
@media all and (min-width: 768px) {
  .lifesgood-scroll-down__icon {
    width: 2.125rem;
    height: 4.125rem;
  }
}
.lifesgood-scroll-down__svg {
  display: block;
  width: 100%;
  height: 100%;
}
.lifesgood-scroll-down__line {
  opacity: 0.55;
}
.lifesgood-scroll-down__dot {
  position: absolute;
  left: 50%;
  top: 21.2121212121%;
  width: 0.2205882353rem;
  height: 0.2205882353rem;
  margin-left: -0.1102941176rem;
  border-radius: 50%;
  background-color: #fff;
}
@media all and (min-width: 768px) {
  .lifesgood-scroll-down__dot {
    width: 0.25rem;
    height: 0.25rem;
    margin-left: -0.125rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lifesgood-scroll-down__line {
    opacity: 1;
  }
}

/* diagnostic-cta.css */
@charset "UTF-8";
/* color set */
/* AEM site chrome (~10) 위 캠페인 루트 */
/* 레이어 열림 시 캠페인 루트 */
/* body 포털 토스트 — 레이어($layer-z-index) 바로 위, 컨테이너 스택 안 */
/* rem */
/* vw - vw(픽셀, 기준값). 기준값 생략 시 1920 */
/* media Query */
/* line-height: %·px 등 단위 있으면 그대로, 숫자만이면 10 이상은 px→rem, 미만은 배율 */
/* font */
/* img */
/* img */
/* btn */
.lifesgood-diagnostic-cta {
  width: 100%;
}
@media all and (min-width: 768px) {
  .lifesgood-diagnostic-cta {
    padding: 3.75rem 1.5rem;
  }
}
@media all and (min-width: 1480px) {
  .lifesgood-diagnostic-cta {
    padding: 6rem 0;
  }
}
.lifesgood-diagnostic-cta__banner {
  width: 100%;
  background: #FCF9F6;
  display: flex;
  flex-direction: column-reverse;
  gap: 1.5rem;
  padding: 3rem 1rem 4.5rem;
}
@media all and (min-width: 768px) {
  .lifesgood-diagnostic-cta__banner {
    max-width: 90rem;
    margin-inline: auto;
    border-radius: 1.5rem;
    flex-direction: row;
    align-items: center;
    padding: 3.75rem 2.5rem;
    gap: 2rem;
  }
}
@media all and (min-width: 1280px) {
  .lifesgood-diagnostic-cta__banner {
    padding: 3.75rem 5rem;
    gap: 7.5rem;
  }
}
@media all and (min-width: 1480px) {
  .lifesgood-diagnostic-cta__banner {
    border-radius: 2.25rem;
    padding: 5.3125rem 6rem;
    gap: 10.5rem;
  }
}
.lifesgood-diagnostic-cta__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media all and (min-width: 768px) {
  .lifesgood-diagnostic-cta__content {
    align-items: flex-start;
  }
}
.lifesgood-diagnostic-cta__content-title {
  font-size: 1.5rem;
  line-height: 1.5rem;
  font-weight: 550;
  text-align: center;
}
@media all and (min-width: 768px) {
  .lifesgood-diagnostic-cta__content-title {
    text-align: left;
  }
}
@media all and (min-width: 1480px) {
  .lifesgood-diagnostic-cta__content-title {
    font-size: 2.5rem;
    line-height: 2.75rem;
    font-weight: 550;
  }
}
.lifesgood-diagnostic-cta__content-description {
  font-size: 1rem;
  line-height: 1.25rem;
  margin-block-start: 0.625rem;
  text-align: center;
}
@media all and (min-width: 768px) {
  .lifesgood-diagnostic-cta__content-description {
    text-align: left;
  }
}
@media all and (min-width: 1480px) {
  .lifesgood-diagnostic-cta__content-description {
    font-size: 1.25rem;
    line-height: 1.5rem;
    margin-block-start: 0.75rem;
  }
}
.lifesgood-diagnostic-cta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  line-height: 100%;
  font-weight: 600;
  width: fit-content;
  height: 2.25rem;
  border-radius: 6.25rem;
  padding: 0 1rem;
  background: #fff;
  border: 1px solid #646464;
  color: #000;
}
.lifesgood-diagnostic-cta__btn:hover, .lifesgood-diagnostic-cta__btn:active {
  border: none;
  background: #EA1917;
  color: #fff;
  text-decoration: none;
}
@media all and (min-width: 1480px) {
  .lifesgood-diagnostic-cta__btn {
    font-size: 1rem;
    height: 2.75rem;
    padding: 0 1.25rem;
  }
}
.lifesgood-diagnostic-cta__btn {
  margin-block-start: 1rem;
}
@media all and (min-width: 1480px) {
  .lifesgood-diagnostic-cta__btn {
    margin-block-start: 1.5rem;
  }
}
.lifesgood-diagnostic-cta__btn-icon {
  width: 1rem;
  height: 1rem;
  filter: brightness(0);
}
.lifesgood-diagnostic-cta__btn:hover .lifesgood-diagnostic-cta__btn-icon, .lifesgood-diagnostic-cta__btn:active .lifesgood-diagnostic-cta__btn-icon, .lifesgood-diagnostic-cta__btn:focus-visible .lifesgood-diagnostic-cta__btn-icon {
  filter: brightness(0) invert(1);
}
.lifesgood-diagnostic-cta__media {
  width: 100%;
  max-width: 30rem;
  margin-inline: auto;
}
.lifesgood-diagnostic-cta__media-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.lifesgood-diagnostic-cta__disclaimer {
  font-size: 0.875rem;
  line-height: 1rem;
  color: #878580;
  padding: 1.5rem 1rem;
  margin-inline: auto;
  max-width: 90rem;
}
@media all and (min-width: 768px) {
  .lifesgood-diagnostic-cta__disclaimer {
    font-size: 1rem;
    line-height: 1.25rem;
    color: #878580;
    padding: 1rem 1.5rem 0;
  }
}

/* overview.css */
@charset "UTF-8";
/* color set */
/* AEM site chrome (~10) 위 캠페인 루트 */
/* 레이어 열림 시 캠페인 루트 */
/* body 포털 토스트 — 레이어($layer-z-index) 바로 위, 컨테이너 스택 안 */
/* rem */
/* vw - vw(픽셀, 기준값). 기준값 생략 시 1920 */
/* media Query */
/* line-height: %·px 등 단위 있으면 그대로, 숫자만이면 10 이상은 px→rem, 미만은 배율 */
/* font */
/* img */
/* img */
/* btn */
.lifesgood-overview {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-block: 5rem;
  background: url("/content/dam/channel/wcms/au/lifes-good-campaign/2026/lg-com/strategic/assets/image/lifes-good-campaign-2026-lg-com-strategic-assets-image-main-kv-m.jpg") no-repeat center center/cover;
}
@media all and (min-width: 768px) {
  .lifesgood-overview {
    padding-block: 7.5rem;
    background: url("/content/dam/channel/wcms/au/lifes-good-campaign/2026/lg-com/strategic/assets/image/lifes-good-campaign-2026-lg-com-strategic-assets-image-main-kv-d.jpg") no-repeat center center/cover;
  }
}
.lifesgood-overview .inner {
  position: relative;
  z-index: 2;
  padding-inline: 1.375rem;
}
.lifesgood-overview__bg {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(30px);
}
.lifesgood-overview__body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
  width: 100%;
  max-width: 62.5rem;
  margin-inline: auto;
  text-align: center;
}
@media all and (min-width: 768px) {
  .lifesgood-overview__body {
    gap: 1.75rem;
  }
}
.lifesgood-overview__text, .lifesgood-overview__logo {
  visibility: hidden;
}
.lifesgood-overview__text {
  font-size: 1rem;
  line-height: 1.25rem;
  color: #fff;
}
@media all and (min-width: 768px) {
  .lifesgood-overview__text {
    font-size: 1.5rem;
    line-height: 1.75rem;
    color: #fff;
  }
}
.lifesgood-overview__logo {
  display: flex;
  width: 6.25rem;
  margin-inline: auto;
  margin-block-start: 3rem;
}
@media all and (min-width: 768px) {
  .lifesgood-overview__logo {
    width: 11.25rem;
    margin-block-start: 5.25rem;
  }
}

/* hero.css */
@charset "UTF-8";
/* color set */
/* AEM site chrome (~10) 위 캠페인 루트 */
/* 레이어 열림 시 캠페인 루트 */
/* body 포털 토스트 — 레이어($layer-z-index) 바로 위, 컨테이너 스택 안 */
/* rem */
/* vw - vw(픽셀, 기준값). 기준값 생략 시 1920 */
/* media Query */
/* line-height: %·px 등 단위 있으면 그대로, 숫자만이면 10 이상은 px→rem, 미만은 배율 */
/* font */
/* img */
/* img */
/* btn */
.lifesgood-hero {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
}
.lifesgood-hero__kv {
  position: relative;
  width: 100%;
  height: 100%;
}
.lifesgood-hero__kv video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lifesgood-hero__kv-toggle {
  position: absolute;
  z-index: 3;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 1.5rem;
  height: 1.5rem;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
@media all and (min-width: 768px) {
  .lifesgood-hero__kv-toggle {
    right: 5.75rem;
    bottom: 4.5rem;
    width: 3rem;
    height: 3rem;
  }
}
.lifesgood-hero__kv-toggle:focus-visible {
  outline: 0.125rem solid #fff;
  outline-offset: 0.125rem;
}
.lifesgood-hero__kv-icon-pause, .lifesgood-hero__kv-icon-play {
  display: flex;
  width: 100%;
  height: 100%;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.lifesgood-hero__kv-icon-play {
  display: none;
}
.lifesgood-hero__kv-toggle.is-paused .lifesgood-hero__kv-icon-pause {
  display: none;
}
.lifesgood-hero__kv-toggle.is-paused .lifesgood-hero__kv-icon-play {
  display: flex;
}
.lifesgood-hero__kv-poster {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.lifesgood-hero__kv-poster[hidden] {
  display: none;
}
.lifesgood-hero__kv-poster-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lifesgood-hero__content {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}
.lifesgood-hero__content-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 100%;
  pointer-events: auto;
}
.lifesgood-hero__content-title, .lifesgood-hero__content-btn {
  visibility: hidden;
}
.lifesgood-hero__content-title {
  font-size: 2rem;
  line-height: 2.25rem;
  font-weight: 550;
  color: #fff;
  margin-block-end: 1.5rem;
}
@media all and (min-width: 768px) {
  .lifesgood-hero__content-title {
    font-size: 5rem;
    line-height: 5rem;
    margin-block-end: 3.5rem;
  }
}
.lifesgood-hero__content-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  line-height: 100%;
  font-weight: 600;
  width: fit-content;
  height: 2.25rem;
  border-radius: 6.25rem;
  padding: 0 1rem;
  background: #EA1917;
  color: #fff;
}
.lifesgood-hero__content-btn:hover, .lifesgood-hero__content-btn:active {
  border: 1px solid #646464;
  background: #fff;
  color: #000;
  text-decoration: none;
}
@media all and (min-width: 1480px) {
  .lifesgood-hero__content-btn {
    font-size: 1rem;
    height: 2.75rem;
    padding: 0 1.25rem;
  }
}