@charset "utf-8"; /* CSS Document */
/*#toggleButton{display: none;}*/
/* 퀵 메뉴 */
#quick_menu {
    position: fixed !important;
    bottom: 4rem;
    right: 2rem;
    z-index: 99;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 10px;
}

    #quick_menu a {
        transition: all .2s ease-out;
        box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.35) !important;
    }

        #quick_menu a.expandable {
            display: block;
            align-items: center;
            position: relative;
            border-radius: 500rem;
            overflow: hidden;
            background-color: var(--red_dark);
            cursor: pointer;
        }

            #quick_menu a.expandable .inner_ctr {
                display: flex;
                justify-content: flex-start;
                align-items: center;
                color: var(--white) !important;
            }

                #quick_menu a.expandable .inner_ctr .icon {
                    display: inline-flex;
                    align-items: center;
                    justify-content: center;
                    font-size: 1.6em;
                    color: var(--white) !important;
                }

                #quick_menu a.expandable .inner_ctr p {
                    opacity: 0;
                    font-weight: 500;
                    text-align: left;
                    font-size: 1.05em;
                    padding-top: 6px;
                    color: var(--white) !important;
                }

    #quick_menu .top {
        display: inline-flex;
        align-items: center;
        border-radius: 500rem;
        justify-content: center;
        font-size: 1.4em;
        font-weight: 400;
        background-color: var(--brt_gray);
        /*color: rgba(0,0,0,0.5);*/
        margin-top: 0.5rem;
        padding-top: 6px;
        color: var(--gray6);
        border: var(--op_black);
        box-shadow: 0px 2px 12px 0px rgb(0 13 57 / 10%);
    }

    #quick_menu a, #quick_menu a.expandable .inner_ctr .icon {
        width: 60px;
        height: 60px;
    }

        #quick_menu a.expandable .inner_ctr, #quick_menu a.expandable:hover {
            width: 175px;
        }

        #quick_menu a.expandable:hover {
            border-bottom-right-radius: 0;
        }

            #quick_menu a.expandable:hover .inner_ctr p {
                opacity: 1;
            }

    #quick_menu .top:hover {
        border-bottom-right-radius: 0;
    }

/* 헤더 */
#header {
    position: fixed;
    width: 100%;
    top: 0;
    transition: top 0.2s ease-in-out;
    z-index: 10;
}

    #header.hidden { /*box-shadow: none;*/
        box-shadow: 0 0.5rem 1rem 0 rgba(0,0,0,0.1);
        transition: all 0.3s ease-in;
    }

    #header .nav_area {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    /* 헤더 - 등록번호 */
    #header .top_num {
        background-color: var(--light_gray);
        color: var(--white);
        display: flex;
        align-items: center;
    }

        #header .top_num a {
            color: inherit;
            margin-left: 0.5rem;
        }

    #header .header_menu {
        display: inline-flex;
        align-items: center;
        justify-content: flex-end;
    }
    /* 헤더 - 로고 */
    #header .logo {
        display: inline-flex;
        align-items: center;
    }

        #header .logo .logo_img {
            height: 44px;
        }

/* 메인 */
#main {
    padding: var(--sec_pd) 10px 5rem; /*min-height: 940px;*/
    background-image: url("../images/top_bg_L.png"), url("../images/top_bg_R.png"), linear-gradient(to bottom, #f5f5f5 80%, var(--white) 80%);
    background-repeat: no-repeat, no-repeat, repeat-x;
    background-position: 10% 35%, 90% 100px, top center;
    background-size: 385px, 402px, cover;
    transition: all 0.5s ease-in-out;
}
    /* 메인텍스트 */
    #main .main_txt {
        padding-top: 3rem;
        padding-bottom: 6rem;
        /*height: 530px;*/
        margin: 0 auto;
    }

        #main .main_txt > .fs_40 {
            margin: 2rem 0 0.5rem;
        }

        #main .main_txt > .fs_50 {
            margin-bottom: 2rem;
        }

        #main .main_txt > .fs_120 {
            letter-spacing: -0.125rem;
        }


