@charset "utf-8";

/* ==========================================================================
    공통 스타일 시트 탬플릿
   ========================================================================== */

/* ==========================================================================
    Table of Contents
   --------------------------------------------------------------------------
    00. Reset / Base
    01. Root
    02. Common
    03. Utility
    04. Decoration
    05. Interactive-inner
    06. Header
    07. Navigation
    08. Layout
    09. Component
    10. Menu
    11. Main
    12. Footer
    13. Etc
   ========================================================================== */

/* ==========================================================================
    사용된 폰트 종류
   --------------------------------------------------------------------------
    메인 : 프리텐다드 Pretendard
    타이틀 : 머니그라피 Moneygraghy
   ========================================================================== */

@font-face {
    font-family: 'Moneygraphy';
    src: url('../font/Moneygraphy-Rounded.woff2') format('woff2'),
         url('../font/Moneygraphy-Rounded.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Pretendard';
    font-weight: 100;
    src: url('../font/Pretendard-Thin.woff2') format('woff2');
    font-display: swap;
}

@font-face {
    font-family: 'Pretendard';
    font-weight: 200;
    src: url('../font/Pretendard-ExtraLight.woff2') format('woff2');
    font-display: swap;
}

@font-face {
    font-family: 'Pretendard';
    font-weight: 300;
    src: url('../font/Pretendard-Light.woff2') format('woff2');
    font-display: swap;
}

@font-face {
    font-family: 'Pretendard';
    font-weight: 400;
    src: url('../font/Pretendard-Regular.woff2') format('woff2');
    font-display: swap;
}

@font-face {
    font-family: 'Pretendard';
    font-weight: 500;
    src: url('../font/Pretendard-Medium.woff2') format('woff2');
    font-display: swap;
}

@font-face {
    font-family: 'Pretendard';
    font-weight: 600;
    src: url('../font/Pretendard-SemiBold.woff2') format('woff2');
    font-display: swap;
}

@font-face {
    font-family: 'Pretendard';
    font-weight: 700;
    src: url('../font/Pretendard-Bold.woff2') format('woff2');
    font-display: swap;
}

@font-face {
    font-family: 'Pretendard';
    font-weight: 800;
    src: url('../font/Pretendard-ExtraBold.woff2') format('woff2');
    font-display: swap;
}

@font-face {
    font-family: 'Pretendard';
    font-weight: 900;
    src: url('../font/Pretendard-Black.woff2') format('woff2');
    font-display: swap;
}


/* ==========================================================================
    00. Reset / Base
   ========================================================================== */

/* ==========================================================================
    01. Root
   ========================================================================== */

:root {
    /* Typography 타이포그래피 */
    --font-family-pretendard: 'Pretendard', sans-serif;
    --font-family-moneygraphy: 'Moneygraphy', sans-serif;

    /* Color 색깔 */
    --point-pale-purple: #ECE8F4;
    --point-color: var(--point-purple);
    --point-color: #6446b6;
    --point-gray-purple: #F4F2F7;
    --point-dark-purple: #4C425E;
}

/* ==========================================================================
    02. Common
   ========================================================================== */

/* ==========================================================================
    03. Utility
   ========================================================================== */

/* ── color 색깔 ─────────────────────────────────────────────────── */

.point-color {
    color: var(--point-color);
}

/* ==========================================================================
    04. Decoration       
   ========================================================================== */

/* ───────────────────────────────────────────
 *   [데코레이션] skeleton 스켈레톤
 * -------------------------------------------
 *   .skeleton
 * ─────────────────────────────────────────── */

/* ───────────────────────────────────────────
 *   [데코레이션] 주석 표시
 * -------------------------------------------
 *   .asterisk
 * ─────────────────────────────────────────── */


/* ==========================================================================
    05. Interactive inner
   ========================================================================== */

.inner {
    max-width: 700px;
    margin: 0 auto;
}

    @media (max-width:700px) {
        .inner {
            max-width: calc(100% - 60px);
        }
    }

/* ── 여백 없음 ───────────────────────────────────────────── */

.max-inner {
    max-width: 700px;
    margin: 0 auto;
}

/* ── 기본 여백 ───────────────────────────────────────────── */

.content-inner {
    --side-padding: 160px;
    width: calc(100% - (var(--side-padding) * 2));
    max-width: 1440px;
    margin: 0 auto;
}

    @media (max-width: 1440px) {
        .content-inner {
            --side-padding: 100px;
        }
    }

    @media (max-width: 1222px) {
        .content-inner {
            --side-padding: 80px;
        }
    }

    @media (max-width: 1024px) {
        .content-inner {
            --side-padding: 48px;
        }
    }

    @media (max-width: 768px) {
        .content-inner {
            --side-padding: 32px;
        }
    }

    @media (max-width: 600px) {
        .content-inner {
            --side-padding: 16px;
        }
    }

.page-inner {
    margin: 0 auto;
    width: calc(100% - 200px);
    max-width: 1440px;
}

    @media (max-width:1222px) {
        .page-inner {
            width: calc(100% - 160px);
        }
    }

    @media (max-width:768px) {
        .page-inner {
            width: calc(100% - 64px);
        }
    }

    @media (max-width:500px) {
        .page-inner {
            width: calc(100% - 32px);
        }
    }

/* ── 모바일 여백 ───────────────────────────────────────────── */

.header-inner,
.main-inner,
.common-inner,
.footer-inner {
    margin: 0 auto;
    width: calc(100% - 120px);
    /* max-width: 500px; */
}

@media (max-width:768px) {
    .main-inner,
    .common-inner,
    .header-inner,
    .footer-inner {
        width: calc(100% - 40px);
    }
}

/* ==========================================================================
    06. Header
   ========================================================================== */

/* ───────────────────────────────────────────
 *   [헤더] common 헤더 공통
 * -------------------------------------------
 *   .header
 * ─────────────────────────────────────────── */

.header .logo .logo-img {
    height: 24px;
}

.header .header-bar {
    height: 80px;
    position: relative;
}

@media (max-width: 720px) {
    .header .logo .logo-img {
        height: 20px;
    }

    .header .header-bar {
        height: 72px;
    }
}

.header .header-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--point-dark-purple);
}

