﻿@charset "utf-8";

.browser_banner {
    width: 100%;
    position: fixed;
    height: 0px;
    line-height: 0px;
    overflow: hidden;
    background-color: #231815;
    color: #ffffff;
    text-align: center;
    transition: all 0.5s;
    top: 0;
    z-index: 100;
}

    .browser_banner p {
        font-weight: normal;
        font-size: 14px;
        line-height: 40px;
        display: inline-block;
        width: auto;
        margin-right: 48px;
        color: #ffffff;
    }

        .browser_banner p span {
            font-weight: bold;
            color: #ffffff;
        }

    .browser_banner .hide_btn {
        font-weight: normal;
        font-size: 12px;
        line-height: 40px;
        display: inline-block;
        padding-right: 24px;
        background-image: url(../image/icon_banner_close.svg);
        background-repeat: no-repeat;
        background-position: center right;
        background-color: #231815;
        color: #ffffff;
    }

    .browser_banner.on {
        width: 100%;
        position: fixed;
        top: 0;
        left: 0;
        height: 40px;
        line-height: 40px;
    }

        .browser_banner.on + nav {
            top: 40px;
        }

        .browser_banner.on.hide + nav {
            top: 0px;
        }

/** Style **/
html, body, div, h1, h2, h3, h4, h5, h6, p, dl, dt, dd, ol, ul, li, form, fieldset, legend, address, figure, hr, object, iframe, img, button, input, select, textarea, label, a, span, em, strong, small, sub, sup, table, caption, thead, tbody, tfoot, tr, th, td {
    padding: 0;
    margin: 0;
    outline: 0;
    box-sizing: border-box;
}

html {
    line-height: 1.6;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    min-width: 360px;
}

html, button, input, select, textarea, body, :root {
    font-family: 'Poppins', 'SpoqaHanSansNeo', '돋움', Dotum, Arial, AppleGothic, sans-serif !important;
    font-weight: 300;
    font-size: 12px;
    color: #333333;
    font-style: normal;
}


h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
    font-size: 100%;
    line-height: 1.6;
}

b, strong {
    font-weight: 700;
}

i, em, dfn, address {
    font-style: normal;
}

a {
    background-color: transparent;
    color: inherit;
    text-decoration: none;
    text-align: center;
}

    a:link, a:visited, a:hover, a:active, a:focus {
        text-decoration: none;
        outline: 0;
    }

ul, ol, dl {
    list-style: none;
}

img, video {
    max-width: 100%;
    border: 0 none;
    vertical-align: top;
}

legend, caption {
    overflow: hidden;
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    border: 0;
    margin: -1px;
    clip: rect(0 0 0 0);
}

hr {
    display: none;
    height: 0;
}

::-moz-selection {
    background-color: #efefef;
    color: #231815;
    text-shadow: none;
}

::selection {
    background-color: #efefef;
    color: #231815;
    text-shadow: none;
}

/** HTML5 **/
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
    display: block;
    box-sizing: border-box;
}

canvas, audio, video {
    display: inline-block;
    vertical-align: top;
    *display: inline;
    *zoom: 1;
}

    audio:not([controls]) {
        display: none;
        height: 0;
    }

[hidden], template {
    display: none;
}
/** Form **/
fieldset {
    border: 0;
}

button {
    overflow: visible;
    border: 0;
    background-color: transparent;
    vertical-align: top;
    line-height: normal;
    text-transform: none;
    cursor: pointer;
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}

html input[type=button], input[type=reset], input[type=submit], input[type=image] {
    cursor: pointer;
    -webkit-appearance: button;
}

input {
    vertical-align: top;
    line-height: normal;
    border: 0;
}

    input[type=checkbox], input[type=radio] {
        box-sizing: border-box;
        padding: 0;
    }

    input[type=search] {
        -webkit-appearance: textfield;
        -moz-box-sizing: content-box;
        -webkit-box-sizing: content-box;
        box-sizing: content-box;
    }

        input[type=search]::-webkit-search-cancel-button, input[type=search]::-webkit-search-decoration {
            -webkit-appearance: none;
        }

        input[type=search]::-ms-clear, input[type=search]:-ms-clear, input[type=text]::-ms-clear, input[type=text]:-ms-clear {
            display: none;
        }

    button::-moz-focus-inner, input::-moz-focus-inner {
        padding: 0;
        border: 0;
    }

button[disabled], html input[disabled] {
    cursor: default;
}

select {
    vertical-align: top;
    line-height: normal;
    text-transform: none;
    border: 1px solid #707070;
}

    select::-ms-expand {
        display: none;
    }

textarea {
    overflow: auto;
    vertical-align: top;
    resize: none;
    border: 1px solid #e6e6e6;
}

label {
    vertical-align: top;
    cursor: pointer;
}

input[type=submit] {
    border: 1px solid transparent;
}
/* mobile */
button, select, textarea,
input[type=text], input[type=password], input[type=button], input[type=reset], input[type=submit], input[type=image], input[type=tel] {
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
}

.pc-only {
    display: inline-block;
}

.m-only {
    display: none;
}
/** Table **/
table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    table-layout: fixed;
    empty-cells: show;
}

td, th {
    padding: 0;
}
/* Button */
.main-btn-area {
    width: 100%;
}

    .main-btn-area .btn {
        width: 100%;
        height: 72px;
        line-height: 72px;
        background-color: #231815;
        border-radius: 16px;
        border: 0;
        font-weight: 600;
        font-size: 18px;
        letter-spacing: 0.75px;
        color: #fcfcfc;
        padding: 0;
    }

        .main-btn-area .btn:disabled {
            background-color: #d0d0d0;
        }