/* 메인_상품_섹션*/
#prod_sect01 {
    padding: calc(var(--sec_pd) * 1.5) 0 var(--sec_pd);
}

    #prod_sect01 .wrap {
        padding: 5rem 0
    }

.infos {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    width: 100%;
    position: relative;
    z-index: 3;
}

.info {
    width: 35%;
    min-height: 250px;
    padding: 2.2rem 1rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0; /* 초기 상태는 투명 */
    transform: translateX(-50px); /* 초기 상태는 약간 왼쪽으로 이동 */
    transition: transform 0.5s ease, opacity 0.5s ease;
}

    .info p, .info p span {
        line-height: 1.23;
    }

    .info.card-1 p span {
        padding: 1.5rem 1.5rem 0.4rem;
        background-color: var(--white);
        letter-spacing: -.185rem;
    }

    .info.card-1 p, .info.card-1 p span {
        line-height: 1.5 !important;
    }
    /* 카드 겹치기 및 z-index 조정 */
    .info.card-3 {
        z-index: 3;
        border: 1px solid rgba(255,255,255,0.50);
        -webkit-text-stroke: 0.5px rgba(255,255,255,0.50);
    }

    .info.card-2 {
        z-index: 2;
        margin-right: -10%;
    }
    /* 두 번째 카드가 첫 번째 카드와 겹치게 */
    .info.card-1 {
        z-index: 1;
        margin-right: -10%;
    }

/* 아이콘 스타일 */
.infos > .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    font-size: 24px;
    opacity: 0;
    position: absolute;
    transition: opacity 0.6s ease;
    z-index: 5;
    line-height: 1;
    padding-top: .7rem;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid var(--op_black);
    border-radius: 50px;
    box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.35) !important;
}
/* 아이콘 위치 조정 */
.plus-icon {
    left: 32.5%; /* 첫 번째 카드와 두 번째 카드 사이 */
    top: 50%;
    transform: translateY(-50%) translateX(-50%);
}

.equal-icon {
    left: 65%; /* 두 번째 카드와 세 번째 카드 사이 */
    top: 50%;
    transform: translateY(-50%) translateX(-50%);
}

/* 애니메이션 완료 시 클래스 */
.show {
    opacity: 1;
    transform: translateX(0);
}

.prod_sect_tit {
    line-height: 1;
}

.prod01_img {
    width: 100%;
}

/*공통 타이틀*/
.prod_sect_tit p.titend_red,
.prod_sect_tit p.titend_org {
    display: inline;
    background-size: 2.85rem;
    background-repeat: no-repeat;
    line-height: 1.8;
}

.prod_sect_tit p.titend_red {
    padding: 3.25rem 1.55rem 0 0;
    background-image: url("../images/titend_red.svg");
    background-position: 100% -3%;
}

.prod_sect_tit p.titend_org {
    padding: 3.25rem 0 0 1.85rem;
    background-image: url("../images/titend_org.svg");
    background-position: 0 -3%;
}


#prod_sect02 {
    padding: var(--sec_pd) 0;
    text-align: right;
}

    #prod_sect02 .wrap {
        padding: 3rem 0
    }

.imgbox {
    width: 100%;
    min-width: 1380px;
    padding: 3rem 0 5rem;
}

.prod02_imgL {
    display: inline-block;
    height: 500px;
    margin-left: 50px;
}

.prod02_imgR {
    display: inline-block;
    height: 400px;
}
/*공통박스*/
.prod_sect_txt {
    margin-top: 3rem;
    line-height: 1.2;
    margin-bottom: 3rem;
    text-align: center;
}

    .prod_sect_txt p:last-child {
        margin-top: 5rem;
    }

.prod_btn {
    width: 100%;
    min-width: 450px;
    padding: 2rem 3rem 1rem;
    box-shadow: 0px 0px 10px 0px rgba(81, 81, 81, 0.47);
    background-color: var(--white);
    transition: all var(--transition);
}

    .prod_btn:hover {
        box-shadow: 0px 0px 10px 0px rgba(154,113,24,0.47);
        color: var(--white);
        background-color: var(--orange);
    }