.header .hr-btn {
    padding: 12px;
}

@media (max-width: 720px) {
    .header .hr-btn {
        padding: 12px 4px;
    }
}

.header .hr-btn p,
.header .hr-btn .icon {
    color: var(--point-color);
    padding: 4px;
}

.header .hr-btn p {
    font-size: 1.6rem;
}

.header .hr-btn .icon {
    font-size: 2rem;
}

/* ───────────────────────────────────────────
 *   [헤더] 헤더 스타일
 * -------------------------------------------
 *   .main-header 메인 헤더
 *   .sub-header 서브 헤더
 *   .layer-header 레이어 헤더
 *   .page-header 페이지 헤더
 * ─────────────────────────────────────────── */

/* ==========================================================================
    07. navigation
   ========================================================================== */
 
/* ───────────────────────────────────────────
 *   [네비게이션] sidebar 사이드바
 * -------------------------------------------
 *   .sidebar
 * ─────────────────────────────────────────── */

/* ───────────────────────────────────────────
 *   [네비게이션] 메뉴 공통 스타일
 * -------------------------------------------
 *   .nav-mobile
 * ─────────────────────────────────────────── */

/* ==========================================================================
    08. Layout       
   ========================================================================== */

/* ───────────────────────────────────────────
 *   [레이아웃] Typography 타이포그래피 위계
 * -------------------------------------------
 *   
 * ─────────────────────────────────────────── */

.headline {
    font-size: 3.2rem;
    font-weight: 500;
}

@media (max-width: 720px) {
    .headline {
        font-size: 2.4rem;
    }
}

@media (min-width: 1600px) and (min-height: 1024px) {
    .description {
        font-size: 2rem;
    }
}


/* ───────────────────────────────────────────
 *   [레이아웃] 2단 레이아웃
 * -------------------------------------------
 *   .two-column-layout
 * ─────────────────────────────────────────── */

/* ───────────────────────────────────────────
 *   [레이아웃] Grid 그리드
 * -------------------------------------------
 *   .grid-layout
 * ─────────────────────────────────────────── */

/* ───────────────────────────────────────────
 *   [레이아웃] Sticky
 * -------------------------------------------
 *   .sticky
 * ─────────────────────────────────────────── */

/* ───────────────────────────────────────────
 *   [레이아웃] article 사진 & 글
 * -------------------------------------------
 *   .article-{style}
 * ─────────────────────────────────────────── */

/* ───────────────────────────────────────────
 *   [레이아웃] 하단 버튼 영역 고정
 * -------------------------------------------
 *   .scroll-page
 * ─────────────────────────────────────────── */


/* ==========================================================================
    09. Component    
   ========================================================================== */

/* ───────────────────────────────────────────
 *   [컴포넌트] 페이지 상단 헤딩
 * -------------------------------------------
 *   .page-heading
 *   .page-title-area
 * ─────────────────────────────────────────── */

/* ───────────────────────────────────────────
 *   [컴포넌트] Tab 탭키
 * -------------------------------------------
 *   .tab-group
 * ─────────────────────────────────────────── */

/* ───────────────────────────────────────────
 *   [컴포넌트] button 버튼 스타일
 * -------------------------------------------
 *   .btn-{style}
 * ─────────────────────────────────────────── */

 .purple-border-btn {
    background-color: #FFFFFF;
    color: var(--point-color);
    border: 1px solid var(--point-color);
}

 .purple-btn {
    background-color: var(--point-color);
    border: 1px solid var(--point-color);
    color: #ffffff;
}

/* ── 공통 버튼 스타일 ───────────────────────────────────────── */

/* ── 색상 스타일 ──────────────────────────────────────────── */

/* ── 버튼 둥근 정도 ────────────────────────────────────────────── */

/* ── 버튼 크기 ────────────────────────────────────────────── */

.btn-xlg {
    height: 64px;
}

/* ───────────────────────────────────────────
 *   [컴포넌트] 원형 버튼
 * -------------------------------------------
 *   .circle-btn
 * ─────────────────────────────────────────── */

/* ───────────────────────────────────────────
 *   [컴포넌트] 라운드 박스
 * -------------------------------------------
 *   .round-box
 * ─────────────────────────────────────────── */

/* ───────────────────────────────────────────
 *   [컴포넌트] 배지
 * -------------------------------------------
 *   .badge
 * ─────────────────────────────────────────── */

/* ───────────────────────────────────────────
 *   [컴포넌트] 스크롤 바
 * -------------------------------------------
 *   .scrollbar-basic
 *   .scrollbar-light
 *   .scrollbar-dark
 * ─────────────────────────────────────────── */

/* ── custom-scroll ───────────────────────────────────────── */

.custom-scroll {
    overflow: auto;
    scrollbar-gutter: stable both-edges;
    box-sizing: content-box;
    background-clip: padding-box;
}

