 /****************** 공통 CSS ************************/
    /* Reset */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    ul,
    ol {
        list-style: none;
    }

    a {
        color: inherit;
        text-decoration: none;
    }

    button,
    select {
        cursor: pointer
    }

    button,
    input,
    textarea {
        font: inherit;
        border: none;
        background: none;
    }

    a,
    button,
    input[type="button"],
    input[type="submit"] {
        -webkit-appearance: none;
        appearance: none;
        background: none;
        border: 0;
        padding: 0;
        font: inherit;
        color: inherit;
        -webkit-tap-highlight-color: transparent;
        cursor: pointer;
    }

    label {
        -webkit-tap-highlight-color: transparent;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        outline: none;
    }

    table {
        border-collapse: collapse;
        border-spacing: 0;
    }

    input[type="number"]::-webkit-outer-spin-button,
    input[type="number"]::-webkit-inner-spin-button {
        -webkit-appearance: none;
    }

    html {
        -webkit-text-size-adjust: 100%;
        text-size-adjust: 100%;
        scroll-behavior: auto;
    }


    /* common */
    html,
    body {
        font-size: 34%;
        min-width: 375px;
        height: 100%;
        accent-color: var(--accent-color);
        background-color: #333;
    }

    img {
        max-width: 100%;
        height: auto;
        border: 0;
        display: block;
    }

    .img-area {
        position: relative;
        display: block;
    }

    .img-area img {
        display: inline-block;
        width: 100%;
        margin: 0 0 0 0;
        text-align: center;
        vertical-align: top;
    }
    .hidden {
        display: none;
    }

    @media (min-width: 480px) {

        html,
        body {
            font-size: 40%;
        }
    }

    @media (min-width: 750px) {

        html,
        body {
            font-size: 62.5%;
        }
    }

    /************************** GNB ************************/
    #gnb_wrap {
        background-color: #fff;
        width: 100%;
        height: 11rem;
        padding: 2rem;
        max-width: var(--layout-max-width);
        /* position: fixed; */ /* [20260716] gnb fixed 제거 */
        top: 0;
        left: 0;
        z-index: 9999;
        margin: 0 auto;
        display: block;
        /* [20260716] gnb fixed 제거 */
        /* left: 50%;
        transform: translateX(-50%); */
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    #gnb_wrap .gnb_logo img {
        width: auto;
        height: var(--gnb-logo-size ,7rem);
    }

    #gnb_wrap .gnb_menu {
        margin: .5rem 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 2.4rem;
    }

    #gnb_wrap .gnb_menu a {
        display: block;
    }

    #gnb_wrap .gnb_menu .gnb_location {
        font-family: 'SpoqaHanSansNeo';
        font-weight: 600;
        font-size: 2.6rem;
        letter-spacing: -0.04em;
        color: #1C3643;
        display:  flex;
        align-items: center;
        gap: 1rem;
    }

    #gnb_wrap .gnb_menu img {
        width: auto;
        height: 5.6rem;
        object-fit: contain;
    }

    /************************** LAYOUT ************************/
    #landing_container {
        inline-size: min(100%, var(--layout-max-width));
        margin-inline: auto;

        /* [20260716] gnb fixed 제거 */
        /* --gnb--height: 11rem;
        padding-top: var(--gnb--height); */
    }

    .container_wrap {
        width: 100%;
        margin: auto;
        background: var(--container-bg-color, #fff);
        font-size: 3.8rem;
    }

    .container,
    .section {
        position: relative
    }

    .help-text {
        text-align: center;
        font-size: 2.5rem;
        padding: 2rem 0
    }

    .landing-header {
        padding: 7rem 0 5rem;
    }

    .landing-header-slogun {
        font-family: 'SpoqaHanSansNeo';
        font-style: normal;
        font-weight: var(--slogun-font-weight, 300);
        font-size: var(--slogun-font-size, 4.4rem);
        line-height: 1.4;
        text-align: center;
        color: var(--slogun-color, #000);
        letter-spacing: -0.02em;
    }

    .landing-header-slogun strong {
        font-weight: var(--slogun-strong-font-weight, 700);
        font-size: var(--slogun-strong-font-size);
    }

    .landing-header-slogun .sub_text {
        font-size: 2.4rem;
        color: #444;
        margin-top: 1rem;
    }

    .progress-container {
        position: relative;
        margin: 3.5rem 4rem 0
    }

    .progress-bar {
        width: 100%;
        height: 6.8rem;
        background: #fff;
        border-radius: 100px;
        padding: .6rem .7rem;
        box-sizing: border-box;
    }

    .progress-fill {
        height: 100%;
        background: var(--progress-fill-bg, linear-gradient(180deg, #D8E39D 0%, #9DA768 100%));
        border-radius: 100px;
        transition: width 0.5s ease;
    }

    .progress-text {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 2.8rem;
        font-weight: 500;
        color: #000;
    }

    .puple_bg {
        width: 100%;
        background-color: #fff;
        position: relative;
        padding: 10rem 4rem;
        border-top-left-radius: 5rem;
        border-top-right-radius: 5rem;
    }

    .form_wrap {
        padding: 0 5% 10rem;
    }

    .question .notice {
        color: red;
        font-size: clamp(12px, 1.6rem, 16px);
        text-align: center;
        margin-top: 1rem;
    }

    .puple_bg .btn_wrap {
        margin-top: 6rem;
    }


    /************************** 입력 폼 ************************/
    input[type='text'],
    input[type='tel'],
    input[type='number'] {
        background-color: var(--input-bg-color, #fff);
        border-radius: var(--input-border-radius, 1.2rem);
        color: var(--input-color, #333);
        vertical-align: top;
        width: 100%;
        height: var(--input-height, 12rem);
        border: 1px solid var(--input-border-color, #a6a6a6);
        box-sizing: border-box;
        font-size: var(--input-font-size, 3.4rem);
        padding-left: 3.2rem;
    }

    input[type='text']:focus,
    input[type='tel']:focus,
    input[type='number']:focus {
        border: .2rem solid var(--focus-border-color);
        outline: transparent;
    }

    input[type='text']::placeholder,
    input[type='tel']::placeholder,
    input[type='number']::placeholder {
        outline: none;
        color: #C1C1C1
    }

    select {
        padding-left: 2rem;
        border-radius: var(--input-border-radius, 1.2rem);
        font-size: var(--input-font-size, 3.4rem);
        height: var(--input-height, 12rem);
        appearance: none;
        background-color: var(--input-bg-color, #fff);
        background-size: 4rem;
        background-image: url('//cdn.tampage.co.kr/event/brand/cellpa/ico_select_arrow.png');
        background-repeat: no-repeat;
        background-position: right 20px top 50%;
        width: 100%;
        border: 1px solid var(--input-border-color, #a6a6a6);
    }

    select:focus {
        border: 2px solid var(--focus-border-color);
        outline: transparent;
    }

    /* radio */
    .check_list input[type=radio] {
        width: 3rem;
        height: 3rem;
        cursor: pointer;
    }

    .check_list input[type=radio]+label {
        cursor: pointer;
    }

    .input_hidden {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        border: 0;
    }


    /*성별*/
    .input_wrap input[type='radio'] {
        width: 3rem;
        height: 3rem;
        -webkit-appearance: none;
        -webkit-border-radius: 0;
        background-image: url("//cdn.tampage.co.kr/event/brand/cellpa/check.png");
        border: 1px solid #333;
        border-radius: 2rem;
        padding: 1rem;
        background-position: center;
        background-repeat: no-repeat;
    }

    .input_wrap input[type='radio']:checked {
        background: #1A20DC;
        background-image: url("//cdn.tampage.co.kr/event/brand/cellpa/check_on.png");
        background-repeat: no-repeat;
        background-position: center;
    }


    .sex_ul {
        width: 100%;
        height: 100px;
        margin-bottom: 1.5rem;
        display: flex;
        gap: 1rem;
    }

    .sex_ul>li {
        width: 100%;
        height: 100%;
        display: inline-block;
    }

    .sex_ul>li:first-child {
        float: left;
    }

    .sex_ul>li:last-child {
        float: right;
    }

    .sex_ul>li>label {
        width: 100%;
        height: 100%;
        display: block;
        padding: 3.1rem 0 .1rem 3rem;
        box-sizing: border-box;
        border: 1px solid #a6a6a6;
        border-radius: 1rem;
        text-align: left;
        background: #fff;
        position: relative;
        line-height: 100%;
        cursor: pointer;
    }

    .sex_ul>li>label {
        font-size: 3.8rem;
        color: #000;
        position: relative;
        margin-right: .9rem;
        vertical-align: middle;
    }

    .sex_ul>li>label input[type='radio']:checked::after {
        content: "";
        border: .2rem solid #1A20DC;
        width: calc(100% - .2rem);
        height: calc(100% - .2rem);
        display: block;
        position: absolute;
        left: -1px;
        top: -1px;
        border-radius: 1rem;
    }

    .sex_ul>li>label>span {
        margin-left: 1rem;
    }

    /* 연령대 */
    .select_wrap {
        width: 25.6rem;
        display: inline-block;
        position: relative;
        z-index: 2;
    }

    .result_btn {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: var(--result-btn-height, 12rem);
        background: var(--result-btn-bg-color, #333);
        border-radius: var(--result-btn-border-radius);
        color: var(--result-btn-color, #fff);
        font-size: var(--result-btn-font-size, 3.4rem);
        margin: var(--result-btn-margin, 6rem 0);
        font-weight: var(--result-btn-font-weight, 500);
        text-align: center;
        cursor: pointer;
    }
    /** form layout style **/
    .apply_form_grid {
        --gap_y: 1.2rem;
        --gap_x: 1.2rem;
        display: grid;
        gap: var(--gap_y);
    }

    .form_grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: var(--gap);
    }

    .grid_2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid_3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .grid_name_age {
        grid-template-columns: 1.7fr 1fr;
    }


    /******************개인정보처리방침*******************/
    .privacy_wrap, .privacy_wrap_single {padding: 2rem 3rem;border: 1px solid var(--input-border-color); border-radius:var(--input-border-radius, 1.2rem);font-weight: 400;font-size: 2.2rem;margin:3.6rem 0 6rem;text-align: left;background: #fff;color: #000;}
    .privacy_wrap > div {margin-bottom: 1.5rem;position: relative;}
    .privacy_allchk{border-bottom: 1px solid #e2e2e2;padding-bottom:1.2rem;margin-bottom:15px;font-size:3.2rem}
    .privacy_wrap input[type='checkbox'],.privacy_wrap_single input[type='checkbox']{width:3.5rem;height:3.5rem;appearance:none;border:2px solid #C6C6C6;position:relative;
        background:transparent;border-radius:5px;vertical-align: middle;cursor:pointer;background:#EEEEEE;}
    .privacy_wrap input[type='checkbox']:before,.privacy_wrap_single input[type='checkbox']:before{content:"";width:1.8rem;height:1.4rem;
        position:absolute;left:50%;top:50%;transform: translate(-50%, -50%);background: url("//cdn.tampage.co.kr/event/brand/chk_off.png") no-repeat 0 0;background-size: contain;}
    .privacy_wrap input[type='checkbox']:checked,.privacy_wrap_single input[type='checkbox']:checked{ background-color:var(--main-color);}
    .privacy_wrap input[type='checkbox']:checked:before,.privacy_wrap_single input[type='checkbox']:checked:before{background-image:url("//cdn.tampage.co.kr/event/brand/chk_on_w.png");}
    .privacy_wrap input[type='checkbox']+label,.privacy_wrap_single input[type='checkbox']+label, 
    .privacy_wrap_single input[type='checkbox']+span.label{line-height: 3.1rem;display: inline-block;background-size: 3.1rem;padding:.5rem 0 .5rem .5rem;cursor:pointer;vertical-align: middle;}
    .privacy_wrap .label {cursor: pointer;}
    .privacy_wrap .privacy_allchk input[type='checkbox'] {width:3.8rem;height:3.8rem;}
    .privacy_wrap .privacy_allchk input[type='checkbox']+label {background-size: 3.8rem; height:3.8rem; padding-left:.5rem; cursor: pointer}
    .privacy_wrap .privacy_allchk input[type='checkbox']:checked +label {background-size: 3.8rem; height:3.8rem;}
    .privacy_wrap a.more_info, .privacy_wrap_single a.more_info  {margin: 0;border: 1px solid #E9E9E9;border-radius: 5rem;padding: .4rem 2rem;box-sizing: border-box;font-size: 2rem;position: absolute;right: 0;top: 0;
        color: #000;text-decoration: none;}
    .privacy_content {position: relative;box-sizing: border-box;padding: 1.6rem 1.6rem 4rem;margin: 1.5rem 0 3rem;height: 25.4rem;background: #FFFFFF;border: 1px solid #E9E9E9;border-radius: .8rem;overflow-y: scroll;font-size: 2rem;clear: both;display: block;color: #666;}
    .box_hidden {height: 0;padding: 0;border: 0;margin: 0}
    .privacy_btn{position: relative;}
    .privacy_wrap_single{position: relative;}
    .privacy_wrap_single > div {margin-bottom: 0;}
    .privacy_wrap_single input[type='checkbox']+label{background-position: 0 22px;height: auto;padding-left: 2rem !important}
    .privacy_wrap_single input[type='checkbox']:checked+label{background-position: 0 2.2rem;}
    .privacy_wrap_single a {right: 3rem;top: 4.5rem;}
    #privacy_tail_info {font-size: clamp(10px,1.3vw,1.3rem) !important; line-height: 1.4;}
    .privacy_content {max-height: 25rem; /* 400px */overflow-y: auto;padding-right: 0.75rem; /* 12px */}

  /* Firefox */
  /* scrollbar-width: thin;scrollbar-color: #c7c7c7 transparent;} */

/* Chrome, Edge, Safari */
.privacy_content::-webkit-scrollbar {width: 0.375rem; /* 6px */}
.privacy_content::-webkit-scrollbar-track {background: transparent;}
.privacy_content::-webkit-scrollbar-thumb {background: #c7c7c7;border-radius: 62.4375rem; /* 999px */}
.privacy_content::-webkit-scrollbar-thumb:hover {background: #999;}

    /************************** 입력 폼 END ************************/

    /********************** 하단정보 ********************/
    .notice-box {
        background: #e9e9e9;
        padding: 4rem 4rem 3.5rem;
        font-style: normal;
        font-weight: 400;
        font-size: 2rem;
        color: #3C4141;
        line-height: 1.7;
        display: block;
        letter-spacing: -0.08em;
        text-align: left;
    }
    .notice-box::before {
        content:"유의사항";
        font-size: 2.5rem;
        font-weight: 700;
        color: #3C4141;
        display: block;
        line-height: 1.2;
        margin-bottom: 10px;

    }

    .common_info_text::before {
        font-size: 2.5rem;
        font-weight: 700;
        color: #000;
        clear: both;
        display: block;
        line-height: 2.5rem;
        margin-bottom: 1rem;
        font-family: "Noto Sans KR";
    }

    .common_info_text .bottom_info li {
        position: relative;
        padding-left: 1.5rem;
        word-break: keep-all;
    }

    .common_info_text .bottom_info li:before {
        content: "*";
        position: absolute;
        top: .4rem;
        left: 0;
    }


    .info_text {
        background: #e9e9e9;
        padding: 4rem 5rem 3.5rem;
        box-sizing: border-box;
        font-style: normal;
        font-weight: 400;
        font-size: 2rem;
        color: #3C4141;
        line-height: 170%;
        display: block;
        letter-spacing: -1.5px;
        text-align: left;
    }

    .info_text::before {
        content: "유의사항";
        font-size: 2.5rem;
        font-weight: 700;
        color: #000;
        clear: both;
        display: block;
        line-height: 3.5rem;
        margin-bottom: 1rem;
        font-family: "Noto Sans KR";
    }

    .info_text ul li {
        position: relative;
        padding-left: 15px;
        word-break: break-all;
        font-size: 2rem;
    }

    .info_text ul li:before {
        content: "*";
        position: absolute;
        top: 4px;
        left: 0;
    }

    .landing_footer {
        width: 100%;
        max-width: var(--layout-max-width);
        background: #3D3D3D;
        margin: 0 auto;
        text-align: center;
        display: block
    }

    .landing_footer>p,.landing_footer .copyright {
        padding: 2rem 1rem;
        color: #fff;
        font-size: clamp(12px, 1.4vw, 1.6rem);
        line-height: 1.4;
        letter-spacing: -1px;
        text-wrap: balance;
        word-break: keep-all
    }
    .common_info_text .landing_footer {
        width: 100%;
    }

    /********************** loader ********************/
    .loader_wrap {
        position: absolute;
        top: 20%;
        left: 50%;
        transform: translate(-50%, 0);
    }

    .loader {
        width: 10rem;
        aspect-ratio: 1;
        display: grid;
        -webkit-mask: conic-gradient(from 15deg, #0000, #000);
        animation: l26 1s infinite steps(12);
    }

    .loader,
    .loader:before,
    .loader:after {
        background: radial-gradient(closest-side at 50% 12.5%,
                var(--main-color)96%, #0000) 50% 0/20% 80% repeat-y, radial-gradient(closest-side at 12.5% 50%,
                var(--main-color)96%, #0000) 0 50%/80% 20% repeat-x;
    }

    .loader:before,
    .loader:after {
        content: "";
        grid-area: 1/1;
        transform: rotate(30deg);
    }

    .loader:after {
        transform: rotate(60deg);
    }

    @keyframes l26 {
        100% {
            transform: rotate(1turn)
        }
    }

    /************************** 지도 & 주차 안내 영역 CSS *****************************/
    .visit-info {
        display: flex;
        flex-direction: column;
        background-color: #262626;
    }

    .visit-info .info-list {
        padding: 4rem 5rem;
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .visit-info .info-list .info-item {
        display: grid;
        grid-template-columns: 10rem 1fr;
        gap: 1rem;
        word-break: keep-all;
        overflow-wrap: break-word;
        color: #fff;
    }

    .visit-info .info-list .info-title {
        font-size: 2.5rem;
    }

    .visit-info .info-list .info-desc {
        font-size: 2.5rem;
    }
    /****************** 공통 CSS END ************************/