/* 푸터 */
#footer {
    padding: calc(var(--sec_pd) / 2) 0 calc(var(--sec_pd) * 2);
    line-height: 1.3 !important
}

    #footer a {
        color: inherit;
    }

    #footer .wrap {
    }


    #footer .footerL {
    }
        /* 푸터 - 로고 */
        #footer .footerL .logo {
            padding: 1rem 0 3rem;
        }

            #footer .footerL .logo img {
                height: 40px;
            }

    /* 푸터 - 텍스트 */
    #footer .txt_ctr {
        width: 50%;
        gap: 0.75rem;
        padding-top: 3rem;
    }

        #footer .txt_ctr .txt_01 p, #footer .txt_ctr .txt_01 ul {
            /*margin-bottom: 0.25rem;*/
        }

            #footer .txt_ctr .txt_01 p:last-of-type, #footer .txt_ctr .txt_01 p:nth-child(6) {
                margin-bottom: 0;
            }

        #footer .txt_ctr .txt_02 {
        }

            #footer .txt_ctr .txt_02 .num {
            }
/* ==================== 해상도 1380px 이상 ==================== */
@media screen and (min-width: 1380px) {
    /* 헤더 */
    #header {
        position: fixed;
        width: 100%;
        z-index: 5;
    }

        #header.hidden { /*top: -126px; */
            overflow: hidden !important;
        }
        /*#header .nav_area { padding: 0 0 0 2rem; }*/

        /* 헤더 - 등록번호 */
        #header .top_num {
            padding: 0 2rem;
            height: 46px;
            font-size: 1.2em;
        }

        /* 헤더 - 메뉴 */
        #header .header_menu {
            display: inline-flex;
            align-items: center;
            justify-content: space-between;
            margin-right: 0.5rem;
        }

            #header .header_menu .dropdown {
                position: relative;
                transition: all 0.3s ease-in-out;
            }
        /* 헤더 - 메뉴 아이콘 */
        #header .hamburger {
            display: none;
            order: 1
        }

        /* 헤더 - 토글 */
        #header .header_menu .toggle {
            display: flex;
            align-items: center;
            height: 80px;
            font-size: 1.1em;
            font-weight: 500;
            color: var(--gray6);
            padding: 0 1rem;
            transition: all var(--transition);
            text-align: center;
            position: relative;
            flex-direction: column;
            justify-content: center;
        }

            /*네비색*/
            #header .header_menu .toggle p {
                color: var(--gray6);
            }
            #header .header_menu .toggle:hover p {
                color: var(--red_dark);
                /*border-bottom: 2px solid var(--red_dark);*/
                text-decoration: underline;
                text-underline-offset: 10px;
                text-decoration-thickness: 2px;
            }
            /*작은글씨*/
            #header .header_menu .toggle[class*="sun"]:before {
                font-size: 0.68em;
                line-height: 1.2;
                padding-bottom: 0.3rem;
				color: var(--gray9);
            }

            #header .header_menu .toggle.sun01:before {
                content: "근로소득자";
            }

            #header .header_menu .toggle.sun02:before {
                content: "자영업자";
            }

            #header .header_menu .toggle[class*="sun"]:hover:before {
                color: var(--red_dark);
                transition: all 0.05s ease-in;
            }

    .navOn p {
        text-decoration: underline !important;
        text-underline-offset: 10px !important;
        text-decoration-thickness: 2px !important;
    }

    .navOn p, .navOn[class*="sun"]:before {
        color: var(--red) !important;
    }


    /* 헤더 - 드롭다운 */

    #header .header_menu .dropdown .dropdown_menu {
        max-height: 0;
        transition: all 0.3s ease-in-out;
        position: absolute;
        top: 80px;
        left: 0;
        opacity: 0;
        width: 100%;
        background-color: var(--white);
        box-shadow: 0 0.5rem 1rem 0 rgba(0, 0, 0, 0.1);
        border-radius: 0 0 var(--br_01) var(--br_01);
        z-index: 0;
        border-top: solid 1px var(--border_white);
        padding: 1rem 0;
        overflow: hidden;
    }

    #header .header_menu .dropdown:hover .dropdown_menu {
        max-height: 1000px;
        opacity: 1;
        overflow: hidden;
    }

    #header .header_menu .dropdown .dropdown_menu a {
        display: block;
        width: 100%;
        color: #666;
        text-decoration: none;
        transition: all 0.3s ease-in-out;
        text-align: center;
        padding: 1rem;
        position: relative;
        z-index: 2;
    }

        #header .header_menu .dropdown .dropdown_menu a:hover {
            color: var(--red);
        }
}


