@charset "UTF-8";
@layer Reset, Header, Layout, Footer;
@layer Reset {
  @import url("https://cdn.jsdelivr.net/npm/pretendard@latest/dist/web/pretendard.css");
  * {
    box-sizing: border-box;
  }
  html, body {
    position: relative;
    font-size: 62.5%;
    font-family: "Pretendard";
    overflow-x: hidden;
  }
  /* Reset */
  html,
  body,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  div,
  p,
  blockquote,
  pre,
  code,
  address,
  ul,
  ol,
  li,
  nav,
  section,
  article,
  header,
  footer,
  main,
  aside,
  dl,
  dt,
  dd,
  table,
  thead,
  tbody,
  tfoot,
  label,
  caption,
  th,
  td,
  form,
  fieldset,
  legend,
  hr,
  input,
  button,
  textarea,
  object,
  figure,
  figcaption {
    margin: 0;
    padding: 0;
  }
  body,
  input,
  select,
  textarea,
  button,
  img,
  fieldset {
    border: none;
  }
  button, input, textarea, select {
    font-family: inherit; /* 부모 요소(html, body)에서 설정한 폰트 사용 */
  }
  img {
    width: 100%;
  }
  ul,
  ol,
  li {
    list-style: none;
  }
  table {
    width: 100%;
    border-spacing: 0;
    border-collapse: collapse;
    table-layout: fixed;
  }
  address,
  cite,
  code,
  em,
  i {
    font-style: normal;
    font-weight: normal;
  }
  label,
  img,
  input,
  select,
  textarea,
  button,
  a {
    vertical-align: middle;
  }
  u,
  ins,
  a {
    text-decoration: none;
  }
  button {
    cursor: pointer;
    background: transparent;
  }
  a {
    color: inherit;
  }
  /* Normalize */
  input[type=number]::-webkit-inner-spin-button,
  input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
  }
  input[type=number] {
    -moz-appearance: textfield;
  }
  input[type=number],
  input[type=text],
  input[type=password],
  input[type=url],
  input[type=email],
  input[type=tel],
  input[type=date],
  textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0;
    resize: none;
  }
  textarea:focus {
    outline: 2px solid #A6B9FF; /* 파란색 아웃라인 */
    border-color: #A6B9FF; /* 테두리 색상 변경 */
  }
  input[type=search]::-webkit-search-decoration,
  input[type=search]::-webkit-search-cancel-button,
  input[type=search]::-webkit-search-results-button,
  input[type=search]::-webkit-search-results-decoration {
    -webkit-appearance: none;
  }
  input[type=date] {
    position: relative;
  }
  input[type=date]::-webkit-clear-button,
  input[type=date]::-webkit-inner-spin-button {
    display: none;
  }
  input[type=date]::-webkit-calendar-picker-indicator {
    position: absolute;
    left: 0;
    top: 0;
    background: transparent;
    color: transparent;
    cursor: pointer;
    width: 100%;
    height: 100%;
  }
  input[type=date] {
    position: relative;
    width: 100px;
  }
  input[type=date]::before {
    content: attr(data-placeholder);
    width: 100%;
  }
  input[type=date]:valid::before {
    display: none;
  }
  input[type=time] {
    width: 100%;
    appearance: none; /* 브라우저 기본 스타일 제거 */
    -webkit-appearance: none;
    -moz-appearance: none;
  }
  input[readonly] {
    background-color: #f0f0f0; /* 배경색 변경 */
    color: #888; /* 글자 색상 변경 */
    border: 1px solid #ccc; /* 테두리 색상 변경 */
    cursor: not-allowed; /* 커서 변경 */
  }
  input:focus {
    outline: 2px solid #A6B9FF; /* 파란색 아웃라인 */
    border-color: #A6B9FF; /* 테두리 색상 변경 */
  }
  select {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
  }
  select:focus {
    outline: 2px solid #A6B9FF; /* 파란색 아웃라인 */
    border-color: #A6B9FF; /* 테두리 색상 변경 */
  }
  html {
    font-size: 62.5%;
    -webkit-text-size-adjust: none;
  }
  @media screen and (width < 1050px) {
    html {
      font-size: 52%;
    }
  }
  body {
    font-size: 1rem;
    /* 스크롤바 전체 스타일 */
    /* 스크롤바 트랙 (배경) */
    /* 스크롤바 핸들 (움직이는 부분) */
    /* 스크롤바 핸들에 마우스 오버 시 */
  }
  body::-webkit-scrollbar {
    width: 10px; /* 세로 스크롤바 너비 */
    height: 10px; /* 가로 스크롤바 높이 */
  }
  body::-webkit-scrollbar-track {
    background: #f1f1f1; /* 연한 회색 */
    border-radius: 4px;
  }
  body::-webkit-scrollbar-thumb {
    background: #134191; /* 중간 회색 */
    border-radius: 4px;
  }
  body::-webkit-scrollbar-thumb:hover {
    background: #09388B; /* 더 진한 회색 */
  }
  caption,
  legend,
  .a11y-hidden {
    overflow: hidden;
    display: block;
    position: absolute;
    border: 0;
    width: 1px;
    height: 1px;
    clip: rect(1px, 1px, 1px, 1px);
  }
  @media print {
    .header,
    .footer,
    .visual {
      display: none;
    }
    .page-break {
      page-break-before: always;
    }
  }
  @page {
    margin: 1cm 2cm;
  }
  .print {
    display: block;
  }
  @media screen {
    .print {
      display: none;
    }
  }
}
@layer Header {
  .header {
    height: 100px;
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
  }
  @media screen and (width < 768px) {
    .header {
      height: 60px;
    }
  }
  .header .inner {
    max-width: 1280px;
    height: 100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 158px 1fr 122px;
    align-items: center;
    padding: 0 20px;
  }
  @media screen and (width < 768px) {
    .header .inner {
      height: 60px;
      grid-template-columns: 158px 1fr 122px 25px;
    }
    .header .inner .btn-menu {
      margin-left: 10px;
      width: 25px;
      height: 25px;
      background: url(../images/ico_menu.svg) no-repeat center center/contain;
    }
    .header .inner .main-menu {
      position: absolute;
      top: 0;
      right: -100%;
      height: 100vh;
      background: white;
      z-index: 100;
      display: flex;
      flex-direction: column;
      width: 280px;
      padding: 60px 20px 0 20px !important;
      align-items: flex-start !important;
      justify-content: flex-start !important;
      box-shadow: 10px 5px 15px rgba(0, 0, 0, 0.3);
      transition: all 0.3s;
    }
    .header .inner .main-menu.active {
      right: 0;
    }
  }
  .header .inner .logo {
    display: block;
    width: 158px;
  }
  .header .inner .logo img {
    display: block;
    width: 100%;
  }
  @media screen and (width < 1050px) {
    .header .inner .logo img {
      width: 80%;
    }
  }
  @media screen and (width < 768px) {
    .header .inner .logo img {
      width: 60%;
    }
  }
  .header .inner .main-menu {
    display: flex;
    gap: 60px;
    justify-content: center;
  }
  @media screen and (width < 1050px) {
    .header .inner .main-menu {
      gap: 20px;
    }
  }
  .header .inner .main-menu li:nth-child(1) {
    display: none;
  }
  @media screen and (width < 768px) {
    .header .inner .main-menu li:nth-child(1) {
      display: block;
      position: absolute;
      top: 20px;
      right: 20px;
    }
  }
  .header .inner .main-menu li a {
    color: #1C1C1C;
    text-align: center;
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 150%;
  }
  @media screen and (width < 1050px) {
    .header .inner .main-menu li a {
      font-size: 2rem;
    }
  }
  .header .inner .header__member {
    display: flex;
    align-items: center;
    gap: 24px;
  }
  .header .inner .header__member li + li {
    position: relative;
    display: flex;
    align-items: center;
  }
  .header .inner .header__member li + li::before {
    position: absolute;
    top: 50%;
    left: -12px;
    transform: translateY(-50%);
    content: "";
    display: block;
    width: 1px;
    height: 20px;
    background: #767676;
  }
  .header .inner .header__member li a {
    color: #767676;
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
  }
  .header .inner .btn-close {
    width: 25px;
  }
  .layer {
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.3);
    width: 100%;
    height: 100%;
    z-index: 90;
  }
}
@layer Layout {
  .main {
    padding-top: 100px;
  }
  @media screen and (width < 768px) {
    .main {
      padding-top: 60px;
    }
  }
  .section1 .inner .banner {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: column;
    gap: 50px;
    width: 100%;
    aspect-ratio: 1/0.7286;
    -o-object-fit: contain;
       object-fit: contain;
    background: url(../images/main_banner.jpg) no-repeat center center/cover;
    padding-bottom: 170px;
  }
  @media screen and (width < 768px) {
    .section1 .inner .banner {
      padding-bottom: 100px;
      height: calc(100vh - 60px);
    }
  }
  .section1 .inner .banner .text {
    color: #FFF;
    text-align: center;
    text-shadow: 0 0 14px rgba(0, 0, 0, 0.7);
    font-size: 3.2rem;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: -0.48px;
  }
  @media screen and (width < 768px) {
    .section1 .inner .banner .text {
      font-size: 2rem;
    }
  }
  .section2 {
    padding-top: 200px;
    padding-bottom: 200px;
  }
  @media screen and (width < 768px) {
    .section2 {
      padding-top: 100px;
      padding-bottom: 100px;
    }
  }
  .section2 .inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
  }
  @media screen and (width < 768px) {
    .section2 .inner {
      display: block;
    }
  }
  .section2 .inner .txt-wrap .title {
    width: 363px;
  }
  @media screen and (width < 1050px) {
    .section2 .inner .txt-wrap .title {
      width: 181.5px;
    }
  }
  .section2 .inner .txt-wrap .desc {
    color: #363636;
    font-size: 3.4rem;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: -0.51px;
    margin-top: 32px;
  }
  @media screen and (width < 768px) {
    .section2 .inner .txt-wrap .desc {
      font-size: 2rem;
    }
  }
  .section2 .inner .txt-wrap .list {
    margin-top: 70px;
  }
  .section2 .inner .txt-wrap .list li {
    display: flex;
    gap: 24px;
  }
  @media screen and (width < 768px) {
    .section2 .inner .txt-wrap .list li {
      display: block;
    }
  }
  .section2 .inner .txt-wrap .list li:nth-child(2) {
    margin-left: 54px;
  }
  .section2 .inner .txt-wrap .list li + li {
    margin-top: 25px;
  }
  .section2 .inner .txt-wrap .list li .type1 {
    display: flex;
    width: 221px;
    padding: 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #FFF;
    font-family: "Gmarket Sans";
    font-size: 3rem;
    font-weight: 500;
    letter-spacing: -0.45px;
    border-radius: 20px;
    background: #00BEA5;
  }
  @media screen and (width < 1050px) {
    .section2 .inner .txt-wrap .list li .type1 {
      font-size: 2rem;
    }
  }
  .section2 .inner .txt-wrap .list li .type2 {
    display: flex;
    width: 360px;
    height: 78px;
    padding: 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 20px;
    border: 2px solid #E0E0E0;
    background: #FFF;
    color: #363636;
    font-size: 2.4rem;
    font-weight: 600;
    letter-spacing: -0.36px;
  }
  @media screen and (width < 1050px) {
    .section2 .inner .txt-wrap .list li .type2 {
      width: auto;
      font-size: 2rem;
    }
  }
  @media screen and (width < 768px) {
    .section2 .inner .txt-wrap .list li .type2 {
      margin-top: 10px;
    }
  }
  @media screen and (width < 768px) {
    .section2 .inner .txt-wrap .list li:nth-child(2) {
      margin-left: 0;
    }
    .section2 .inner .txt-wrap .list li + li {
      margin-top: 10px;
    }
    .section2 .inner .txt-wrap .list li .type1 {
      width: 100%;
    }
    .section2 .inner .txt-wrap .list li .type2 {
      width: 100%;
    }
  }
  @media screen and (width < 1050px) {
    .section2 .inner .img-wrap {
      display: none;
    }
  }
  .section3 .inner .bg {
    width: 100%;
    background: url(../images/bg_section3.png) no-repeat center center/cover;
    aspect-ratio: 1/0.78125;
    -o-object-fit: cover;
       object-fit: cover;
    padding: 0 20px;
  }
  .section3 .inner .bg .content {
    max-width: 1280px;
    margin: 0 auto;
    padding-top: 250px;
    padding-bottom: 250px;
  }
  @media screen and (width < 768px) {
    .section3 .inner .bg .content {
      padding-top: 100px;
      padding-bottom: 100px;
    }
  }
  .section3 .inner .bg .content .title {
    width: 590px;
  }
  @media screen and (width < 1050px) {
    .section3 .inner .bg .content .title {
      width: 295px;
    }
  }
  @media screen and (width < 768px) {
    .section3 .inner .bg .content .title {
      width: 90%;
    }
  }
  .section3 .inner .bg .content .desc {
    color: #363636;
    font-size: 3.4rem;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: -0.51px;
    margin-top: 32px;
  }
  @media screen and (width < 768px) {
    .section3 .inner .bg .content .desc {
      font-size: 2rem;
    }
  }
  .section3 .inner .bg .content .tab-list {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 36px;
    margin-top: 70px;
  }
  @media screen and (width < 1050px) {
    .section3 .inner .bg .content .tab-list {
      gap: 20px;
    }
  }
  @media screen and (width < 768px) {
    .section3 .inner .bg .content .tab-list {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  .section3 .inner .bg .content .tab-list li .btn-tab {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    height: 8.6rem;
    padding: 2rem;
    color: #363636;
    font-size: 2.4rem;
    font-weight: 600;
    background: #fff;
    border-radius: 20px;
    border: 2px solid #E0E0E0;
    background: #FFF url(../images/ico_check_off.svg) no-repeat right 20px top 50%/30px;
  }
  @media screen and (width < 1050px) {
    .section3 .inner .bg .content .tab-list li .btn-tab {
      font-size: 2rem;
      border-radius: 10px;
      padding: 1rem;
      height: 7rem;
      background: #FFF url(../images/ico_check_off.svg) no-repeat right 20px top 50%/20px;
    }
  }
  .section3 .inner .bg .content .tab-list li .btn-tab.active {
    border: 3.5px solid #00BEA5;
    background: #FFF url(../images/ico_check_on.svg) no-repeat right 20px top 50%/30px;
  }
  @media screen and (width < 1050px) {
    .section3 .inner .bg .content .tab-list li .btn-tab.active {
      background: #FFF url(../images/ico_check_on.svg) no-repeat right 20px top 50%/20px;
    }
  }
  .section3 .inner .bg .content .tab-list li .btn-tab img {
    width: 46px;
  }
  @media screen and (width < 1050px) {
    .section3 .inner .bg .content .tab-list li .btn-tab img {
      width: 20px;
    }
  }
  .section3 .inner .bg .content .tab-list li .desc2 {
    color: #767676;
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: -0.27px;
    margin-top: 8px;
  }
  .section4 {
    padding: 0 20px;
  }
  .section4 .inner .bg {
    width: 100%;
    background: url(../images/bg_section4.png) no-repeat center center/cover;
    aspect-ratio: 1/0.78125;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .section4 .inner .bg .content {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 250px;
    padding-bottom: 250px;
    max-width: 1280px;
    margin: 0 auto;
  }
  @media screen and (width < 768px) {
    .section4 .inner .bg .content {
      padding-top: 100px;
      padding-bottom: 100px;
      display: block;
    }
  }
  .section4 .inner .bg .content .title {
    width: 590px;
  }
  @media screen and (width < 1330px) {
    .section4 .inner .bg .content .title {
      width: 100%;
    }
  }
  .section4 .inner .bg .content .desc {
    color: #363636;
    font-size: 3.4rem;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: -0.51px;
    margin-top: 32px;
  }
  @media screen and (width < 1050px) {
    .section4 .inner .bg .content .desc {
      font-size: 3rem;
    }
  }
  @media screen and (width < 768px) {
    .section4 .inner .bg .content .desc {
      font-size: 2rem;
    }
  }
  .section4 .inner .bg .content .list {
    margin-top: 70px;
  }
  .section4 .inner .bg .content .list li {
    display: flex;
    height: 78px;
    padding: 20px;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    border: 2px solid #E0E0E0;
    background: #FFF;
  }
  .section4 .inner .bg .content .list li + li {
    margin-top: 25px;
  }
  .section4 .inner .bg .content .list li p {
    color: #363636;
    font-size: 2.6rem;
    font-weight: 600;
    letter-spacing: -0.39px;
  }
  @media screen and (width < 1050px) {
    .section4 .inner .bg .content .list li p {
      font-size: 2rem;
    }
  }
  .section4 .inner .bg .content .list li span {
    color: #00BEA5;
    font-size: 2.6rem;
    font-weight: 700;
    letter-spacing: -0.39px;
  }
  @media screen and (width < 1050px) {
    .section4 .inner .bg .content .list li span {
      font-size: 2rem;
    }
  }
  .section4 .inner .bg .content .img-phone-wrap {
    position: relative;
    width: 100%;
    height: 820px;
    padding: 20px;
  }
  @media screen and (width < 1330px) {
    .section4 .inner .bg .content .img-phone-wrap {
      width: 400px;
      height: 500px;
    }
  }
  @media screen and (width < 768px) {
    .section4 .inner .bg .content .img-phone-wrap {
      margin: 0 auto;
      width: 250px;
      height: 600px;
    }
  }
  .section4 .inner .bg .content .img-phone-wrap .img-mockup {
    position: relative;
    z-index: 2;
    display: block;
    width: 500px;
    margin: 0 auto;
  }
  @media screen and (width < 1330px) {
    .section4 .inner .bg .content .img-phone-wrap .img-mockup {
      width: 400px;
    }
  }
  @media screen and (width < 768px) {
    .section4 .inner .bg .content .img-phone-wrap .img-mockup {
      width: 250px;
      margin-left: -20px;
    }
  }
  .section4 .inner .bg .content .img-phone-wrap .img-phone {
    position: absolute;
    top: 42px;
    left: 3px;
    z-index: 1;
    display: block;
    width: 100%;
    height: 826px;
    margin-top: 40px;
  }
  @media screen and (width < 1330px) {
    .section4 .inner .bg .content .img-phone-wrap .img-phone {
      width: 80%;
      height: 676px;
      left: 50%;
      transform: translateX(-50%);
      margin-top: 20px;
      margin-left: 20px;
    }
  }
  @media screen and (width < 768px) {
    .section4 .inner .bg .content .img-phone-wrap .img-phone {
      height: 406px;
      margin-left: 0px;
    }
  }
  .section4 .inner .bg .content .img-phone-wrap .overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 57%;
    height: 105%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3); /* 반투명 레이어 */
    pointer-events: none; /* 클릭 안 막고 싶으면 */
    margin-top: 90px;
  }
  @media screen and (width < 1330px) {
    .section4 .inner .bg .content .img-phone-wrap .overlay {
      margin-top: 142px;
      width: 48%;
      min-width: 325px;
      height: 140%;
      border-radius: 50px;
      margin-left: 20px;
    }
  }
  @media screen and (width < 768px) {
    .section4 .inner .bg .content .img-phone-wrap .overlay {
      margin-top: -35px;
      min-width: 200px;
      height: 435px;
      border-radius: 20px;
      margin-left: -4px;
    }
  }
  .section4 .inner .bg .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-top: 55px;
    z-index: 90;
    width: 104px;
    height: 104px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    pointer-events: auto;
  }
  @media screen and (width < 1330px) {
    .section4 .inner .bg .play-btn {
      top: 70%;
      left: 55%;
    }
  }
  @media screen and (width < 768px) {
    .section4 .inner .bg .play-btn {
      top: 28%;
      left: 40%;
      transform: translate(0, 0);
      width: 52px;
      height: 52px;
    }
  }
  .section5 {
    padding: 0 20px;
  }
  .section5 .inner .content {
    max-width: 1280px;
    margin: 0 auto;
    padding-top: 250px;
    padding-bottom: 250px;
  }
  @media screen and (width < 768px) {
    .section5 .inner .content {
      padding-top: 60vw;
      padding-bottom: 100px;
    }
  }
  .section5 .inner .content .title-wrap {
    display: flex;
    align-items: center;
    gap: 38px;
    margin-bottom: 50px;
  }
  .section5 .inner .content .title-wrap .title-img {
    width: 492px;
  }
  @media screen and (width < 1050px) {
    .section5 .inner .content .title-wrap {
      display: block;
      position: relative;
    }
    .section5 .inner .content .title-wrap .title-img {
      position: absolute;
      top: -150px;
      right: 0;
      width: 50%;
      z-index: -1;
    }
  }
  @media screen and (width < 768px) {
    .section5 .inner .content .title-wrap .title-img {
      width: 50%;
      left: -5vw;
      top: -45vw;
    }
  }
  .section5 .inner .content .title {
    width: 601px;
  }
  @media screen and (width < 1050px) {
    .section5 .inner .content .title {
      width: 300px;
    }
  }
  @media screen and (width < 768px) {
    .section5 .inner .content .title {
      width: 90%;
    }
  }
  .section5 .inner .content .desc {
    color: #363636;
    font-size: 3.4rem;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: -0.51px;
    margin-top: 32px;
  }
  @media screen and (width < 1050px) {
    .section5 .inner .content .desc {
      font-size: 3rem;
    }
  }
  @media screen and (width < 768px) {
    .section5 .inner .content .desc {
      font-size: 2rem;
    }
  }
  .section5 .inner .content .list {
    display: flex;
    gap: 14px;
    justify-content: center;
  }
  @media screen and (width < 768px) {
    .section5 .inner .content .list {
      display: none;
    }
  }
  .section5 .inner .content .list .element-wrap {
    display: flex;
    gap: 18px;
    padding: 7px;
    border-radius: 24px;
  }
  .section5 .inner .content .list .element-wrap.orange {
    background: #FFF4EC;
  }
  .section5 .inner .content .list .element-wrap.purple {
    background: #F3F0FF;
  }
  .section5 .inner .content .list .element.w170 {
    width: 170px;
  }
  @media screen and (width < 1300px) {
    .section5 .inner .content .list .element.w170 {
      width: 100px;
    }
  }
  .section5 .inner .content .list .element.w227 {
    width: 250px;
  }
  @media screen and (width < 1300px) {
    .section5 .inner .content .list .element.w227 {
      width: 180px;
    }
  }
  .section5 .inner .content .list .element .category {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: Pretendard;
    font-size: 26px;
    font-weight: 700;
    line-height: 135%;
    letter-spacing: -0.39px;
    border-radius: 20px;
    background: #00BEA5;
    padding: 20px;
  }
  @media screen and (width < 1300px) {
    .section5 .inner .content .list .element .category {
      font-size: 1.6rem;
    }
  }
  .section5 .inner .content .list .element .sub-list.fz16 li {
    font-size: 16px;
  }
  .section5 .inner .content .list .element .sub-list.fz20 li {
    font-size: 20px;
  }
  @media screen and (width < 1300px) {
    .section5 .inner .content .list .element .sub-list.fz16 li {
      font-size: 1.2rem;
    }
    .section5 .inner .content .list .element .sub-list.fz20 li {
      font-size: 1.6rem;
    }
  }
  .section5 .inner .content .list .element .sub-list li {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 104px;
    padding: 20px;
    border-radius: 20px;
    border: 2px solid #E0E0E0;
    background: #FFF;
    color: #363636;
    font-family: Pretendard;
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 135%;
    letter-spacing: -0.36px;
    margin-top: 16px;
  }
  @media screen and (width < 1300px) {
    .section5 .inner .content .list .element .sub-list li {
      height: 80px;
      font-size: 1.6rem;
    }
  }
  .section5 .inner .content .list .ico-exchange {
    width: 56px;
  }
  @media screen and (width < 1300px) {
    .section5 .inner .content .list .ico-exchange {
      width: 20px;
    }
  }
  .section5 .inner .content .list-mo-wrap {
    display: none;
  }
  .section5 .inner .content .list-mo-wrap + .list-mo-wrap {
    margin-top: 36px;
  }
  @media screen and (width < 768px) {
    .section5 .inner .content .list-mo-wrap {
      display: block;
    }
  }
  .section5 .inner .content .list-mo-wrap .title {
    width: 100%;
    color: #363636;
    text-align: center;
    font-family: Pretendard;
    font-size: 14px;
    font-weight: 700;
    line-height: 135%;
    letter-spacing: -0.21px;
    margin-bottom: 10px;
  }
  .section5 .inner .content .list-mo-wrap .list-mo {
    padding: 8px;
    border-radius: 12px;
  }
  .section5 .inner .content .list-mo-wrap .list-mo.orange {
    background: #FFF4EC;
  }
  .section5 .inner .content .list-mo-wrap .list-mo.purple {
    background: #F3F0FF;
  }
  .section5 .inner .content .list-mo-wrap .list-mo.type2 {
    margin-top: 9px;
  }
  .section5 .inner .content .list-mo-wrap .list-mo.type2 li {
    grid-template-columns: repeat(1, 1fr);
  }
  .section5 .inner .content .list-mo-wrap .list-mo li {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .section5 .inner .content .list-mo-wrap .list-mo li + li {
    margin-top: 9px;
  }
  .section5 .inner .content .list-mo-wrap .list-mo li .category {
    border-radius: 8px;
    background: #00BEA5;
    padding: 5.5px 5px;
    color: #fff;
    text-align: center;
    font-family: Pretendard;
    font-size: 14px;
    font-weight: 700;
    line-height: 135%;
    letter-spacing: -0.21px;
  }
  .section5 .inner .content .list-mo-wrap .list-mo li .info {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    border: 2px solid #E0E0E0;
    background: #fff;
    padding: 9px 5px;
    height: 60px;
    color: var(--neutral-Color-neutral800, #363636);
    text-align: center;
    font-family: Pretendard;
    font-size: 12px;
    font-weight: 600;
    line-height: 135%;
    letter-spacing: -0.18px;
    margin-top: 6px;
  }
  .section5 .inner .content .list-mo-wrap .list-mo li .info.fz10 {
    font-size: 10px;
  }
  .section5 .inner .content .list-mo-wrap .list-mo li .info.fz11 {
    font-size: 11px;
  }
  .section5 .inner .content .list-mo-wrap:nth-child(2) {
    background: red;
  }
  .section5 .inner .content .list-mo-wrap .ico-exchange2 {
    display: block;
    width: 26px;
    margin: 9px auto 0 auto;
  }
  .section6 .inner {
    background: #F0FFFD;
    padding-top: 250px;
    padding-bottom: 250px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .section6 .inner .title-wrap {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
  }
  .section6 .inner .title-wrap > div {
    position: relative;
    z-index: 1;
  }
  .section6 .inner .title-wrap .title {
    width: 434px;
  }
  @media screen and (width < 1050px) {
    .section6 .inner .title-wrap .title {
      width: 217px;
    }
  }
  .section6 .inner .title-wrap .desc {
    color: #363636;
    font-size: 3.4rem;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: -0.51px;
    margin-top: 32px;
  }
  @media screen and (width < 1050px) {
    .section6 .inner .title-wrap .desc {
      font-size: 3rem;
    }
  }
  @media screen and (width < 768px) {
    .section6 .inner .title-wrap .desc {
      font-size: 2rem;
    }
  }
  .section6 .inner .title-wrap .title-img {
    position: absolute;
    top: 50%;
    right: -160px;
    transform: translateY(-50%);
    width: 538px;
  }
  @media screen and (width < 1050px) {
    .section6 .inner .title-wrap .title-img {
      z-index: 0;
    }
  }
  .section6 .inner .content .list {
    display: flex;
    justify-content: center;
    width: 120%;
    flex-wrap: nowrap;
    gap: 100px;
    margin-top: 95px;
    margin-left: -10%;
  }
  .section6 .inner .content .list li .desc {
    color: #363636;
    text-align: center;
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 135%;
    letter-spacing: -0.36px;
    text-align: center;
    margin-bottom: 42px;
  }
  @media screen and (width < 768px) {
    .section6 .inner .content .list li .desc {
      font-size: 2rem;
    }
  }
  @media screen and (width < 1050px) {
    .section6 .inner .content .list li img {
      display: block;
      width: 100%;
      margin: 0 auto;
    }
  }
  .section7 .inner {
    aspect-ratio: 1/0.625;
    -o-object-fit: cover;
       object-fit: cover;
    background: url(../images/bg_section7.jpg) no-repeat center center/cover;
  }
  .section7 .inner .content {
    padding-top: 138px;
    padding-bottom: 138px;
  }
  .section7 .inner .content .title {
    display: block;
    width: 650px;
    margin: 0 auto;
  }
  @media screen and (width < 1050px) {
    .section7 .inner .content .title {
      width: 325px;
    }
  }
  @media screen and (width < 768px) {
    .section7 .inner .content .title {
      width: 90%;
      margin-left: 10px;
      margin-right: 10px;
    }
  }
  .section7 .inner .content .qr {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 auto;
    margin-top: 70px;
  }
  .section7 .inner .content .qr .qr-img {
    width: 172px;
    margin: 0 auto;
  }
  .section7 .inner .content .qr .qr-img img {
    display: block;
    width: 100%;
  }
  .section7 .inner .content .qr .desc {
    color: #1C1C1C;
    text-align: center;
    font-size: 3.4rem;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: -0.51px;
  }
  @media screen and (width < 1050px) {
    .section7 .inner .content .qr .desc {
      font-size: 3rem;
    }
  }
  @media screen and (width < 768px) {
    .section7 .inner .content .qr .desc {
      font-size: 2rem;
    }
  }
  .section7 .inner .content .btn-wrap {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 70px;
  }
  .section7 .inner .content .produce-info {
    margin-top: 70px;
  }
  .section7 .inner .content .produce-info li {
    color: #767676;
    text-align: center;
    font-size: 2.6rem;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: -0.39px;
  }
  @media screen and (width < 1050px) {
    .section7 .inner .content .produce-info li {
      font-size: 2rem;
    }
  }
  .slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
  }
  @media screen and (max-width: 768px) {
    .slider-container {
      display: none;
    }
  }
  .slider-wrap {
    display: flex;
    transition: transform 0.5s ease-in-out;
    margin-top: 70px;
  }
  .slider-wrap li {
    width: 100%;
    flex: 0 0 100%;
  }
  .slider-container-mobile {
    display: none;
    width: 100%;
    overflow: hidden;
    position: relative;
  }
  @media screen and (max-width: 768px) {
    .slider-container-mobile {
      display: block;
    }
  }
  .slider-wrap-mobile {
    display: none;
    transition: transform 0.5s ease-in-out;
    margin-top: 70px;
  }
  .slider-wrap-mobile li {
    width: 100%;
    flex: 0 0 100%;
  }
  @media screen and (max-width: 768px) {
    .slider-wrap-mobile {
      display: flex;
    }
  }
  .store-badges {
    display: flex;
    gap: 50px; /* 버튼 간 간격 */
    align-items: center;
    justify-content: center; /* 정렬 방식은 필요에 따라 변경 */
    padding: 8px; /* 주변 여백(필요시 조정) */
  }
  @media screen and (width < 768px) {
    .store-badges {
      flex-direction: column;
      gap: 10px;
    }
    .store-badges a {
      width: 50%;
      height: auto;
    }
    .store-badges a img {
      width: 100%;
    }
  }
  .store-badges img {
    height: 64px; /* 원하는 공통 높이로 맞춤 (예: 48px, 64px 등) */
    width: auto; /* 비율 유지 */
    display: block;
  }
  @media screen and (width < 768px) {
    .store-badges img {
      height: auto;
    }
  }
  .mt70 {
    margin-top: 70px;
  }
}
@layer Footer {
  .footer .inner {
    padding-top: 60px;
    padding-bottom: 60px;
    padding-left: 30px;
    padding-right: 20px;
    background: #767676;
  }
  @media screen and (width < 1050px) {
    .footer .inner {
      padding-left: 20px;
      padding-right: 20px;
    }
  }
  @media screen and (width < 768px) {
    .footer .inner {
      padding-top: 20px;
      padding-bottom: 30px;
    }
  }
  .footer .inner .content {
    max-width: 1280px;
    margin: 0 auto;
  }
  .footer .inner .content .footer__row1 {
    display: flex;
    gap: 31px;
  }
  .footer .inner .content .footer__row1 li {
    display: flex;
    align-items: center;
    color: #EAEAEA;
    font-size: 14px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: -0.21px;
  }
  .footer .inner .content .footer__row1 li .span {
    font-size: 12px;
    font-weight: 500;
    padding-left: 8px;
  }
  .footer .inner .content .footer__row1 li + li {
    position: relative;
  }
  .footer .inner .content .footer__row1 li + li::before {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    left: -14px;
    transform: translateY(-50%);
    width: 1px;
    height: 8px;
    background: #EAEAEA;
  }
  @media screen and (width < 768px) {
    .footer .inner .content .footer__row1 {
      display: block;
    }
    .footer .inner .content .footer__row1 li {
      flex-direction: column;
      align-items: flex-start;
    }
    .footer .inner .content .footer__row1 li .span {
      padding-left: 0;
    }
    .footer .inner .content .footer__row1 li + li::before {
      display: none;
    }
  }
  .footer .inner .content .footer__row2 .list1 {
    display: flex;
    gap: 31px;
    align-items: center;
    margin-top: 45px;
  }
  .footer .inner .content .footer__row2 .list1 li {
    color: #EAEAEA;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -0.21px;
  }
  .footer .inner .content .footer__row2 .list1 li + li {
    font-size: 12px;
    font-weight: 500;
    position: relative;
  }
  .footer .inner .content .footer__row2 .list1 li + li::before {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    left: -14px;
    transform: translateY(-50%);
    width: 1px;
    height: 8px;
    background: #EAEAEA;
  }
  @media screen and (width < 768px) {
    .footer .inner .content .footer__row2 .list1 {
      display: block;
      margin-top: 20px;
    }
    .footer .inner .content .footer__row2 .list1 li + li {
      margin-top: 4px;
    }
    .footer .inner .content .footer__row2 .list1 li + li::before {
      display: none;
    }
  }
  .footer .inner .content .footer__row2 .list2 {
    display: flex;
    gap: 31px;
    align-items: center;
    margin-top: 14px;
  }
  .footer .inner .content .footer__row2 .list2 li {
    color: #EAEAEA;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: -0.21px;
  }
  .footer .inner .content .footer__row2 .list2 li + li {
    position: relative;
  }
  .footer .inner .content .footer__row2 .list2 li + li::before {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    left: -14px;
    transform: translateY(-50%);
    width: 1px;
    height: 8px;
    background: #EAEAEA;
  }
  @media screen and (width < 768px) {
    .footer .inner .content .footer__row2 .list2 {
      display: block;
    }
    .footer .inner .content .footer__row2 .list2 li + li {
      margin-top: 4px;
    }
    .footer .inner .content .footer__row2 .list2 li + li::before {
      display: none;
    }
  }
  .footer .inner .content .copyright {
    color: #EAEAEA;
    font-size: 12px;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: -0.18px;
    margin-top: 45px;
  }
  @media screen and (width < 768px) {
    .footer .inner .content .copyright {
      margin-top: 20px;
    }
  }
}/*# sourceMappingURL=main.css.map */