/* GNB */
nav.main-nav {
    transition: top 0.5s;
    position: fixed;
    width: 100%;
    min-width: 360px;
    top: 0;
    left: 0;
    height: 56px;
    background-color: #ffffff;
    border-bottom: 1px solid #efefef;
    z-index: 100;
}

    nav.main-nav.gnb-scroll-effect {
        background-color: rgba(255,255,255,0);
        border-bottom: 1px solid rgba(255,255,255,025);
        transition: all 0.5s;
    }

        nav.main-nav.gnb-scroll-effect .nav-wrap .nav-gnb li a,
        nav.main-nav.gnb-scroll-effect.on .nav-wrap .nav-login li a,
        nav.main-nav.gnb-scroll-effect.on .nav-wrap .nav-login li + li::before {
            transition: all 0.5s;
        }

        nav.main-nav.gnb-scroll-effect.on {
            background-color: #ffffff;
            border-bottom: 1px solid #efefef;
        }

            nav.main-nav.gnb-scroll-effect.on .nav-wrap .nav-gnb li a,
            nav.main-nav.gnb-scroll-effect.on .nav-wrap .nav-login li a {
                color: #999999;
            }

            nav.main-nav.gnb-scroll-effect.on .nav-wrap .nav-login li + li::before {
                background-color: #999999;
            }

    nav.main-nav .nav-wrap {
        max-width: 1080px;
        padding: 0 24px;
        margin: 0 auto;
        height: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }
        nav.main-nav .nav-wrap .nav-logo {
            height: 55px;
            padding: 10px 0;
            display: inline-block;
        }

        nav.main-nav .nav-wrap .nav-gnb {
            position:absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%,-50%);
        }

            nav.main-nav .nav-wrap .nav-gnb li {
                height: 100%;
                line-height: 56px;
                display: inline-block;
                margin-right: 40px;
            }

                nav.main-nav .nav-wrap .nav-gnb li:last-of-type {
                    margin-right: 0px;
                }

                nav.main-nav .nav-wrap .nav-gnb li a,
                nav.main-nav .nav-wrap .nav-login li a {
                    display: inline-block;
                    font-weight: 500;
                    font-size: 15px;
                    height: 24px;
                    line-height: 24px;
                    color: #999999;
                }
                nav.main-nav .nav-wrap .nav-gnb li a:hover,
                nav.main-nav .nav-wrap .nav-login li a:hover,
                nav.main-nav .nav-wrap .nav-gnb li a:active,
                nav.main-nav .nav-wrap .nav-login li a:active {
                    font-weight: 700;
                    color: #231815;
                }

        nav.main-nav .nav-wrap .nav-login {
            height: 100%;
        }

            nav.main-nav .nav-wrap .nav-login li {
                height: 100%;
                line-height: 56px;
                display: inline-block;
                padding: 0 12px;
                position: relative;
                margin-right: 1px;
            }

                nav.main-nav .nav-wrap .nav-login li + li::before {
                    content: "";
                    display: inline-block;
                    width: 1px;
                    height: 15px;
                    background-color: #999999;
                    position: absolute;
                    left: -1px;
                    top: 48%;
                    transform: translateY(-50%);
                }

                nav.main-nav .nav-wrap .nav-login { 
                    min-width: 112px;
                }
                nav.main-nav .nav-wrap .nav-login li:first-of-type {
                    padding-left: 0;
                }

                nav.main-nav .nav-wrap .nav-login li:last-of-type {
                    text-align: right;
                    padding-right: 0;
                    margin-right: 0;
                }

    nav.main-nav.gnb-scroll-effect .nav-wrap .nav-gnb li a,
    nav.main-nav.gnb-scroll-effect .nav-wrap .nav-login li a {
        color: #ffffff;
    }

    nav.main-nav.gnb-scroll-effect .nav-wrap .nav-login li + li::before {
        background-color: #ffffff;
    }

#main-page section {
    padding: 0;
}
/* Main */
section .section-wrap,
footer .footer-wrap {
    max-width: 1020px;
    margin: 0 auto;
}
footer .footer-wrap h1 {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
footer .footer-wrap h1 p { 
    margin-left: 16px;
    font-family: 'Poppins';
    font-weight: 500;
    font-size: 11px;
    line-height: 16px;
    color: #d0d0d0;
}

#main {
    background-color: #000000;
    position: relative;
    overflow: hidden;
    height: auto;
}

    #main .video-wrap {
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
        z-index: 0;
    }

    #main .video {
        width: 100%;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: 0;
        z-index: 0;
        opacity: 50%;
    }

    #main .section-wrap {
        padding: 258px 0 124px;
        text-align: center;
        position: relative;
        z-index: 1;
    }

    #main h2 {
        font-weight: normal;
        font-size: 60px;
        line-height: 75px;
        letter-spacing: -0.05em;
        color: #ffffff;
        margin-bottom: 84px;
    }

    #main .main-btn {
        display: inline-block;
        width: 216px;
        height: 48px;
        line-height: 48px;
        background-color: #231815;
        border-radius: 40px;
        font-weight: bold;
        font-size: 14px;
        color: #f7f7fc;
    }

#intro {
    background-color: #fee934;
}

    #intro .section-wrap {
        padding: 162px 0 148px;
        text-align: center;
    }

        #intro .section-wrap h3 {
            font-weight: bold;
            font-size: 50px;
            line-height: 63px;
            letter-spacing: -0.05em;
            color: #231815;
        }

        #intro .section-wrap p {
            margin-top: 20px;
            font-size: 24px;
            line-height: 30px;
            letter-spacing: -0.05em;
            color: #231815;
        }

#about01 {
    background-image: url(../../images/img_main_about01.png);
}

#about02 {
    background-image: url(../../images/img_main_about02.png);
}

#about03 {
    background-image: url(../../images/img_main_about03.png);
}

#about01,
#about02,
#about03 {
    background-color: #000000;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

    #about01 .section-wrap,
    #about02 .section-wrap {
        padding: 120px 0 380px;
    }

    #about03 .section-wrap {
        padding: 120px 0 420px;
    }

        #about01 .section-wrap .about-title,
        #about02 .section-wrap .about-title,
        #about03 .section-wrap .about-title {
            font-weight: bold;
            font-size: 50px;
            line-height: 63px;
            color: #ffffff;
            display: flex;
            justify-content: space-between;
        }

        #about01 .section-wrap .about-title,
        #about03 .section-wrap .about-title {
            flex-direction: row-reverse;
        }

            #about01 .section-wrap .about-title .text,
            #about02 .section-wrap .about-title .text,
            #about03 .section-wrap .about-title .text {
                font-weight: bold;
                font-size: 50px;
                line-height: 63px;
                color: #ffffff;
            }

            #about01 .section-wrap .about-title .num,
            #about02 .section-wrap .about-title .num,
            #about03 .section-wrap .about-title .num {
                font-weight: bold;
                font-size: 50px;
                line-height: 75px;
                color: #ffffff;
            }

        #about01 .section-wrap .about-sub-text,
        #about02 .section-wrap .about-sub-text,
        #about03 .section-wrap .about-sub-text {
            margin-top: 20px;
            font-weight: normal;
            font-size: 24px;
            line-height: 40px;
            letter-spacing: -0.05em;
            color: #ffffff;
        }