/* ==================== 모바일 레이아웃 ==================== */

@media ( max-width: 1380px ) {
    /* 메인 */
    #main {
        padding: var(--sec_pd) 10px calc(var(--sec_pd) * 1.5);
        min-height: auto;
        background-position: 5% 80%, 90% 100px;
        background-size: 180px, 160px;
    }
        /* 메인텍스트 */
        #main .main_txt {
            padding-top: calc(var(--sec_pd) * 1.2);
            height: auto;
        }

        #main .wrap {
            display: block;
        }

        /* 메인 - 비주얼 */
        #main .main_visual {
            width: 100%;
            text-align: center;
            margin-bottom: var(--sec_pd);
        }

            #main .main_visual .obj {
                display: block;
                margin: 0 auto;
                position: relative;
                bottom: auto;
                right: auto;
                margin-top: 3rem;
            }

        /* 메인 - 상품 리스트 */
        #main .prod_list {
            width: 100%;
        }

    /* 헤더 */
    #header.hidden { /*top: -100px; */
    }

    #header .nav_area {
        height: 70px;
        padding: 0 0.5rem;
    }

    /* 헤더 - 등록번호 */
    #header .top_num {
        height: 36px;
        padding: 0 1rem;
    }

    /* 헤더 - 메뉴 */
    #header .header_menu {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        position: fixed;
        width: 0;
        height: 100vh;
        top: 0;
        right: 0;
        background-image: var(--gradientRB);
        z-index: 3;
        overflow: hidden;
        opacity: 0;
        transition: var(--transition);
        padding: 6rem 1.5rem 0rem;
    }

        #header .header_menu.active {
            right: 0;
            width: 100%;
            color: var(--white);
            opacity: 1;
            overflow-y: hidden;
            touch-action: none;
        }

            #header .header_menu.active + .top_call {
                display: none;
            }
        /* 헤더 - 토글 */
        #header .header_menu .toggle {
            display: block;
            font-weight: 700;
            text-align: left;
            position: relative;
            font-size: 1.2em;
            color: var(--white);
            padding: 1.2rem 0;
            width: 100%;
            border-bottom: solid 1px rgba(255,255,255,0.15);
        }

        #header .header_menu .menu:last-of-type {
            padding-bottom: 5rem;
            border: none;
        }

        /* 헤더 - 드롭다운 */
        #header .header_menu .dropdown {
            width: 100%;
            opacity: 0;
            transition: all 0.3s ease-in-out;
            margin-bottom: 2rem;
        }

            #header .header_menu .dropdown:last-of-type {
                margin-bottom: 0;
            }

        #header .header_menu.active .dropdown {
            opacity: 1;
        }

        #header .header_menu .dropdown .dropdown_menu {
            max-height: 0;
            opacity: 0;
            overflow: hidden;
            transition: 0.3s ease-in-out;
            text-align: center;
            background-color: rgba(255,255,255,0.1);
            width: 100%;
        }

            #header .header_menu .dropdown .dropdown_menu.active {
                max-height: 300px;
                opacity: 1;
            }

            #header .header_menu .dropdown .dropdown_menu a {
                display: inline-block;
                width: 100%;
                opacity: 0;
                transition: opacity 0.3s ease-in-out;
                color: var(--white);
                text-align: left;
                margin: 0.75rem 0;
                font-weight: 500;
                font-size: 1.05em;
                padding: 0 1.5rem;
            }

                #header .header_menu .dropdown .dropdown_menu a:first-of-type {
                    margin-top: 2rem;
                }

                #header .header_menu .dropdown .dropdown_menu a:last-of-type {
                    margin-bottom: 2rem;
                    padding-bottom: 0;
                }

            #header .header_menu .dropdown .dropdown_menu.active a {
                opacity: 1;
            }

        /* 헤더 - 드롭다운 토글 */
        #header .header_menu .dropdown .dropdown_toggle::after {
            content: "+";
            font-weight: 300;
            font-size: 1.4em;
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            transition: var(--transition);
        }

        #header .header_menu .dropdown .dropdown_toggle.active::after {
            content: "-";
        }
    /* 헤더 - 콜버튼 */
    #header .top_call {
        order: -1;
        font-size: 12px !important;
        margin-left: 0.5rem;
		padding: 0.65rem 1rem 0.55rem;
    }
    /* 헤더 - 메뉴 아이콘 */
    #header .hamburger, #header .hamburger .line {
        display: inline-block;
        transition: all .4s;
        box-sizing: border-box;
    }

    #header .hamburger {
        position: relative;
        width: 46px;
        height: 40px;
        z-index: 10;
        transform: scale(0.5);
        transform-origin: right;
        cursor: pointer;
        display: inline-block;
    }

        #header .hamburger .line {
            position: absolute;
            left: 0;
            width: 100%;
            height: 4px;
            background-color: #333;
            border-radius: 4px;
        }

            #header .hamburger .line:nth-of-type(1) {
                top: 0;
            }

            #header .hamburger .line:nth-of-type(2) {
                top: 18px;
            }

            #header .hamburger .line:nth-of-type(3) {
                bottom: 0;
            }

        #header .hamburger.active .line {
            background-color: var(--white);
        }

            #header .hamburger.active .line:nth-of-type(1) {
                -webkit-transform: translateY(18px) rotate(-45deg);
                transform: translateY(18px) rotate(-45deg);
            }

            #header .hamburger.active .line:nth-of-type(2) {
                opacity: 0;
            }

            #header .hamburger.active .line:nth-of-type(3) {
                -webkit-transform: translateY(-18px) rotate(45deg);
                transform: translateY(-18px) rotate(45deg);
            }

    /*.navOn{ color: #B2F1FF!important; }*/

}