.custom-scroll::-webkit-scrollbar {
    width: 24px;
    height: 24px;
}

.custom-scroll::-webkit-scrollbar-track {
    background: #FFFFFF;
    border-radius: 16px;
}

.custom-scroll::-webkit-scrollbar-thumb {
    background-color: rgba(98, 68, 152, 0.4);
    border-radius: 16px;
    border: 6px solid #FFFFFF;
    background-clip: padding-box;
}

.custom-scroll::-webkit-scrollbar-thumb:hover {
    background-color: rgba(98, 68, 152, 0.6);
}

    @media (max-width:768px) {
        .custom-scroll::-webkit-scrollbar {
            width: 12px;
            height: 12px;
        }

        .custom-scroll::-webkit-scrollbar-thumb {
            border: 5px solid #FFFFFF;
        }

        /* Firefox용 스크롤바 스타일 */
        .custom-scroll {
            scrollbar-color: rgba(98, 68, 152, 0.4) #FFFFFF;
        }

        /* iOS / 모바일 Safari용 부드러운 스크롤 */
        .custom-scroll {
            -webkit-overflow-scrolling: touch;
        }

        /* 공통: 내용이 가장자리랑 붙지 않게 기본 여백 확보 */
        .faq-qna .custom-scroll {
            padding-left: 16px;
            -webkit-overflow-scrolling: touch; /* iOS 부드러운 스크롤 */
        }
    }



/* ───────────────────────────────────────────
 *   [컴포넌트] 리스트 스타일 (점선)
 * -------------------------------------------
 *   .list-container
 * ─────────────────────────────────────────── */

/* ───────────────────────────────────────────
 *   [컴포넌트] 리스트 스타일
 * -------------------------------------------
 *   .list-group.solid
 *   .list-group.dashed
 * ─────────────────────────────────────────── */

/* ───────────────────────────────────────────
 *   [컴포넌트] banner 배너
 * -------------------------------------------
 *   .sticky-banner
 * ─────────────────────────────────────────── */

.codermis-banner {
    bottom: 130px;
    left: calc(100% - 300px);
    width: 240px;
    height: auto;
    min-height: 300px;
    border-radius: 20px;
    border: 1px solid #ffffff;
    margin-top: -300px;
    background: #ffffff url('../img/common/skin.jpg') center center no-repeat;
    background-size: cover;
    color: var(--point-color);
    padding: 8px 20px;
}

@media (min-width: 1600px) and (min-height: 1024px) {
    .codermis-banner {
        bottom: 150px;
        left: calc(100% - 260px);
    }
}

@media (max-width:768px) {
    .codermis-banner {
        bottom: 90px;
        left: calc(100% - 255px);
    }
}

      .sticky-banner-text {
          display: flex;
          flex-direction: column;
          align-items: center;
          justify-content: space-between;
          padding: 20px 0;
          height: 250px;
       }

      .sticky-banner-text .banner-txt {
          margin-top: 12px;
          font-size: 2rem;
          font-weight: 500;
          text-align: center;
          font-family: var(--font-family-moneygraphy);
          line-height: 1.6;
       }

       .sticky-banner-text .banner-txt span {
          font-size: 2.8rem;
       }

       .close-service-icon {
           width: 80px;
           height: 80px;
       }

       .banner-close-icon {
            position: absolute;
            top: 0;
            right: 0;
            cursor: pointer;
            color: var(--point-pale-purple);
            padding: 12px;
       }