#info {
    background-color: #efefef;
}

    #info .section-wrap {
        padding: 60px 0 44px;
        position: relative;
    }


    #info .info-top-text {
        position: absolute;
        top: 225px;
        left: calc(50% + 120px);
        font-weight: bold;
        font-size: 28px;
        line-height: 35px;
        letter-spacing: -0.05em;
    }

    #info ul {
        position: relative;
        height: 840px;
    }

        #info ul li {
            position: absolute;
            display: flex;
            justify-content: center;
            align-items: center;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: all 1s;
        }

            #info ul li.on {
                opacity: 1;
            }

            #info ul li img {
                width: auto;
                height: 100%;
            }

            #info ul li .text-area {
                margin-left: 120px;
                height: auto;
                flex-basis: 350px;
                margin-top: 80px;
            }

                #info ul li .text-area strong,
                #info ul li .text-area p {
                    display: block;
                    width: 100%;
                }

                #info ul li .text-area .num {
                    font-weight: bold;
                    font-size: 100px;
                    line-height: 150px;
                    color: #231815;
                }

                #info ul li .text-area .title {
                    margin-top: 8px;
                    font-weight: bold;
                    font-size: 50px;
                    line-height: 63px;
                    letter-spacing: -0.05em;
                    color: #231815;
                }

                #info ul li .text-area p {
                    margin-top: 36px;
                    font-weight: normal;
                    font-size: 24px;
                    line-height: 40px;
                    letter-spacing: -0.05em;
                    color: #231815;
                }

footer {
    background-color: #999999;
}

    footer .footer-wrap {
        padding: 32px 0 24px;
    }

    footer .footer-info-list:first-of-type {
        margin-top: 12px;
    }

    footer .footer-info-list {
        display: flex;
        justify-content: space-between;
    }

        footer .footer-info-list li {
            width: 240px;
            font-weight: 500;
            font-size: 10px;
            line-height: 22px;
        }

            footer .footer-info-list li em {
                color: #d0d0d0;
            }

            footer .footer-info-list li span {
                color: #ffffff;
            }

            footer .footer-info-list li a {
                display: inline-block;
                line-height: 24px;
                color: #ffffff;
            }

    footer .copyright {
        margin-top: 8px;
        font-weight: 600;
        font-size: 7px;
        line-height: 24px;
        color: #d0d0d0;
    }


/* 로그인/회원가입 공통 */
.input-data-area .input-data-wrap {
    width: 428px;
    margin: 0 auto;
    padding: 104px 0 104px;
}

.input-data-area.login-area .input-data-wrap {
    padding: 238px 0 263px;
}

.input-data-area h2 {
    font-weight: bold;
    font-size: 48px;
    line-height: 56px;
    letter-spacing: 1px;
    color: #14142b;
}
.input-data-area h2.login_title.type_apply_complete {
    text-align: center;
}
.input-data-area h2.login_title.type_apply_complete strong {
    display: block;
    font-weight: 700;
    font-size: 40px;
    line-height: 40px;
    color: #231815;
    white-space: nowrap;
}
.input-data-area h2.login_title.type_apply_complete span {
    display: block;
    font-weight: 500;
    font-size: 20px;
    line-height: 40px;
    color: #999999;
    white-space: nowrap;
}

.input-data-area h5 {
    font-weight: bold;
    font-size: 20px;
    line-height: 56px;
    letter-spacing: 1px;
    color: #14142b;
}


.input-data-area .input-list-area {
    margin-top: 20px;
}

    .input-data-area .input-list-area li {
        margin-bottom: 16px;
    }

        .input-data-area .input-list-area li:last-of-type {
            margin-bottom: 0;
        }

.input-data-area input[type="text"],
.input-data-area input[type="password"],
.input-data-area input[type="number"] {
    width: 100%;
    height: 64px;
    line-height: 64px;
    background-color: #efefef;
    border-radius: 16px;
    border: 0 !important;
    font-weight: normal;
    font-size: 15px;
    letter-spacing: 0.75px;
    color: #231815;
    padding: 0 24px;
    box-sizing: border-box;
}

.input-data-area select,
.input-data-area select:focus {
    width: 100%;
    height: 64px;
    line-height: 64px;
    background-color: #efefef;
    border-radius: 16px;
    border: 0 !important;
    font-weight: normal;
    font-size: 15px;
    letter-spacing: 0.75px;
    color: #999999;
    padding: 0 24px;
    box-sizing: border-box;
}

.input-data-area .form_select.on,
.input-data-area .form_select.on {
    color: #231815;
}

.input-data-area input[type="text"]::placeholder,
.input-data-area input[type="password"]::placeholder,
.input-data-area input[type="number"]::placeholder {
    color: #999999;
}

.input-data-area .btn-input-box {
    position: relative;
    width: 100%;
    height: 64px;
}

    .input-data-area .btn-input-box input {
        padding-right: 116px;
    }

    .input-data-area .btn-input-box button {
        position: absolute;
        display: inline-block;
        width: 92px;
        height: 40px;
        line-height: 40px;
        top: 50%;
        right: 12px;
        transform: translateY(-50%);
        border-radius: 8px;
        font-weight: normal;
        font-size: 13px;
        color: #ffffff;
        background-color: #231815;
        border: 0;
        padding: 0;
    }

        .input-data-area .btn-input-box button:disabled {
            background-color: #d0d0d0;
        }

    .input-data-area .btn-input-box.type-file input[type="file"] {
        width: 100%;
        height: 64px;
    }

        .input-data-area .btn-input-box.type-file input[type="file"] + label {
            width: 100%;
            height: 64px;
            line-height: 64px;
            background-color: #efefef;
            border-radius: 16px;
            border: 0 !important;
            font-size: 15px;
            letter-spacing: 0.75px;
            color: #999999;
            padding: 0 24px;
            box-sizing: border-box;
        }

            .input-data-area .btn-input-box.type-file input[type="file"] + label.on {
                color: #231815;
            }

            .input-data-area .btn-input-box.type-file input[type="file"] + label::after {
                content: "파일첨부";
                position: absolute;
                display: inline-block;
                width: 92px;
                height: 40px;
                line-height: 40px;
                top: 50%;
                right: 12px;
                transform: translateY(-50%);
                border-radius: 8px;
                font-weight: normal;
                font-size: 13px;
                color: #ffffff;
                background-color: #231815;
                border: 0;
                padding: 0;
                text-align: center;
            }