@media ( max-width: 900px ) {
    /* 퀵 메뉴 */
    #quick_menu {
        bottom: 1rem;
        right: 1rem;
        justify-content: center;
        align-items: center;
        gap: 6px;
    }

        #quick_menu a.expandable:hover, #quick_menu a.expandable:hover .inner_ctr, #quick_menu .top:hover {
            border-bottom-right-radius: 500rem;
        }

        #quick_menu a.expandable .inner_ctr p {
            display: none !important;
        }

        #quick_menu a.expandable .inner_ctr, #quick_menu a.expandable:hover, #quick_menu a, #quick_menu a.expandable .inner_ctr .icon {
            width: 50px;
            height: 50px;
        }

            #quick_menu a.expandable .inner_ctr .icon {
                font-size: 1.4em;
            }

            #quick_menu a.top {
                width: 34px;
                height: 34px;
                margin-top: 0.3rem;
            }

    /* 헤더 */
    #header .nav_area {
        height: 62px;
    }
    /* 헤더 - 토글 */
    #header .header_menu .toggle {
        letter-spacing: 0;
        padding: 2rem 0 1.65rem;
		min-height: 50px!important;
    }

        #header .header_menu .toggle p {
            font-size: 1.5rem;
            color: var(--white);
        }
    /* 헤더 - 로고 */
    #header .logo .logo_img {
        height: 20px;
    }

    #header .logo p {
        font-size: 0.9em;
    }

    /* 메인 */
    #main {
        min-height: auto;
        background-position: -5% 100%, 102% 100px;
        background-size: 180px, 160px;
    }
        /* 메인텍스트 */
        #main .main_txt {
            padding-top: calc(var(--sec_pd) * 1.5);
        }
        /* 메인 - 비주얼 */
        #main .main_visual .main_txt {
            font-size: 2.8rem;
        }

        #main .main_visual .desc_txt {
            margin: 1.2rem 0 2rem;
        }

        #main .main_visual .obj {
            width: 280px;
            margin-top: 2.5rem;
        }

    #prod_sect01 {
    }

    #prod_sect02 {
    }

    /* 푸터 */
    #footer {
        padding: calc(var(--sec_pd) * 4 ) 0 calc(var(--sec_pd) * 8);
    }

        #footer .wrap {
            display: block
        }

        #footer .footerL {
            text-align: center;
        }
            /* 푸터 - 로고 */
            #footer .footerL .logo {
                padding: 1rem 0 3rem;
            }

                #footer .footerL .logo img {
                    height: 30px;
                }

            #footer .footerL > a {
                margin: 1rem auto;
                padding: 0.65rem 1rem 0.55rem;
            }

        /* 푸터 - 텍스트 */
        #footer .txt_ctr {
            width: 100%;
            padding-left: 15px;
            padding-right: 50px;
        }
}