.today-cookie {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.today-cookie .today-cookie-checkbox {
    margin-right: 10px;
}

.today-cookie .today-cookie-checkbox p {
    font-size: 1.3rem;
}

.direct-btn {
    background-color: rgba(76, 66, 94, 0.6);
    display: inline-block;
    border-radius: 50px;
    color: #ffffff !important;
}

.skin-banner-img {
    display: inline;
    width: auto;
    height: 80px;
}


/* ───────────────────────────────────────────
 *   [컴포넌트] 커스텀 폼
 * -------------------------------------------
 *   .form-input 인풋 폼
 *   .form-select 선택 폼
 *   .form-radio 라디오 스타일
 * ─────────────────────────────────────────── */

/* ── 공통 폼 스타일 ──────────────────────────────────────── */

/* ── 커스텀 폼 ──────────────────────────────────────────── */

/* ── 택1 버튼 ───────────────────────────────────────────── */

/* ── 조회 폼 ────────────────────────────────────────────── */

/* ── 상태별 테두리 스타일 ─────────────────────────────────── */

/* ── 서버별 호환 ─────────────────────────────────────────── */

/* ── 커스텀 폼 disabled 시 디자인 속성 ─────────────────────── */


/* ───────────────────────────────────────────
 *   [컴포넌트] card 카드
 * -------------------------------------------
 *   .card-full
 *   .card-summary
* ─────────────────────────────────────────── */

/* ── .card ───────────────────────────────────────────────── */

/* ── .card-basic ─────────────────────────────────────────── */

/* ── .card-full ──────────────────────────────────────────── */

/* ── .card-summary ───────────────────────────────────────── */

/* ───────────────────────────────────────────
 *   [컴포넌트] 둥근 체크 버튼
 * -------------------------------------------
 *   .checkbox-wrapper
 * ─────────────────────────────────────────── */

.checkbox-wrapper .checkbox-icon {
    background: none;
    background-size: contain;
}

.checkbox-wrapper.checked .checkbox-icon {
    background: url('../img/icon/check.svg') no-repeat center center;
    background-size: contain;
}


/* ───────────────────────────────────────────
 *   [컴포넌트] 툴팁
 * -------------------------------------------
 *   .tooltip
 * ─────────────────────────────────────────── */

/* ── tooltip 툴팁 박스 ──────────────────────────────────────── */

/* ───────────────────────────────────────────
 *   [컴포넌트] 바텀시트
 * -------------------------------------------
 *   .custom-bottomsheet-wrapper
 * ─────────────────────────────────────────── */

/* ── 바텀시트 핸들바 handle-bar ──────────────────────────────── */

/* ───────────────────────────────────────────
 *   [컴포넌트] 플로팅 미니 바텀시트
 * -------------------------------------------
 *   .mini-floating-card
 * ─────────────────────────────────────────── */

/* ───────────────────────────────────────────
 *   [컴포넌트] 접힘 리스트
 * -------------------------------------------
 *   .collapse-list
 * ─────────────────────────────────────────── */

/* ───────────────────────────────────────────
 *   [컴포넌트] Popup 팝업창
 * -------------------------------------------
 *   .popup
 * ─────────────────────────────────────────── */

/* ── 팝업 버튼 영역 : 하단 꽉찬 버튼 ────────────────────────────── */

/* ───────────────────────────────────────────
 *   [컴포넌트] Alert 경고창
 * -------------------------------------------
 *   .alert
 * ─────────────────────────────────────────── */

/* ───────────────────────────────────────────
 *   [컴포넌트] modal 모달 팝업
 * -------------------------------------------
 *   .modal
 * ─────────────────────────────────────────── */

/* ───────────────────────────────────────────
 *   [컴포넌트] toast 토스트 알림
 * -------------------------------------------
 *   .toast
 * ─────────────────────────────────────────── */

/* ───────────────────────────────────────────
 *   [컴포넌트] 데이터 없음
 * -------------------------------------------
 *   .empty-data
 * ─────────────────────────────────────────── */

/* ───────────────────────────────────────────
 *   [컴포넌트] 로딩스피너
 * -------------------------------------------
 *   .loading-spiner
 * ─────────────────────────────────────────── */

/* ───────────────────────────────────────────
 *   [컴포넌트] 위로 가기 버튼
 * -------------------------------------------
 *   .gotop
 * ─────────────────────────────────────────── */

/* ==========================================================================
    10. Menu
   ========================================================================== */

/* ==========================================================================
    11. Main
   ========================================================================== */

/* ───────────────────────────────────────────
 *   [section] 메인 섹션 공통
 * -------------------------------------------
 *   .main-visual
 * ─────────────────────────────────────────── */

.main section {
    margin: 240px 0;
}

    @media (min-width: 1600px) and (min-height: 1024px) {
        .main section {
            margin: 300px 0;
        }
    }

    @media (max-width:1200px) {
        .main section {
            margin: 160px 0;
        }
    }

    @media (max-width:768px) {
        .main section {
            margin: 120px 0;
        }
    }

.main section .headline {
    font-family: var(--font-family-moneygraphy);
}


/* ───────────────────────────────────────────
 *   [section] 메인 비주얼
 * -------------------------------------------
 *   .main-visual
 * ─────────────────────────────────────────── */

.main {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main .main-visual {
    margin-top: 20px;
}

.main-video {
    width: 100%;
    border-radius: 40px;
    overflow: hidden; 
    display: block;
    object-fit: cover;
}

@media (max-width:768px) {
    .main-video {
        height: 480px;
        border-radius: 30px;
    }
}

.main-visual {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.main-visual .display {
    width: 100%;
    position: absolute;
    bottom: 40px;
    left: 50px;
    z-index: 2;
    color: #ffffff;
    line-height: 1.4;
}

.main-visual .display span {
    font-size: 2.4rem;
}

@media (max-width:768px) {
    .main-visual .display {
        bottom: 24px;
        left: 30px;
        font-size: 3rem;
    }

    .main-visual .display {
        white-space: pre-line;
    }
}



/* ───────────────────────────────────────────
 *   [section] 섹션2 요인
 * -------------------------------------------
 *   .section-cause
 * ─────────────────────────────────────────── */

.section-cause .content-area {
    display: flex;
}

    @media (max-width:768px) {
        .section-cause .content-area {
            flex-direction: column;
        }
    }

/* ── PRS Model ───────────────────────────────────────────── */

.prs-model {
    width: 60%;
}

    @media (max-width:768px) {
        .prs-model {
            width: 100%;
            order: 2;
        }

        .prs-model img {
            width: 100%;
        }
    }

.prs-model h3 {
    font-size: 2rem;
}

/* ── factor-chart ────────────────────────────────────────── */

.factor-chart {
    max-width: 440px;
}

    @media (max-width:768px) {
        .factor-chart {
            width: 100%;
            order: 1;
            margin-bottom: 40px;
        }
    }

.chart-header {
    display: grid;
    grid-template-columns: max-content 1fr max-content;
    align-items: center;
    column-gap: 12px;
    margin-bottom: 14px;
    font-weight: 700;
    margin-left: 40px;
    padding-right: 12px;
}

    @media (max-width:768px) {
        .chart-header {
            margin-left: 0;
            padding-right: 0;
        }
    }

.chart-header span {
    font-family: var(--font-family-pretendard);
    white-space: nowrap;
    word-break: keep-all;
}

.title-sep {
    border-bottom: 2px dashed #d7d7de;
    transform: translateY(2px);
    height: 0;
}

.chart-header .title-left { 
    color: var(--point-color);
}

.chart-rows{ 
    display: grid; 
    gap: 12px; 
}

.chart-row{
    display: grid;
    grid-template-columns: 28px 1fr 0;
    align-items: center;
    gap: 12px;
}

    @media (max-width:768px) {
        .chart-row {
            width: 100%;
            grid-template-columns: 28px 1fr 80px;
        }
    }

.factor-chart .pct{
    text-align: right;
    font-weight: 700;
    color: var(--point-color);
}

.factor-chart .label{
    white-space: nowrap;
    font-weight: 600;
    font-family: var(--font-family-pretendard);
}

.factor-chart .bar {
    position: relative;
    height: 12px;
    border-radius: 999px;
    background: #c6c4d2;
    overflow: hidden;
}

.factor-chart .bar .blend {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        var(--point-color) 0%,
        var(--point-color) calc(var(--gene-ratio) - 5px),
        rgba(136, 88, 241, 0.4) var(--gene-ratio),
        rgba(198, 196, 210, 0.6) calc(var(--gene-ratio) + 5px),
        #c6c4d2 100%
    );
    transition: all 0.3s ease;
}


/* ───────────────────────────────────────────
 *   [section] 섹션3 검사 절차
 * -------------------------------------------
 *   .section-process
 * ─────────────────────────────────────────── */

.section-process {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: -160px !important;
}

@media (max-width: 768px) {
    .section-process {
        margin-bottom: 0 !important;
    }
}

.section-process .content-area {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

@media (max-width: 768px) {
    .section-process .content-area {
        margin-top: 40px;
    }
}

.process-flow {
    width: 100%;
    max-width: 640px;
    position: relative;
    align-items: center;
    border-radius: 100%;
    border: 1px dashed var(--point-color);
    border-bottom: none;
    aspect-ratio: 1 / 1;
}

.process-flow::before {
    content: "";
    width: 100%;
    height: 100%;
    background: #fff;
    position: absolute;
    z-index: 0;
    border-radius: 100% 100% 0 0;
}

@media (max-width: 768px) {
    .process-flow {
        max-width: 500px;
        position: static;
        border-radius: 0;
        border: none;
        aspect-ratio: auto;
        width: 100%;
    }

    .process-flow::before {
        display: none;
    }

    .process-flow > ul {
        display: flex;
    }
}

.process-content {
    position: absolute;
}

@media (max-width: 768px) {
    .process-content {
        position: static;
        margin-top: 40px;
    }

    .process-content .description {
        text-align: left;
        padding: 0 40px;
    }
}

.process-step {
    z-index: 1;
    display: grid;
    place-items: center;
    cursor: pointer;
    border-radius: 1000%;
}

.process-flow .step {
    z-index: 2;
}

    .step01 {
        position: absolute;
        top: 30%;
        left: -30px;
        background-color: #ffffff;
    }

    .step02 {
        position: absolute;
        top: -12px;
        left: 20%;
    }

    .step03 {
        position: absolute;
        top: -12px;
        right: 20%;
    }

    .step04 {
        position: absolute;
        top: 30%;
        right: -30px;
        background-color: #ffffff;
    }

    @media (max-width: 768px) {
        .process-step {
            display: inline-flex;
            align-items: center;
            gap: 0;     
            background: transparent;
            border: none;
            cursor: pointer;
        }

        .process-flow .step {
            background-color: rgba(0,0,0,0);
            z-index: 0;
        }

        .step01, .step02, .step03, .step04 {
            position: static;
            top: 0;
            left: 0;
        }
    }

.process-step .icon {
    width: 100px;
    height: 100px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #ffffff;
    color: var(--point-color);
    border: var(--point-color) 1px solid;
}

.process-step .icon .bi {
    font-size: 3.2rem;
}

@media (max-width: 768px) {
    .process-step .icon {
        width: 50px;
        height: 50px;
    }
    
    .process-step .icon .bi {
        font-size: 2rem;
    }
}

.process-flow .label {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--point-color);
    text-align: center;
    padding: 12px 0 40px;
    background-color: #ffffff;
}

    .step.is-active .icon {
        background: var(--point-color);
        color: #ffffff;
    }

    @media (max-width: 768px) {
        .step .label {
            padding: 0 8px;
            display: none;
            background-color: var(--point-pale-purple);
        }

        .step.is-active .label {
            display: block;
        }
    }

.process-content {
    text-align: center;
}

.process-content .content-img {
    width: auto;
    max-width: 320px;
    max-height: 240px;
    margin: 0 auto 16px auto;
    display: block;
}

.process-content .content-title {
    font-size: 2.4rem;
    margin-bottom: 20px;
}

.process-content .content-desc {
    font-size: 1.6rem;
}


@media (max-width: 768px) {
    .process-flow ul {
        padding: 4px;
        border-radius: 50px;
        display: flex;
        justify-content: space-between;
        width: 100%;
        position: relative;
        z-index: 0;
        background-color: var(--point-pale-purple);
    }

    .process-flow ul::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 4px;
        right: 4px;
        transform: translateY(-50%);
        border-top: 1px dashed var(--point-color);
        z-index: -1;
    }
}


/* ───────────────────────────────────────────
 *   [section] 섹션4 보안
 * -------------------------------------------
 *   section-security
 * ─────────────────────────────────────────── */

.section-security {
    gap: 80px;
}

@media (max-width: 768px) {
    .section-security {
        gap: 30px;
    }

    .section-security .headline {
        margin-bottom: 12px;
    }
}

.section-security .content-area {
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-security .title-area {
    padding-right: 60px;
}

@media (max-width: 768px) {
    .section-security .title-area {
        padding-right: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .section-security .title-area .headline {
        text-align: center;
    }
}

.naver-cloud-img {
    border-radius: 30px;
    max-height: 400px;
}

@media (max-width: 768px) {
    .naver-cloud-img {
        max-height: 500px;
        width: 100%;
    }
}

.license-img {
    max-height: 400px;
}

@media (max-width: 768px) {
    .license-img {
        max-height: 300px;
    }
}


/* ── swiper-slider ───────────────────────────────────────── */

.section-security .swiper-pagination-bullet {
    background-color: #d9d9d9;
    opacity: 1;
}

.section-security .swiper {
    padding-bottom: 40px;
}

.section-security .swiper-pagination {
    bottom: 0 !important;
}

.section-security .swiper-pagination-bullet-active {
    background-color: var(--point-color);
}

.section-security .swiper-button-next,
.section-security .swiper-button-prev {
    color: var(--point-color);
}

.section-security .swiper-button-next:hover,
.section-security .swiper-button-prev:hover {
    color: var(--point-color); 
}

.section-security .swiper-button-prev,
.section-security .swiper-button-next {
    top: 50%;
    transform: translateY(-50%);
}

@media (max-width: 768px) {
    .section-security .swiper-button-prev,
    .section-security .swiper-button-next {
        top: 40%;
    }
}

@media (max-width: 768px) {
    .section-security .swiper-button-prev::after,
    .section-security .swiper-button-next::after {
        font-size: 32px;
    }
}



/* ───────────────────────────────────────────
 *   [section] 섹션5 자주묻는질문
 * -------------------------------------------
 *   section-faq
 * ─────────────────────────────────────────── */

.section-faq {
    display: flex;
    align-items: center;
    gap: 40px;
    user-select: none;
}

@media (max-width: 768px) {
    .section-faq {
        flex-direction: column;
        align-items: baseline;
    }
}

.section-faq .title-area {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
}

@media (max-width: 768px) {
    .section-faq .title-area {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        align-items: baseline;
    }

    .section-faq .title-area .btn {
        margin-top: 0;
    }
}

.section-faq .content-area {
    display: flex;
    flex: 1;
    justify-content: flex-end;
}

.section-faq .faq-table {
    background: var(--point-pale-purple);
    border-radius: 30px;
    width: 90%;
}

@media (max-width: 768px) {
    .section-faq .content-area {
        width: 100%;
    }

    .section-faq .faq-table {
        border-radius: 20px;
        width: 100%;
    }
}

.section-faq .faq-tab ul {
    display: flex;
    cursor: pointer;
}

.section-faq .faq-tab ul li {
    flex: 1;
    padding: 24px 0 20px;
    text-align: center;
    font-size: 2rem;
    color: var(--point-color);
}

    .section-faq .faq-tab ul li.active {
        background: #ffffff;
        border-radius: 30px 30px 0 0;
        border: 2px solid var(--point-color);
        border-bottom: none;
        font-weight: 600;
    }


@media (min-width: 1600px) and (min-height: 1024px) {
    .faq-tab ul li.active:last-child {
        margin-right: -1px;
    }
}

@media (max-width: 768px) {
    .section-faq .faq-tab ul li {
        padding: 16px 0 12px;
        font-size: 1.6rem;
    }

    .section-faq .faq-tab ul li.active {
        border-radius: 20px 20px 0 0;
    }
}

.section-faq .faq-qna {
    background: #ffffff;
    border-radius: 0 0 30px 30px;
    border: 2px solid var(--point-color);
    padding: 40px 0;
    margin-top: -2px;
}

@media (max-width: 768px) {
    .section-faq .faq-qna {
        border-radius: 0 0 20px 20px;
        padding: 24px 0;
    }
}

.section-faq .faq-qna ul {
    height: 340px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.section-faq .faq-qna ul li {
    padding: 0 30px 0 16px;
}

@media (max-width: 768px) {
    .section-faq .faq-qna ul {
        gap: 16px;
    }

    .section-faq .faq-qna ul li {
        padding: 0 12px 0 0;
    }
}

.section-faq .faq-qna .question {
    font-size: 1.8rem;
    position: relative;
    padding-left: 48px;
    padding-right: 32px;
    padding-top: 16px;
    padding-bottom: 16px;
    font-weight: 600;
}

.faq-qna .question::before {
    content: "Q";
    position: absolute;
    left: 0;
    top: 12px;
    color: var(--point-color);
    font-weight: 700;
    font-size: 3rem;
    font-family: 'Moneygraphy';
}

.section-faq .faq-qna .answer {
    font-size: 1.6rem;
    padding-top: 8px;
    padding-left: 48px;
    text-align: justify;
}

@media (max-width: 768px) {
    .section-faq .faq-qna .question {
        font-size: 1.6rem;
        position: relative;
        padding-top: 8px;
        padding-right: 24px;
        padding-left: 32px;
    }

        .faq-qna .question::before {
            top: 4px;
            font-size: 2.4rem;
        }

    .section-faq .faq-qna .answer {
        font-size: 1.6rem;
        padding-top: 4px;
        padding-right: 12px;
        padding-left: 32px;
    }
}


/* ───────────────────────────────────────────
 *   [section] 섹션6 서비스 대상자
 * -------------------------------------------
 *   section-user
 * ─────────────────────────────────────────── */

.section-user .content-area {
    margin-top: 40px;
}

.section-user .content-area ul {
    display: flex;
    flex-direction: column;
}

.section-user .content-area ul li {
    display: flex;
    align-items: center;
    gap: 20px;
}

.section-user img {
    width: 30%;
    border-radius: 20px;
}

.section-user p {
    flex: 1;
    font-size: 2.4rem;
    font-weight: 600;
    padding: 0 20px;
}

@media (max-width: 1200px) {
    .section-user p {
        flex: 1;
        font-size: 2rem;
        font-weight: 600;
    }

    .section-user .content-area ul {
        gap: 20px;
    }

    .section-user .content-area ul li {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .section-user ul {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .section-user ul li {
        white-space: pre-line;
    }

    .section-user img {
        width: 100%;
        border-radius: 20px;
    }

    .section-user p {
        font-size: 2.4rem;
        position: absolute;
        flex: 0;
        padding: 20px;
    }

    .section-user ul li:nth-child(1) p {
        top: 0;
        right: 0;
        text-align: right;
    }

    .section-user ul li:nth-child(2) p {
        top: 0;
        left: 0;
        text-align: left;
    }

    .section-user ul li:nth-child(3) p {
        top: 0;
        right: 0;
        text-align: right;
        color: #ffffff;
    }
}

@media (max-width: 500px) {
    .section-user p {
        font-size: 2rem;
    }
}

.section-user { 
    position: relative; 
    overflow: visible; 
}

.section-user li { 
    position: relative;
    z-index: 1; 
}

.section-user li::before {
    content: '';
    position: absolute;
    left: 0; 
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: calc(100% - 40px);
    background: #f2f2f2;   
    border-radius: 20px;   
    z-index: -1; 
}

.section-user li:nth-child(odd)::before {
    background: var(--point-pale-purple);
}

@media (max-width: 1200px) {
    .section-user li::before {
        height: 100%;
    }
}

@media (max-width: 768px) {
    .section-user li::before {
        display: none;
    }

    .section-user li:nth-child(2)::before { 
        height: 140px; 
        border-radius: 12px; 
    }
}


/* ───────────────────────────────────────────
 *   [section] 섹션7 신청 방법
 * -------------------------------------------
 *   section-apply
 * ─────────────────────────────────────────── */

.section-apply {
    gap: 80px;
}

@media (max-width: 768px) {
    .section-apply {
        gap: 40px;
    }
}

.section-apply .content-img {
    object-fit: cover;
}

.section-apply .hospital-info {
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    .section-apply .hospital-info {
        flex-direction: column;
        gap: 4px;
    }
}

.section-apply .hospital-img {
    border-radius: 20px;
    width: 100%;
    height: auto;
}

.section-apply .logo-img {
    height: 32px;
}

@media (max-width: 768px) {
    .section-apply .content-area {
        order: 2;
    }

    .section-apply .title-area {
        order: 1;
    }
}


/* ==========================================================================
    12. Sub
   ========================================================================== */

/* ───────────────────────────────────────────
 *   [section] 문의하기
 * -------------------------------------------
 *   section-inquiry
 * ─────────────────────────────────────────── */

.section-inquiry {
    margin: 80px 0 120px;
} 

    @media (max-width: 768px) {
        .section-inquiry {
            margin: 20px 0 80px;
        }
    }

.section-inquiry .contact-info {
    display: flex;
    flex-wrap: wrap;
}

.section-inquiry .contact-info > li {
    display: flex;
    align-items: center;
    flex: 1;
}

.section-inquiry .contact-info a {
    border-radius: 50%;
    margin-right: 20px;
}

.section-inquiry .contact-info .info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--point-pale-purple);
    width: 90px;
    height: 90px;
    border-radius: 50%;
}

.section-inquiry .contact-info .info-icon .bi {
    color: var(--point-color);
    font-size: 3rem;
}

    @media (max-width: 768px) {
        .section-inquiry .contact-info a {
            padding: 8px;
            margin-right: 15px;
        }

        .section-inquiry .contact-info .info-icon {
            width: 55px;
            height: 55px;
        }
    }

.section-inquiry .mail-txt, 
.section-inquiry .tel-num {
    font-size: 3rem;
    color: var(--point-color);
}

.section-inquiry .available-time {
    font-size: 2rem;
    color: var(--point-color);
}

    @media (max-width: 768px) {
        .section-inquiry .mail-txt {
            font-size: 2.4rem;
        }
        
        .section-inquiry .available-time {
            font-size: 1.6rem;
        }
        
        .section-inquiry .tel-num {
            font-size: 2.4rem;
        }
    }

.section-inquiry .contact-form {
    margin-top: 80px;
}

    @media (max-width: 768px) {
        .section-inquiry .contact-form {
            margin-top: 40px;
        }
    }

.section-inquiry .contact-form .personal-info {
    display: flex;
    width: 100%;
    gap: 30px;
}

.section-inquiry .contact-form .personal-info > div {
    flex: 1;
}

    @media (max-width: 768px) {
        .section-inquiry .contact-form .personal-info {
            flex-wrap: wrap;
            gap: 20px;
        }

        .section-inquiry .contact-form .personal-info > div {
            flex: 0 0 100%;
        }
    }

.section-inquiry input:not([type="checkbox"]) {
    display: inline-block;
    width: 100%;
    border-radius: 10px;
    padding: 20px;
    height: 60px;
    border: var(--point-color) 1px solid;
    background-color: #ffffff;
    font-size: 1.8rem;
}

    @media (max-width: 768px) {
        .section-inquiry input:not([type="checkbox"]) {
            padding: 20px;
            height: 55px;
        }
    }

.section-inquiry .contact-form .label {
    font-size: 2.4rem;
    margin-bottom: 16px;
    color: var(--point-color);
    font-weight: 600;
}

.section-inquiry .contact-form > li {
    margin-top: 60px;
}

    @media (max-width: 768px) {
        .section-inquiry .contact-form .label {
            font-size: 1.8rem;
            margin-bottom: 12px;
        }

        .section-inquiry .contact-form > li {
            margin-top: 30px;
        }
    }

.section-inquiry .contact-form textarea {
    display: inline-block;
    width: 100%;
    border-radius: 10px;
    padding: 20px;
    border: var(--point-color) 1px solid;
    background-color: #fff;
    resize: none;
    font-size: 1.8rem;
    line-height: 1.6;
}

.section-inquiry .contact-form .personal-agree {
    display: flex;
    align-items: center;
}

.section-inquiry .contact-form .personal-agree .checkbox-icon {
    border: var(--point-color) 1px solid;
    border-radius: 50%;
}

.section-inquiry .contact-form .personal-agree .check-input {
    display: flex;
    align-items: center;
}

.section-inquiry .contact-form .personal-agree .check-input p {
    font-size: 2rem;
    margin-left: 10px;
}

.section-inquiry .contact-form .personal-agree-link {
    background-color: var(--point-pale-purple);
    margin-left: 20px;
    border-radius: 6px;
}

.section-inquiry .contact-form .personal-agree-link a {
    color: var(--point-color);
    font-size: 1.8rem;
    display: block;
    padding: 12px 20px;
}

    @media (max-width: 768px) {
        .section-inquiry .contact-form .personal-agree {
            flex-direction: column;
            align-items: start;
        }

        .section-inquiry .contact-form .personal-agree-link {
            margin-top: 16px;
            margin-left: 0;
            width: 100%;
        }

        .section-inquiry .contact-form .personal-agree-link a {
            padding: 8px 16px;
            width: 100%;
            text-align: center;
        }

        .section-inquiry .contact-form .personal-agree input[type="checkbox"] {
            width: 25px;
            height: 25px;
        }

        .section-inquiry .contact-form .personal-agree .check-input p {
            font-size: 1.8rem;
        }
    }

.section-inquiry .contact-form .privacy-list {
    background-color: var(--point-gray-purple);
    padding: 24px 36px;
    margin-top: 20px;
    border-radius: 20px;
}

.section-inquiry .contact-form .privacy-list p {
    font-size: 1.8rem;
    color: var(--point-dark-purple);
}

.section-inquiry .contact-form .privacy-list > li {
    display: flex;
}

.section-inquiry .contact-form .privacy-list > li > p {
    display: flex;
    flex: 1;
    line-height: 1.6;
    padding: 8px 0;
}

    @media (max-width: 768px) {
        .section-inquiry .contact-form .privacy-list {
            padding: 20px 32px;
            border-radius: 16px;
        }

        .section-inquiry .contact-form .privacy-list > li {
            flex-direction: column;
            margin-top: 20px;
        }

        .section-inquiry .contact-form .privacy-list > li:first-child {
            margin-top: 0;
        }

        .section-inquiry .contact-form .privacy-list > li > p {
            display: flex;
            flex: 1;
            line-height: 1.4;
            padding: 2px 0;
            font-size: 1.6rem;
        }
    }

.section-inquiry .etc {
    font-size: 1.8rem;
    margin-top: 30px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .section-inquiry .etc {
        font-size: 1.4rem;
        margin-top: 20px;
        text-align: justify;
    }
}

.section-inquiry .admit-btn {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.section-inquiry .admit-btn button {
    width: 250px;
    border-radius: 50px;
    font-size: 2rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .section-inquiry .admit-btn {
        margin-top: 40px;
    }

    .section-inquiry .admit-btn button {
        width: 100%;
        font-size: 2rem;
    }
}


/* ==========================================================================
    13. Footer
   ========================================================================== */

.footer {
    background: var(--point-pale-purple);
    padding: 40px 0;
}

.footer-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 80px;
}

.footer .logo .logo-img {
    height: 24px;
}

@media (max-width: 768px) {
    .footer {
        padding: 24px 0;
    }

    .footer-bar {
        align-items: start;
        margin-bottom: 40px;
    }

    .footer .logo .logo-img {
        height: 20px;
    }
}

.footer .select-box .options {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    padding: 12px 24px;
    border-radius: 30px;
    gap: 20px;
}

.footer .select-box .logo-img {
    height: 20px;
}

@media (max-width: 768px) {
    .footer .select-box {
        margin-top: 20px;
        width: 100%;
    }

    .footer .select-box .options {
        width: 100%;
    }

    .footer .select-box .options li {
        flex: 1;
    }

    .footer .select-box .logo-img {
        height: 16px;
    }
}

.footer .fnb a {
    text-decoration: underline;
    font-size: 1.6rem;
}

.footer .copyright p,
.footer .info p {
    line-height: 1.8;
    color: var(--point-dark-purple);
}


@media (max-width: 768px) {
    .footer-bar {
        flex-direction: column;
    }

    .footer .select-box .options li:first-child {
        display: none;
    }
}


/* ==========================================================================
    13. etc
   ========================================================================== */

/* ================================= The end ================================== */


.process-content .content-item {
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease;
}

.process-content .content-item.is-active {
    display: block;
    opacity: 1;
    visibility: visible;
}