.login-option-area {
    margin-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .login-option-area label {
        display: flex;
        align-items: center;
    }

    .login-option-area input[type="checkbox"] {
        display: inline-block;
        width: 0;
        height: 0;
        overflow: hidden;
        opacity: 0;
    }

        .login-option-area input[type="checkbox"] + i {
            display: inline-block;
            width: 24px;
            height: 24px;
            background-image: url(../../images/chkbox_off.svg);
            background-repeat: no-repeat;
            background-position: center center;
            background-size: 24px;
            margin-right: 8px;
        }

        .login-option-area input[type="checkbox"]:checked + i {
            background-image: url(../../images/chkbox_on.svg);
        }

        .login-option-area input[type="checkbox"] + i + span {
            font-weight: normal;
            font-size: 18px;
            line-height: 24px;
            letter-spacing: 0.75px;
            color: #231815;
        }

    .login-option-area > a {
        font-weight: normal;
        font-size: 16px;
        line-height: 20px;
        letter-spacing: -0.05em;
        color: #999999;
    }

    .login-option-area + .main-btn-area {
        margin-top: 24px;
    }

/* Sign up */
#signup .section-wrap {
    padding: 120px 0 104px;
}

.signup-title-area {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

    .signup-title-area p {
        font-weight: normal;
        font-size: 12px;
        color: #999999;
    }

.signup-input-area .main-btn-area {
    margin-top: 16px;
}

.signup-input-area .signup-phone-area {
    font-weight: normal;
    font-size: 16px;
    line-height: 20px;
    display: block;
    margin: 32px auto 0;
    letter-spacing: -0.05em;
    color: #231815;
    text-align: center;
}

.main-input-area {
    width: 428px;
    margin: 0 auto;
}

.modal-content.login-modal {
    width: 312px;
    padding: 24px;
    border-radius: 24px;
}

    .modal-content.login-modal .modal-header {
        padding: 0;
        display: block;
        border-bottom: 0;
    }

        .modal-content.login-modal .modal-header .modal-title {
            text-align: center;
            font-weight: bold;
            font-size: 24px;
            line-height: 32px;
            color: #222222;
            padding-bottom: 24px;
        }

    .modal-content.login-modal .modal-body {
        padding: 0;
    }

    .modal-content.login-modal .form-group {
        margin-bottom: 16px;
    }

    .modal-content.login-modal .modal-footer {
        border-top: 0;
        padding: 0;
        justify-content: space-between;
    }

        .modal-content.login-modal .modal-footer .btn {
            margin: 0;
            height: 64px;
            line-height: 64px;
            border-radius: 12px;
            font-weight: bold;
            font-size: 15px;
            color: #ffffff;
            padding: 0;
            border: 0;
        }

            .modal-content.login-modal .modal-footer .btn.btn-secondary {
                width: 100px;
                background-color: #d0d0d0;
            }

.modal-dialog-centered.center {
    justify-content: center;
}

.modal-content.login-modal .modal-footer .btn.btn-primary {
    width: calc(100% - 108px);
    background-color: #231815;
}

/* FAQ */
.input-data-area.faq-area .input-data-wrap.faq-wrap {
    width: 720px;
    padding: 174px 0 188px;
}

    .input-data-area.faq-area .input-data-wrap.faq-wrap h2 {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

        .input-data-area.faq-area .input-data-wrap.faq-wrap h2 span {
            font-weight: 500;
            font-size: 48px;
            line-height: 60px;
            letter-spacing: -0.05em;
            color: #999999;
        }

    .input-data-area.faq-area .input-data-wrap.faq-wrap .faq-list {
        margin-top: 26px;
    }

        .input-data-area.faq-area .input-data-wrap.faq-wrap .faq-list dt {
            padding: 16px 36px 15px 0;
            font-weight: normal;
            font-size: 16px;
            letter-spacing: -0.05em;
            color: #231815;
            background-image: url(../../images/icon_faq_arrow_gray.svg);
            background-repeat: no-repeat;
            background-position: calc(100% - 13px) center;
            border-bottom: 1px solid #efefef;
            box-sizing: border-box;
            cursor: pointer;
        }

            .input-data-area.faq-area .input-data-wrap.faq-wrap .faq-list dt.on {
                background-image: url(../../images/icon_faq_arrow_black.svg);
            }

        .input-data-area.faq-area .input-data-wrap.faq-wrap .faq-list dd {
            height: 0;
            transition: height 0.5s;
            overflow: hidden;
            background-color: #f8f8f8;
        }

            .input-data-area.faq-area .input-data-wrap.faq-wrap .faq-list dd p {
                padding: 24px 24px 20px;
                font-weight: normal;
                font-size: 14px;
                line-height: 172.2%;
                letter-spacing: -0.05em;
                color: #666666;
            }

.intro_contents_wrap .intro_section .section_wrap {
    width: 100%;
    max-width: 1040px;
    margin: 0 auto;
    color: #231815;
    letter-spacing: -0.05em;
    font-family: 'SpoqaHanSansNeo', 'Poppins', '돋움', Dotum, Arial, AppleGothic, sans-serif !important;
}
.intro_section .section_title_area .title_wrap {
    display: inline-block;
    position: relative;
}
.intro_section .section_title_area .border_wrap {
    margin-top: 12px;
    border-top: 1px solid #d0d0d0;
}
.intro_section .section_title_area .border_wrap .section_sub_text {
    margin-top: 12px;
    font-weight: 400;
    font-size: 24px;
    line-height: 30px;
}
.intro_section .section_title_area .section_title {
    font-weight: 700;
    font-size: 50px;
    line-height: 63px;
    position: relative;
    width: auto;
    display: inline-block;
    z-index: 2;
}
.intro_section .section_title_area .title_wrap::before {
    content: "";
    position: absolute;
    display: inline-block;
    width: 100%;
    height: 10px;
    background-color: #ffeb03;
    border-radius: 28px;
    bottom: 10px;
    z-index: 1;
}
.intro_section.intro_main_section {
    background-color: #FEE934;
    position: relative;
    overflow: hidden;
}
.intro_section.intro_main_section .section_bg_img {
    position: absolute;
    left: calc(50% + 250px);
    transform: translateX(-50%);
    width: 918px;
}
.intro_section.intro_main_section .main_text_area { 
    padding-top: 157px;
    padding-left: 176px;
    padding-bottom: 122px;
}
.intro_section.intro_main_section .main_text_area .top_sub_text {
    font-weight: 400;
    font-size: 40px;
    line-height: 40px;
}
.intro_section.intro_main_section .main_text_area .main_text {
    margin-top: 14px;
    font-weight: 700;
    font-size: 60px;
    line-height: 75px;
}
.intro_section.intro_main_section .main_text_area .label_area {
    margin-top: 26px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.intro_section.intro_main_section .main_text_area .label_area .label {
    background-color: #ffffff;
    border-radius: 40px;
    height: 34px;
    line-height: 34px;
    padding: 0 13px;
    font-weight: 400;
    font-size: 24px;
}
.intro_section.intro_main_section .main_text_area .label_area .label + .label {
    margin-top: 8px;
}
.intro_section.intro_section01 .section_wrap {
    padding: 50px 0;
    text-align: center;
}
.intro_section.intro_section01 .section_wrap .contents_text {
    font-weight: 400;
    font-size: 24px;
    line-height: 40px;
}
.intro_section.intro_section02 {
   background-color: #f8f8f8;
}
.intro_section.intro_section02 .section_wrap {
    padding: 100px 0;
}
.intro_section.intro_section02 .section_contents_wrap {
    margin-top: 50px;
}
.intro_section.intro_section02 .section_contents_wrap .contents_list_area {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.intro_section.intro_section02 .section_contents_wrap .contents_list_area .box {
    background-color: #ffffff;
    border: 1px solid #ececec;
    border-radius: 20px;
    padding: 30px;
    width: calc(50% - 8px);
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
}
.intro_section.intro_section02 .section_contents_wrap .contents_list_area .box:nth-of-type(n+3) {
    width: calc(33% - 8px);
    margin-top: 24px;
}
.intro_section.intro_section02 .section_contents_wrap .contents_list_area .box .box_title {
    width: 112px;
    font-weight: 700;
    font-size: 28px;
    line-height: 35px;
    letter-spacing: -0.01em;
    margin-right: 32px;
}
.intro_section.intro_section02 .section_contents_wrap .contents_list_area .box:last-of-type .box_title {
    width: 84px;
}
.intro_section.intro_section02 .section_contents_wrap .contents_list_area .box .inner_text_area {
    font-weight: 300;
    font-size: 20px;
    line-height: 25px;
    letter-spacing: -0.01em;
    color: #666666;
}
.intro_section.intro_section02 .section_contents_wrap .contents_list_area .box .sub_guide_text {
    position: absolute;
    left: 30px;
    top: 132px;
    font-weight: 300;
    font-size: 14px;
    line-height: 23px;
    letter-spacing: -0.01em;
    color: #999999;
}
.intro_section.intro_section03 .section_wrap {
    padding: 124px 0 140px;
}
.intro_section.intro_section03 .contents_list_wrap01 {
    padding-top: 56px;
}
.intro_section.intro_section03 .contents_list_wrap01 .list_wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.intro_section.intro_section03 .contents_list_wrap01 .list_wrap .box {
    width: 370px;
    background-color: #ffffff;
    border: 1px solid #ececec;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.intro_section.intro_section03 .contents_list_wrap01 .list_wrap .box i {
    display: inline-block;
    width: 81px;
    height: 76px;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 30px;
}
.intro_section.intro_section03 .contents_list_wrap01 .list_wrap .box:nth-of-type(1) i {
    background-image: url(../../resources/image/icon_intro_guide01-1.svg);
}
.intro_section.intro_section03 .contents_list_wrap01 .list_wrap .box:nth-of-type(2) i {
    background-image: url(../../resources/image/icon_intro_guide01-2.svg);
}
.intro_section.intro_section03 .contents_list_wrap01 .list_wrap .box + .box { 
    margin-left: 56px;
}
.intro_section.intro_section03 .contents_list_wrap01 .list_wrap .box_text {
    font-weight: 400;
    font-size: 20px;
    line-height: 25px;
    letter-spacing: -0.01em;
}
.intro_section.intro_section03 .contents_list_wrap01 .list_wrap .box_text b {
    font-weight: 700;
}
.intro_section.intro_section03 .contents_list_wrap02 {
    margin-top: 104px;
    position: relative;
}
.intro_section.intro_section03 .contents_list_wrap02 .list_wrap::after {
    content: "";
    position: absolute;
    display: inline-block;
    height: 100%;
    left: 50%;
    top: 0;
    border-left: 1px solid #d0d0d0;
}
.intro_section.intro_section03 .contents_list_wrap02 .box {
    border-left: 1px solid #d0d0d0;
    border-right: 1px solid #d0d0d0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
}
.intro_section.intro_section03 .contents_list_wrap02 .box:nth-of-type(2) {
    flex-direction: row-reverse;
}
.intro_section.intro_section03 .contents_list_wrap02 .box:nth-of-type(2) .img_area {
    padding-top: 108px;
}
.intro_section.intro_section03 .contents_list_wrap02 .box:nth-of-type(3) .img_area {
    padding-top: 111px;
}
.intro_section.intro_section03 .contents_list_wrap02 .box .img_area {
    width: 50%;
}
.intro_section.intro_section03 .contents_list_wrap02 .box .text_area {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    height: 100%;
    padding-left: 46px;
}
.intro_section.intro_section03 .contents_list_wrap02 .box .text_area .num {
    display: inline-block;
    font-family: 'Gmarket Sans';
    width: 33px;
    height: 33px;
    background-color: #000000;
    font-weight: 500;
    font-size: 20px;
    line-height: 37px;
    color: #ffe100;
    text-align: center;
    border-radius: 50%;
}
.intro_section.intro_section03 .contents_list_wrap02 .box .text_area .list_title {
    margin-top: 8px;
    font-weight: 700;
    font-size: 30px;
    line-height: 34px;
    color: #101214;
}
.intro_section.intro_section03 .contents_list_wrap02 .box .text_area .list_title + .list_sub_text {
    margin-top: 18px;
}
.intro_section.intro_section03 .contents_list_wrap02 .box .text_area .sub_img_area + .list_sub_text {
    margin-top: 10px;
}
.intro_section.intro_section03 .contents_list_wrap02 .box .text_area .list_sub_text {
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: -0.01em;
    color: #666666;
}
.intro_section.intro_section03 .contents_list_wrap02 .box .text_area .list_sub_text + .list_sub_text {
    margin-top: 12px;
}
.intro_section.intro_section03 .contents_list_wrap02 .box .text_area .sub_img_area {
    margin-top: 18px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.intro_section.intro_section03 .contents_list_wrap02 .box .text_area .sub_img_area span {
    background-color: #6a6a6a;
    border-radius: 9px;
    padding: 0 8px;
    height: 32px;
    line-height: 32px;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: -0.01em;
    color: #ffffff;
}
.intro_section.intro_section03 .contents_list_wrap02 .box .text_area .sub_img_area i { 
    display: inline-block;
    width: 38px;
    height: 8px;
    margin: 0 6px;
    background-image: url(../../resources/image/icon_arrow10.svg);
    background-repeat: no-repeat;
    background-position: center;
}
.intro_section.intro_section03 .contents_list_wrap02 .box .text_area .list_sub_text b {
    font-weight: 700;
}
.intro_section.intro_section03 .contents_list_wrap02 .box:nth-of-type(1) .img_area .img_wrap {
    margin-top: -14px;
}
.intro_section.intro_section03 .contents_list_wrap02 .box:nth-of-type(3) .img_area .img_wrap {
    margin-bottom: -26px;
}
.intro_section.intro_section03 .contents_list_wrap02 .box .img_area .img_wrap {
    border-radius: 15px;
    overflow: hidden;
}
.intro_section.intro_section03 .contents_list_wrap02 .box .text_area {
    width: 50%;
}
.intro_section.intro_section04 .section_contents_wrap {
    padding-top: 50px;
}
.intro_section.intro_section04 .step_list_area {
    position: relative;
    height: 250px;
    width: 100%;
}
.intro_section.intro_section04 .step_list_area .box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 300px;
    height: 250px;
    position: absolute;
    background-repeat: no-repeat;
    background-position: center;
    top: 0;
    padding-right: 50px;
    text-align: center;
}
.intro_section.intro_section04 .step_list_area .box .num {
    font-weight: 700;
    font-size: 30px;
    line-height: 25px;
}
.intro_section.intro_section04 .step_list_area .box:nth-of-type(1) {
    background-image: url(../../resources/image/img_intro_step_bg01.svg);
    left: 0;
    z-index: 4;
}
.intro_section.intro_section04 .step_list_area .box:nth-of-type(2) {
    background-image: url(../../resources/image/img_intro_step_bg02.svg);
    left: 264px;
    z-index: 3;
}
.intro_section.intro_section04 .step_list_area .box:nth-of-type(3) {
    background-image: url(../../resources/image/img_intro_step_bg03.svg);
    left: 529px;
    z-index: 2;
}
.intro_section.intro_section04 .step_list_area .box:nth-of-type(4) {
    width: 250px;
    right: 0;
    background-image: url(../../resources/image/img_intro_step_bg04.svg);
    z-index: 1;
    padding-right: 0;
}
.intro_section.intro_section04 .step_list_area .box:nth-of-type(1) .num {
    color: #94c5ff;
}
.intro_section.intro_section04 .step_list_area .box:nth-of-type(2) .num {
    color: #7fd5da;
}
.intro_section.intro_section04 .step_list_area .box:nth-of-type(3) .num {
    color: #aba1f0;
}
.intro_section.intro_section04 .step_list_area .box:nth-of-type(4) .num {
    color: #e8a1b5;
}
.intro_section.intro_section04 .step_list_area .box .inner_text {
    margin-top: 10px;
    height: 102px;
    font-weight: 500;
    font-size: 20px;
    line-height: 25px;
    color: #777777;
}
.intro_section.intro_section04 .video_view_wrap {
    margin-top: 50px;
    width: 100%;
}
.intro_section.intro_section04 .video_view_wrap iframe {
    width: 100%;
    height: 585px;
}
.intro_button_area {
    margin-top: 100px;
    height: 72px;
    position: relative;
}
.intro_button_area .btn {
    position: fixed;
    width: 428px;
    height: 72px;
    line-height: 72px;
    background-color: #231815;
    border-radius: 16px;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 0.75px;
    color: #fcfcfc;
    left: 50%;
    transform: translateX(-50%);
    bottom: 80px;
    z-index: 50;
}
.intro_button_area .btn.fix {
    bottom: 0;
    position: absolute;
}
.intro_contents_wrap .input-data-area.faq-area .input-data-wrap.faq-wrap {
    width: 100%; 
    max-width: 1040px;
}
    .intro_contents_wrap .input-data-area.faq-area .input-data-wrap.faq-wrap .faq-sub-guide_text {
        margin-top: 16px;
        font-size: 13px;
        font-weight: normal;
        line-height: 22px;
        color: #999999;
        word-break: keep-all;
    }.intro_contents_wrap .input-data-area.faq-area .input-data-wrap.faq-wrap .faq-sub-guide_text b {
         font-weight: bold;
         color: #666666;
     }

@media (max-width: 1023px) {
    nav .main-nav .nav-wrap {
        width: 100%;
        padding: 0 24px;
    }

    section .section-wrap,
    footer .footer-wrap {
        width: 732px;
    }

    #info .section-wrap {
        width: 100%;
    }

    #info ul li .text-area {
        margin-left: 1vw;
    }

    #info ul {
        height: 800px;
    }
    /* FAQ */
    .input-data-area.faq-area .input-data-wrap.faq-wrap {
        max-width: 720px;
        width: 100%;
        padding: 126px 24px 92px;
    }

    footer .footer-info-list li:nth-of-type(2),
    footer .footer-info-list li:nth-of-type(3) {
        width: 150px;
    }
}
@media screen and (max-width: 1024px) {
    .intro_section.intro_main_section .section_bg_img {
        width: 850px;
        left: calc(50% + 300px);
    }
}

    @media screen and (max-width:767px) {
        .pc-only {
            display: none;
        }

        .m-only {
            display: inline-block;
        }

        .main-btn-area .btn {
            height: 64px;
            line-height: 64px;
        }
        nav.main-nav-m { 
            position: fixed; 
            top: 0; 
            left: 0; 
            width: 100%;
            height: 56px;
            background-color: #ffffff;
            padding: 0 24px;
            z-index: 100;
        }
        nav.main-nav-m .nav-wrap {
            width: 100%;
            height: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        nav.main-nav-m .nav-wrap .ham {
            display: inline-block;
            width: 20px;
            height: 35px;
            overflow: hidden;
            text-indent: -999999px;
            background-image: url(../../resources/image/icon_ham.svg);
            background-repeat: no-repeat;
            background-position: center;
        }
        nav.main-nav-m .nav-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 101;
            display: none;
        }
        nav.main-nav-m.active .nav-bg {
            display: block;
        }
        nav.main-nav-m .sub-nav-wrap {
            position: fixed;
            top: 0;
            left: 100%;
            width: 100%;
            height: 100%;
            z-index: 102;
            transition: left 0.5s;
            background-color: #ffffff;
            padding: 0 24px;
        }
        nav.main-nav-m .sub-nav-wrap .m-top-nav-wrap {
            width: 100%; 
            height: 56px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        nav.main-nav-m .sub-nav-wrap .m-top-nav-wrap .nav-exit-btn {
            display: inline-block;
            width: 20px;
            height: 35px;
            overflow: hidden;
            text-indent: -999999px;
            background-image: url(../../resources/image/icon_exit_nav.svg);
            background-repeat: no-repeat;
            background-position: center;
        }
        nav.main-nav-m .sub-nav-wrap .m-nav-list {
            position: absolute;
            left: 24px;
            top: 104px;
        }
        nav.main-nav-m .sub-nav-wrap .m-nav-list li + li {
            margin-top: 44px;
        }
        nav.main-nav-m .sub-nav-wrap .m-nav-list a {
            font-weight: 700;
            display: inline-block;
            font-size: 26px;
            line-height: 30px;
            color: #231815;
        }
        nav.main-nav-m .sub-nav-wrap .login-btn {
            position: absolute;
            display: inline-block;
            left: 24px;
            bottom: 20px;
            font-weight: 500;
            font-size: 15px;
            line-height: 24px;
            color: #999999;
        }
        nav.main-nav-m.active .sub-nav-wrap {
            left: 0;
        }

        section .section-wrap,
        footer .footer-wrap {
            width: 100%;
            padding: 0 24px;
        }

        #main .section-wrap {
            padding: 290px 0 80px;
        }

        #main h2 {
            font-size: 32px;
            line-height: 40px;
            margin-bottom: 32px;
        }

        #intro .section-wrap {
            padding: 52px 0;
        }

            #intro .section-wrap h3 {
                font-size: 30px;
                line-height: 38px;
            }

            #intro .section-wrap p {
                margin-top: 8px;
                font-size: 16px;
                line-height: 24px;
            }

        #about01 .section-wrap,
        #about02 .section-wrap,
        #about03 .section-wrap {
            width: 240px;
            padding: 80px 0 0px;
            height: 360px;
        }

            #about01 .section-wrap .about-title,
            #about02 .section-wrap .about-title,
            #about03 .section-wrap .about-title {
                display: block;
                font-size: unset;
                line-height: unset;
            }

                #about01 .section-wrap .about-title .num,
                #about02 .section-wrap .about-title .num,
                #about03 .section-wrap .about-title .num {
                    display: block;
                    font-size: 32px;
                    line-height: 48px;
                }

                #about01 .section-wrap .about-title .text,
                #about02 .section-wrap .about-title .text,
                #about03 .section-wrap .about-title .text {
                    font-size: 26px;
                    line-height: 33px;
                }

            #about01 .section-wrap .about-sub-text,
            #about02 .section-wrap .about-sub-text,
            #about03 .section-wrap .about-sub-text {
                margin-top: 8px;
                font-size: 16px;
                line-height: 24px;
            }

                #about01 .section-wrap .about-sub-text br,
                #about02 .section-wrap .about-sub-text br,
                #about03 .section-wrap .about-sub-text br {
                    display: none;
                }

        #info .section-wrap {
            padding: 116px 0 24px;
        }

        #info .info-top-text {
            left: 50%;
            top: 52px;
            transform: translateX(-50%);
            font-size: 22px;
            line-height: 28px;
            white-space: nowrap;
        }

        #info ul {
            height: 568px;
        }

            #info ul li {
                display: block;
                margin: 0 auto;
            }

                #info ul li img {
                    display: block;
                    margin: 0 auto;
                    height: 380px;
                }

                #info ul li .text-area {
                    margin: 16px auto 0;
                    width: 210px;
                }

                    #info ul li .text-area .num {
                        font-size: 32px;
                        line-height: 48px;
                        width: auto;
                    }

                    #info ul li .text-area .title {
                        margin-top: 0;
                        font-size: 26px;
                        line-height: 33px;
                        width: auto;
                    }

                    #info ul li .text-area p {
                        margin-top: 8px;
                        font-size: 16px;
                        line-height: 24px;
                        width: auto;
                    }

        #signup .section-wrap {
            width: 100%;
            padding: 44px 24px;
        }

        .main-input-area {
            width: 100%;
        }

        .signup-title-area {
            display: block;
        }

        .input-data-area h2 {
            display: block;
            font-weight: bold;
            font-size: 32px;
            line-height: 56px;
        }

        .input-data-area p {
            line-height: 12px;
        }

        .input-data-area .btn-input-box.type-file input[type="file"] + label {
            padding-right: 116px;
            white-space: nowrap;
            text-overflow: ellipsis;
            overflow: hidden;
        }
        /* FAQ */
        .input-data-area.faq-area .input-data-wrap.faq-wrap h2 {
            display: block;
        }

            .input-data-area.faq-area .input-data-wrap.faq-wrap h2 strong,
            .input-data-area.faq-area .input-data-wrap.faq-wrap h2 span {
                display: block;
                height: 36px;
            }

            .input-data-area.faq-area .input-data-wrap.faq-wrap h2 strong {
                font-weight: bold;
                font-size: 48px;
                line-height: 56px;
                letter-spacing: 1px;
            }

            .input-data-area.faq-area .input-data-wrap.faq-wrap h2 span {
                margin-top: 22px;
                font-weight: bold;
                font-size: 32px;
                line-height: 56px;
                letter-spacing: 1px;
                color: #14142b;
            }

        footer .footer-wrap {
            padding: 32px 0 32px 40px;
        }

        .input-data-area .input-data-wrap {
            width: 100%;
            padding: 100px 24px 44px;
        }

        .input-data-area.login-area .input-data-wrap {
            padding: 126px 24px 144px;
        }

        footer .footer-info-list {
            display: block;
        }

            footer .footer-info-list li {
                margin-bottom: 12px;
            }

                footer .footer-info-list li:last-of-type {
                    margin-bottom: 6px;
                }

        .intro_section.intro_main_section {
            margin-top: 56px;
        }

            .intro_section.intro_main_section .main_text_area {
                padding-top: 66px;
                padding-left: 24px;
                padding-bottom: 66px;
            }

            .intro_section.intro_main_section .section_bg_img {
                width: 430px;
                min-width: 410px;
                right: -154px;
                left: inherit;
                transform: none;
                bottom: 38px;
            }

            .intro_section.intro_main_section .main_text_area .top_sub_text {
                font-size: 16px;
                line-height: 20px;
            }

            .intro_section.intro_main_section .main_text_area .main_text {
                margin-top: 8px;
                font-size: 32px;
                line-height: 40px;
            }

            .intro_section.intro_main_section .main_text_area .label_area {
                margin-top: 12px;
            }

                .intro_section.intro_main_section .main_text_area .label_area .label {
                    height: 24px;
                    line-height: 24px;
                    font-size: 16px;
                }

        .intro_section.intro_section01 .section_wrap {
            padding: 32px 0;
        }

            .intro_section.intro_section01 .section_wrap .contents_text {
                font-size: 16px;
                line-height: 24px;
            }

        .intro_section .section_title_area .section_title {
            font-size: 26px;
            line-height: 33px;
        }

        .intro_section .section_title_area .title_wrap::before {
            bottom: 4px;
        }

        .intro_section .section_title_area .border_wrap {
            margin-top: 10px;
        }

        .intro_contents_wrap .intro_section .section_wrap {
            padding: 40px 24px;
        }

        .intro_section .section_title_area .border_wrap .section_sub_text {
            font-size: 16px;
            line-height: 24px;
        }

        .intro_section.intro_section02 .section_contents_wrap {
            margin-top: 12px;
        }

            .intro_section.intro_section02 .section_contents_wrap .contents_list_area {
                justify-content: flex-start;
                flex-direction: column;
            }

                .intro_section.intro_section02 .section_contents_wrap .contents_list_area .box {
                    width: 100%;
                }

                    .intro_section.intro_section02 .section_contents_wrap .contents_list_area .box + .box {
                        margin-top: 10px;
                    }

                    .intro_section.intro_section02 .section_contents_wrap .contents_list_area .box:nth-of-type(n+3) {
                        width: 100%;
                    }

                    .intro_section.intro_section02 .section_contents_wrap .contents_list_area .box .box_title {
                        width: 60px;
                        font-size: 14px;
                        line-height: 18px;
                        letter-spacing: -0.02em;
                    }

                    .intro_section.intro_section02 .section_contents_wrap .contents_list_area .box .inner_text_area {
                        font-size: 14px;
                        line-height: 18px;
                        letter-spacing: -0.02em;
                    }

        .intro_contents_wrap .intro_section .section_wrap {
            padding: 40px 24px;
        }

        .intro_section.intro_section03 .contents_list_wrap01 {
            padding-top: 30px;
        }

            .intro_section.intro_section03 .contents_list_wrap01 .list_wrap {
                flex-direction: column;
            }

                .intro_section.intro_section03 .contents_list_wrap01 .list_wrap .box {
                    padding: 15px;
                    justify-content: center;
                    width: 100%;
                }

                    .intro_section.intro_section03 .contents_list_wrap01 .list_wrap .box i {
                        width: 30px;
                        height: 28px;
                        margin-right: 20px;
                        background-size: contain;
                    }

                    .intro_section.intro_section03 .contents_list_wrap01 .list_wrap .box + .box {
                        margin: 0;
                        margin-top: 10px;
                    }

                .intro_section.intro_section03 .contents_list_wrap01 .list_wrap .box_text {
                    font-size: 13px;
                    line-height: 16px;
                    width: 120px;
                }

        .intro_section.intro_section03 .contents_list_wrap02 .box {
            flex-direction: column-reverse;
        }

            .intro_section.intro_section03 .contents_list_wrap02 .box + .box {
                margin-top: 30px;
            }

            .intro_section.intro_section03 .contents_list_wrap02 .box:nth-of-type(2) {
                flex-direction: column-reverse;
            }

        .intro_section.intro_section03 .contents_list_wrap02 {
            margin-top: 35px;
        }

            .intro_section.intro_section03 .contents_list_wrap02 .list_wrap::after {
                display: none;
            }

            .intro_section.intro_section03 .contents_list_wrap02 .box {
                border: 0;
            }

                .intro_section.intro_section03 .contents_list_wrap02 .box .text_area {
                    padding: 0;
                    width: 100%;
                }

                .intro_section.intro_section03 .contents_list_wrap02 .box .img_area {
                    width: 100%;
                }

                .intro_section.intro_section03 .contents_list_wrap02 .box .text_area .list_title {
                    font-size: 26px;
                    line-height: 34px;
                }

                .intro_section.intro_section03 .contents_list_wrap02 .box .text_area .list_sub_text {
                    font-size: 16px;
                    line-height: 28px;
                }

                .intro_section.intro_section03 .contents_list_wrap02 .box .text_area .list_title + .list_sub_text {
                    margin-top: 12px;
                }

                .intro_section.intro_section03 .contents_list_wrap02 .box:nth-of-type(1) .img_area .img_wrap {
                    margin-top: 16px;
                }

                .intro_section.intro_section03 .contents_list_wrap02 .box .img_area .img_wrap {
                    margin-top: 16px;
                }

                .intro_section.intro_section03 .contents_list_wrap02 .box:nth-of-type(2) .img_area {
                    padding-top: 0;
                }

                .intro_section.intro_section03 .contents_list_wrap02 .box .text_area .sub_img_area {
                    margin-top: 12px;
                }

                    .intro_section.intro_section03 .contents_list_wrap02 .box .text_area .sub_img_area + .list_sub_text {
                        margin-top: 8px;
                    }

                .intro_section.intro_section03 .contents_list_wrap02 .box .text_area .list_sub_text + .list_sub_text {
                    margin-top: 20px;
                }

                .intro_section.intro_section03 .contents_list_wrap02 .box:nth-of-type(3) .img_area {
                    padding-top: 0;
                }

                    .intro_section.intro_section03 .contents_list_wrap02 .box:nth-of-type(3) .img_area .img_wrap {
                        margin-bottom: 0;
                    }

        .intro_section.intro_section04 .section_contents_wrap {
            padding-top: 10px;
        }

        .intro_section.intro_section04 .step_list_area .box,
        .intro_section.intro_section04 .step_list_area .box:nth-of-type(4) {
            width: 163px;
            height: 135px;
            background-size: contain;
        }

        .intro_section.intro_section04 .step_list_area {
            height: 285px;
        }

        .intro_section.intro_section04 .section_contents_wrap > img {
            width: 100%;
        }

        .intro_section.intro_section04 .video_view_wrap {
            padding-top: 30px;
        }

            .intro_section.intro_section04 .video_view_wrap iframe {
                height: 48.75vw;
            }

        .intro_button_area {
            margin-top: 30px;
            height: 48px;
        }

            .intro_button_area .btn {
                width: 216px;
                height: 48px;
                line-height: 48px;
                border-radius: 40px;
                font-size: 14px;
            }

        .intro_section .input-data-area.faq-area .input-data-wrap.faq-wrap h2 span {
            color: #999999;
        }

        .intro_contents_wrap .input-data-area.faq-area .input-data-wrap.faq-wrap {
            padding: 30px 24px 55px;
        }

        .intro_button_area .btn {
            bottom: 16px;
            bottom: calc(constant(safe-area-inset-bottom) + 16px);
            bottom: calc(env(safe-area-inset-bottom) + 16px);
        }
    }