@media ( max-width: 600px ) {
	.prod_btn {
    padding: 2rem 3rem 1.5rem;
}
    /* 메인 */
    #main {
        height: calc(100% - 6rem);
        min-height: unset;
        background-image: url("../images/top_bg_L.png"), url("../images/top_bg_R.png"), linear-gradient(to bottom, #f5f5f5 70%, var(--white) 70%);
        background-repeat: no-repeat, no-repeat, repeat-x;
        background-position: -3% 99%, 102% 50px, top center;
        background-size: 115px, 120px, cover;
    }

        /* 메인텍스트 */
        #main .main_txt {
            transform: scale(0.9);
            transform-origin: center;
            padding-top: calc(var(--sec_pd) * 3);
            margin-bottom: 5rem;
        }



    #prod_sect01 {
        padding: 5rem 1.5rem 3rem
    }
        /* 메인_상품_섹션*/

        #prod_sect01 .wrap {
        }

    .infos {
        flex-direction: column;
        align-items: center;
    }

    .info {
        width: 80%;
        min-height: 150px;
        padding: /*1.5rem */ 0rem 1rem;
    }


        /* 카드 겹치기 및 z-index 조정 */
        .info.card-3 {
            padding: 2.2rem 1rem 1rem !important;
            margin-top: -15px;
        }

        .info.card-2 {
            z-index: 2;
            margin-top: -15px;
            margin-right: 0;
        }
        /* 두 번째 카드가 첫 번째 카드와 겹치게 */
        .info.card-1 {
            z-index: 1;
            margin-right: 0;
        }
.info.card-1 p span {
        padding: .5rem 1.5rem 0.4rem;
        
    }

    /* 아이콘 스타일 */
    .infos > .icon {
        width: 30px;
        height: 30px;
        font-size: 145%;
    }
    /* 아이콘 위치 조정 */
    .plus-icon {
        left: 50%; /* 첫 번째 카드와 두 번째 카드 사이 */
        top: 32.5%;
        transform: translateY(-50%) translateX(-50%);
    }

    .equal-icon {
        left: 50%; /* 두 번째 카드와 세 번째 카드 사이 */
        top: 65%;
        transform: translateY(-50%) translateX(-50%);
    }

    #prod_sect02 {
        padding: 2rem 1.5rem 5rem
    }

    .prod_sect_tit {
        /*text-align: center!important;*/
    }
        /*공통 타이틀*/
        .prod_sect_tit p.titend_red, .prod_sect_tit p.titend_red span,
        .prod_sect_tit p.titend_org, .prod_sect_tit p.titend_org span {
            font-size: 3rem !important;
        }

        .prod_sect_tit p.titend_red,
        .prod_sect_tit p.titend_org {
            display: inline;
            background-size: 2rem;
            background-repeat: no-repeat;
            line-height: 1.8;
        }

        .prod_sect_tit p.titend_red {
            padding: 2.45rem 1.3rem 0 0;
            background-position: 100% -3%;
        }

        .prod_sect_tit p.titend_org {
            padding: 2.45rem 0 0 1.5rem;
            background-position: 0 -3%;
        }

    .prod01_img {
        width: 80%;
    }

    .imgbox {
        width: 100%;
        min-width: 100%;
        flex-direction: column;
    }

    .prod02_imgL {
        width: 90%;
        /*display: block;*/
        height: auto;
        margin-left: -5%;
    }

    .prod02_imgR {
        /*display: inline-block;*/
        width: 80%;
        height: auto;
        margin-top: -10%;
        margin-left: 35%;
        margin-bottom: 5%;
    }

    /* 푸터 display: block; calc(var(--sec_pd) * 13)*/
    #footer {
        padding: calc(var(--sec_pd) * 4 ) 0;
    }

    #toggleButton {
        display: block;
        width: 31px;
        height: 31px;
        border-radius: 30px;
        position: fixed;
        bottom: 0.5rem;
		left: 50%;
		transform: translateX(-50%);
        /*right: -10px;*/
        padding: 0.8rem;
        font-size: 12px;
        background-color: var(--red);
        cursor: pointer;
        z-index: 100000; /* 폼보다 높은 z-index 설정 */
        transition: transform 0.3s ease-in-out;
        border: var(--op_black);
        box-shadow: 0px 2px 12px 0px rgb(0 13 57 / 10%);
        overflow: hidden;
    }

        #toggleButton i {
            /*color:var(--red) ;*/
            color: var(--white);
        }

    /* #application_form 기본 z-index 설정 */
    #application_form {
        z-index: -1;
    }

        /* form 표시될 때 z-index 최상단 */
        #application_form.show {
            z-index: 99999;
        }
}
/***** 가로모드 *****/
@media screen and (orientation: landscape) and ( max-width: 900px ) {

    /* 헤더 - 메뉴 아이콘 */
    #header .hamburger.active {
        top: -2.5rem !important;
    }

    /* 헤더 - 메뉴 */
    #header .header_menu.active {
        overflow-y: auto;
        touch-action: auto;
    }

    /* 헤더 - 토글 */
    #header .header_menu .menu:last-of-type {
        padding-bottom: 0;
    }

    /* 헤더 - 드롭다운 */
    #header .header_menu .dropdown .dropdown_menu a {
        font-size: 1em;
    }
}

/* ==================== oneWaySend ==================== */

.result_page {
    text-align: center;
    position: absolute;
    width: 100%;
    height: inherit;
}

    .result_page .innerwrap {
        width: 100%;
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%,-50%);
        -moz-transform: translate(-50%,-50%);
        -ms-transform: translate(-50%,-50%);
        -o-transform: translate(-50%,-50%);
        transform: translate(-50%,-50%);
    }

    .result_page img {
        width: 110px;
    }

    .result_page strong {
        display: inline-block;
        font-size: 1.4em;
        margin-top: 1.5rem;
    }

    .result_page a {
        background-color: rgba(0,0,0,0.8);
        color: var(--white);
        padding: 0.7rem 2rem;
        border-radius: 500px;
        margin-top: 2.5rem !important;
    }

@media only screen and (min-width: 300px) and (max-width: 850px) {
    .result_page img {
        width: 85px;
    }

    .result_page strong {
        display: inline-block;
        font-size: 1.4em;
        margin-top: 1.2rem;
    }

    .result_page a {
        margin-top: 2rem !important;
    }
}

@media screen and (max-width: 375px) and (orientation:portrait) {
    /* 헤더 - 토글 */
    #header .header_menu .toggle {
        letter-spacing: 0;
        padding: 1.65rem 0 2rem;
		
    }

    #header .header_menu .dropdown .dropdown_menu a {
        font-size: 1em;
    }


    /* 푸터 - 텍스트 */
    #footer .txt_ctr {
        font-size: 0.85em;
    }
}
/* ========================================================================== */
/* 바운스 애니메이션 */
@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

.bounce {
    animation: bounce 1.5s infinite;
}
