@charset "utf-8";

.security_btn1 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 194px;
    height: 60px;
    border: 2px solid #191919;
    border-radius: 5px;
    font-size: 1.125em;
    font-weight: 700;
    text-align: center;
    transition: all 0.5s;
    transition-property: background, border, color;
}
.security_btn1:hover {
    background: #009eec;
    border-color: #009eec;
    color: #fff;
}
.security_btn1.case2 {
    border-color: #009eec;
    color: #009eec;
}
.security_btn1.case2:hover {
    color: #fff;
}
.security_btn1.case3 {
    border-color: #fff;
    color: #fff;
}
.security_btn1.case3:hover {
    border-color: #fff;
    background: #fff;
    color: #009eec;
}

@media screen and (max-width: 1024px) {
    .security_btn1 {
        width: 160px;
        height: 50px;
        font-size: 1em;
    }
}

@media screen and (max-width: 767px) {
    .security_btn1 {
        width: 130px;
        height: 42px;
    }
}

/* header */
#security_header {
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #ddd;
    position: relative;
    left: 0;
    top: 0;
    z-index: 300;
}

.header_top {
    width: 100%;
    background: #f8f9fc;
}
.header_top .h_util {
    display: flex;
    justify-content: end;
}
.header_top .h_util li:before {
    content: '';
    display: inline-block;
    width: 1px;
    height: 12px;
    background: #ddd;
    margin: 0 11px;
    vertical-align: middle;
}
.header_top .h_util li:first-child:before {
    display: none;
}
.header_top .h_util li a {
    display: inline-block;
    font-size: 0.875em;
    color: #666;
    line-height: 39px;
    font-weight: 500;
}

.header_bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 120px;
    position: relative;
}
.header_bottom .h_member {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 5;
}
.header_bottom .h_member li {
    margin-right: 30px;
    text-align: center;
}
.header_bottom .h_member li:last-child {
    margin-right: 0;
}
.header_bottom .h_member li i {
    font-size: 1.5em;
}
.header_bottom .h_member li p {
    font-size: 0.75em;
    color: #666;
    font-weight: 500;
    margin-top: 5px;
}

#security_logo {
    width: 90px;
    height: 80px;
    position: relative;
    z-index: 5;
}
#security_logo a {
    display: block;
    width: 100%;
    height: 100%;
}
#security_logo a img {
    max-width: 100%;
    max-height: 100%;
}

#security_gnb {
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
}
#security_gnb > ul {
    display: flex;
    justify-content: center;
}
#security_gnb > ul > li > a {
    display: block;
    font-size: 1.25em;
    font-weight: 500;
    line-height: 120px;
    font-family: 'S Dream';
    padding: 0 25px;
    transition: color 0.4s;
}
#security_gnb > ul > li:hover > a {
    color: #009eec;
}

#menuToggle {
    display: none;
}

@media screen and (max-width: 1024px) {
    .header_top .h_util li:before {
        height: 10px;
        margin: 0 7px;
    }
    .header_top .h_util li a {
        line-height: 32px;
    }

    .header_bottom {
        height: 54px;
    }
    .header_bottom .h_member {
        margin-right: 20px;
    }
    .header_bottom .h_member li {
        margin-right: 15px;
    }
    .header_bottom .h_member li i {
        font-size: 1.125em;
    }
    .header_bottom .h_member li p {
        margin-top: 3px;
    }

    #security_logo {
        width: 51px;
        height: 45px;
    }

    #security_gnb {
        display: none;
        background: #fff;
        position: fixed;
        top: 87px;
        z-index: 300;
        box-shadow: 0 10px 10px rgba(25, 25, 25, 0.05);
    }
    #security_gnb > ul {
        display: block;
        padding: 2% 6% 4%;
    }
    #security_gnb > ul > li > a {
        font-size: 1em;
        line-height: 1.2em;
        padding: 10px 0;
        border-bottom: 1px dashed #ddd;
    }

    #menuToggle {
        display: block;
        width: 55px;
        height: 55px;
        background: #009eec;
        position: absolute;
        right: -6vw;
        top: 0;
    }
    #menuToggle span {
        display: block;
        width: 21px;
        height: 2px;
        background: #fff;
        position: absolute;
        left: 17px;
        transition: all 0.6s;
    }
    #menuToggle span:nth-child(1) {
        top: 50%;
        margin-top: -7px;
    }
    #menuToggle span:nth-child(2) {
        top: 50%;
        margin-top: -1px;
    }
    #menuToggle span:nth-child(3) {
        bottom: 50%;
        margin-bottom: -7px;
    }

    #security_header.on #security_gnb {
        display: block;
    }
    #security_header.on #menuToggle span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    #security_header.on #menuToggle span:nth-child(2) {
        width: 0;
    }
    #security_header.on #menuToggle span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
}

@media screen and (max-width: 767px) {
    .header_bottom .h_member {
        margin-right: 50px;
    }
}

/* footer */
.footer_top {
    width: 100%;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}
.footer_top > div {
    display: flex;
    align-items: center;
    height: 60px;
}
.footer_top ul {
    display: flex;
    align-items: center;
}
.footer_top .f_util li:after {
    content: '';
    display: inline-block;
    width: 1px;
    height: 16px;
    background: #ddd;
    margin: 0 15px;
    vertical-align: middle;
}
.footer_top .f_util li:last-child:after {
    display: none;
}
.footer_top .f_util li a {
    display: inline-block;
    font-size: 1.125em;
    font-weight: 500;
    vertical-align: middle;
}
.footer_bottom {
    display: flex;
    padding: 50px 0 80px;
}
.footer_bottom .f_logo {
    width: 85px;
}
.footer_bottom .f_logo img {
    width: 100%;
}
.footer_bottom .f_info {
    width: calc(100% - 313px);
    padding-left: 50px;
}
.footer_bottom .f_info ul li {
    display: inline-block;
    font-size: 1em;
    color: #666;
    margin: 0 15px 10px 0;
}
.footer_bottom .f_info ul li strong {
    font-weight: 500;
    margin-right: 5px;
}
.footer_bottom .f_info ul li a {
    color: #666;
}
.footer_bottom .f_info p {
    font-size: 1em;
    color: #666;
    font-weight: 500;
    margin-top: 10px;
}
.footer_bottom .f_util {
    width: 228px;
}
.footer_bottom .f_util .f_family {
    position: relative;
}
.footer_bottom .f_util .f_family button {
    display: block;
    width: 100%;
    height: 59px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
    font-weight: 600;
    padding-left: 20px;
    position: relative;
    text-align: left;
}
.footer_bottom .f_util .f_family button:after {
    content: '\f106';
    font-size: 1em;
    font-weight: 400;
    font-family: 'Font Awesome 6 Pro';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}
.footer_bottom .f_util .f_family ul {
    display: none;
    width: 100%;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 5px 5px 15px rgba(25, 25, 25, 0.07);
    position: absolute;
    left: 0;
    bottom: 100%;
    padding: 20px 25px;
    z-index: 50;
    margin-bottom: 10px;
}
.footer_bottom .f_util .f_family ul li a {
    display: block;
    font-size: 1em;
    color: #a4a4a4;
    padding: 5px 0;
}
.footer_bottom .f_util .f_family ul li a:hover {
    color: #191919;
    font-weight: 600;
}
.footer_bottom .f_util .f_family button.on:after {
    content: '\f107';
}
.footer_bottom .f_util .f_family button.on + ul {
    display: block;
}
.footer_bottom .f_util .f_sns {
    display: flex;
    justify-content: end;
    margin-top: 20px;
}
.footer_bottom .f_util .f_sns li {
    width: 50px;
    margin-right: 5px;
}
.footer_bottom .f_util .f_sns li:last-child {
    margin-right: 0;
}
.footer_bottom .f_util .f_sns li a {
    display: block;
    width: 100%;
    height: 50px;
    background: no-repeat center center;
    background-size: contain;
    border-radius: 50%;
}

.footer_bottom .f_util .f_sns li.blog a {
    background-image: url(https://static.est.so/web/security/images/icon_blog.png);
}
.footer_bottom .f_util .f_sns li:hover.blog a {
    background-image: url(https://static.est.so/web/security/images/icon_blog_on.png);
}
.footer_bottom .f_util .f_sns li.kakao a {
    background-image: url(https://static.est.so/web/security/images/icon_kakao2.png);
}
.footer_bottom .f_util .f_sns li:hover.kakao a {
    background-image: url(https://static.est.so/web/security/images/icon_kakao_on.png);
}
.footer_bottom .f_util .f_sns li.instagram a {
    background-image: url(https://static.est.so/web/security/images/icon_instagram.png);
}
.footer_bottom .f_util .f_sns li:hover.instagram a {
    background-image: url(https://static.est.so/web/security/images/icon_instagram_on.png);
}

@media screen and (max-width: 1220px) {
    .footer_top .f_util li:after {
        margin: 0 10px;
    }
    .footer_top .f_util li a {
        font-size: 1em;
    }
    .footer_bottom .f_info ul br {
        display: none;
    }
}

@media screen and (max-width: 1024px) {
    .footer_top > div {
        height: 40px;
    }
    .footer_bottom {
        padding: 4% 0;
    }
    .footer_bottom .f_logo {
        width: 60px;
    }
    .footer_bottom .f_info {
        width: calc(100% - 220px);
        padding-left: 30px;
    }
    .footer_bottom .f_info ul br {
        display: none;
    }
    .footer_bottom .f_info ul li {
        margin: 0 10px 5px 0;
    }
    .footer_bottom .f_util {
        width: 160px;
    }
    .footer_bottom .f_util .f_family button {
        height: 40px;
        padding-left: 15px;
    }
    .footer_bottom .f_util .f_family button:after {
        right: 15px;
    }
    .footer_bottom .f_util .f_family ul {
        padding: 10px 15px;
    }
    .footer_bottom .f_util .f_sns li {
        width: 42px;
    }
    .footer_bottom .f_util .f_sns li a {
        height: 42px;
    }
}

@media screen and (max-width: 767px) {
    .footer_top > div {
        height: 35px;
    }
    .footer_top .f_util li:after {
        height: 13px;
    }
    .footer_bottom {
        flex-wrap: wrap;
    }
    .footer_bottom .f_logo {
        display: none;
        width: 55px;
    }
    .footer_bottom .f_info {
        width: 100%;
        padding-left: 0;
    }
    .footer_bottom .f_info p {
        margin-top: 10px;
    }
    .footer_bottom .f_util {
        display: flex;
        justify-content: space-between;
        align-items: end;
        width: 100%;
        margin-top: 15px;
    }
    .footer_bottom .f_util .f_family {
        width: 48%;
        margin-top: 0;
    }
    .footer_bottom .f_util .f_family button {
        height: 40px;
        padding-left: 10px;
    }
    .footer_bottom .f_util .f_family button:after {
        right: 10px;
    }
    .footer_bottom .f_util .f_family ul {
        padding: 8px 10px;
        margin-bottom: 5px;
    }
    .footer_bottom .f_util .f_sns {
        width: 48%;
        margin-top: 0;
    }
    .footer_bottom .f_util .f_sns li {
        width: 32px;
    }
    .footer_bottom .f_util .f_sns li a {
        height: 32px;
    }
}

#Quick {
    width: 70px;
    position: fixed;
    right: 50px;
    bottom: 50px;
    z-index: 200;
}
#Quick a {
    display: block;
    width: 100%;
    height: 70px;
    border-radius: 50%;
    position: relative;
    margin-bottom: 6px;
    box-shadow: 5px 5px 20px rgba(25, 25, 25, 0.1);
}
#Quick a i {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    font-size: 1.25em;
    color: #fff;
    position: relative;
    z-index: 10;
}
#Quick a p {
    display: flex;
    align-items: center;
    width: 0;
    height: 100%;
    border-radius: 35px 0 0 35px;
    font-size: 1em;
    color: #fff;
    font-weight: 600;
    text-indent: 25px;
    white-space: nowrap;
    position: absolute;
    right: 30px;
    top: 0;
    transition: width 0.6s;
    overflow: hidden;
}
#Quick a:hover p {
    width: 150px;
}
#Quick .go_top {
    display: block;
    width: 50px;
    height: 50px;
    background: none;
    border: 1px solid #ddd;
    border-radius: 50%;
    box-shadow: 5px 5px 20px rgba(25, 25, 25, 0.1);
    font-size: 0.875em;
    color: #a4a4a4;
    margin: 0 auto;
}

#Quick a.inquiry_btn i,
#Quick a.inquiry_btn p {
    background: #009eec;
}
#Quick a.blog_btn i,
#Quick a.blog_btn p {
    background: #00c73c;
}
#Quick a.support_btn i,
#Quick a.support_btn p {
    background: #006cc8;
}
#Quick a.kakao_btn i,
#Quick a.kakao_btn p {
    background: #ffdb11;
    color: #000;
}

@media screen and (max-width: 1220px) {
    #Quick {
        right: 6%;
    }
}

@media screen and (max-width: 1024px) {
    #Quick {
        width: 50px;
        bottom: 30px;
    }
    #Quick a {
        height: 50px;
        margin-bottom: 4px;
    }
    #Quick a i {
        font-size: 1em;
    }
    #Quick a i img {
        width: 25px;
    }
    #Quick a p {
        font-size: 0.875em;
        text-indent: 15px;
        right: 25px;
    }
    #Quick a:hover p {
        width: 120px;
    }
    #Quick .go_top {
        width: 40px;
        height: 40px;
    }
}

@media screen and (max-width: 767px) {
    #Quick {
        width: 40px;
        bottom: 20px;
    }
    #Quick a {
        height: 40px;
    }
    #Quick a i img {
        width: 20px;
    }
    #Quick a p {
        text-indent: 10px;
        right: 20px;
    }
    #Quick a:hover p {
        width: 100px;
    }
    #Quick .go_top {
        width: 32px;
        height: 32px;
    }
}

/* main */
#mVisu {
    width: 100%;
    height: 628px;
    background: #e1f5ff;
    position: relative;
}
#mVisu .inner {
    position: relative;
    z-index: 5;
}
#mVisu .txt_box {
    padding-top: 120px;
}
#mVisu .txt_box .t1 {
    font-size: 1.75em;
    color: #009eec;
    line-height: 1.3em;
    font-weight: 700;
    margin-bottom: 20px;
}
#mVisu .txt_box .t2 {
    font-size: 3.75em;
    line-height: 1.16em;
    font-weight: 600;
    font-family: 'S Dream';
}
#mVisu .txt_box .t3 {
    font-size: 1.375em;
    color: #666;
    line-height: 1.3em;
    margin-top: 15px;
}
#mVisu .txt_box .security_btn1 {
    margin-top: 40px;
}
#mVisu .img_box {
    width: 650px;
    height: 100%;
    position: absolute;
    left: 50%;
    top: 0;
}
#mVisu .img_box img {
    max-width: 100%;
    max-height: 100%;
}

@media screen and (max-width: 1024px) {
    #mVisu {
        height: 463px;
    }
    #mVisu .txt_box {
        padding-top: 80px;
    }
    #mVisu .txt_box .t1 {
        font-size: 1.5em;
        margin-bottom: 10px;
    }
    #mVisu .txt_box .t2 {
        font-size: 3em;
    }
    #mVisu .txt_box .t3 {
        font-size: 1.125em;
        margin-top: 10px;
    }
    #mVisu .txt_box .security_btn1 {
        margin-top: 25px;
    }
    #mVisu .img_box {
        width: 480px;
    }
}

@media screen and (max-width: 767px) {
    #mVisu {
        height: 463px;
    }
    #mVisu .txt_box {
        padding-top: 35px;
    }
    #mVisu .txt_box .t1 {
        font-size: 1.25em;
    }
    #mVisu .txt_box .t2 {
        font-size: 2.2em;
    }
    #mVisu .txt_box .t3 {
        font-size: 1em;
    }
    #mVisu .txt_box .security_btn1 {
        margin-top: 20px;
    }
    #mVisu .img_box {
        display: flex;
        justify-content: end;
        align-items: end;
        width: 100%;
        left: auto;
        top: auto;
        right: -6%;
        bottom: 0;
    }
    #mVisu .img_box img {
        max-height: 75%;
    }
}

.main_title {
    font-size: 2.5em;
    line-height: 1.375em;
    font-weight: 500;
    font-family: 'S Dream';
}

@media screen and (max-width: 1024px) {
    .main_title {
        font-size: 2em;
    }
}

@media screen and (max-width: 767px) {
    .main_title {
        font-size: 1.7em;
    }
}

#mEducation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-top: -91px;
    position: relative;
    z-index: 30;
}
#mEducation .request_box {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    width: 352px;
    height: 182px;
    background: #009eec;
    border-radius: 20px;
    text-align: center;
}
#mEducation .request_box .date {
    width: 126px;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
}
#mEducation .request_box .date dt {
    font-size: 1em;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 800;
}
#mEducation .request_box .date dd {
    font-size: 1em;
    color: #fff;
    font-weight: 600;
}
#mEducation .request_box .date dd strong {
    display: block;
    font-size: 2.81em;
    font-weight: 700;
}
#mEducation .request_box .btn_box {
    width: 100%; /*width:calc(100% - 126px);*/
    position: relative;
}
#mEducation .request_box .btn_box a {
    display: block;
    width: 100%;
    font-size: 1.875em;
    color: #fff;
    font-weight: 700;
}
#mEducation .request_box .btn_box .txt {
    width: 190px;
    height: 92px;
    background: url(https://static.est.so/web/security/images/mEducation_img1.svg) no-repeat left top;
    font-size: 1em;
    color: #009eec;
    font-weight: 700;
    line-height: 1.25em;
    text-align: left;
    padding: 15px 19px;
    position: absolute;
    left: 30px;
    bottom: 100%;
    animation: mEducationRequest 1.5s infinite alternate-reverse ease-in-out;
}
#mEducation .reserve_box {
    width: calc(100% - 372px);
    height: 159px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 5px 10px 20px rgba(25, 25, 25, 0.05);
    position: relative;
    padding: 0 33px;
}
.reserve_slide {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.reserve_slide .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}
.reserve_slide .swiper-slide:before {
    content: '';
    display: block;
    width: 1px;
    height: 70px;
    background: #ddd;
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
}
.reserve_slide .swiper-slide:last-child:before {
    display: none;
}
/*.reserve_slide .swiper-slide-prev ~ .swiper-slide:before {content:''; display:block; width:1px; height:70px; background:#ddd; position:absolute; left:100%; top:50%; transform:translateY(-50%)}*/
.reserve_slide dl dt {
    font-size: 1.5em;
    font-weight: 700;
}
.reserve_slide dl dd {
    font-size: 1em;
    color: #666;
    margin-top: 5px;
}
.reserve_slide a {
    display: block;
    width: 120px;
    line-height: 33px;
    border: 1px solid #009eec;
    border-radius: 18px;
    font-size: 1em;
    color: #009eec;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.5s;
    transition-property: background, color;
}
.reserve_slide a:hover {
    background: #009eec;
    color: #fff;
}
.reserve_slide a.end {
    border-color: #ddd !important;
    background: #f8f9fc !important;
    color: #a4a4a4 !important;
}
.reserve_slide .swiper-button-prev,
.reserve_slide .swiper-button-next {
    font-size: 1.5em;
    color: #191919;
}
.reserve_slide .swiper-button-prev:after,
.reserve_slide .swiper-button-next:after {
    font-size: 1em;
    font-weight: 400;
    font-family: 'Font Awesome 6 Pro';
}
.reserve_slide .swiper-button-prev:after {
    content: '\f104';
}
.reserve_slide .swiper-button-next:after {
    content: '\f105';
}

@keyframes mEducationRequest {
    0% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

@media screen and (max-width: 1024px) {
    #mEducation {
        margin-top: -70px;
    }
    #mEducation .request_box {
        width: 250px;
        height: 140px;
    }
    #mEducation .request_box .date {
        width: 90px;
    }
    #mEducation .request_box .date dt {
        font-size: 0.875em;
    }
    #mEducation .request_box .date dd {
        font-size: 0.875em;
    }
    #mEducation .request_box .date dd strong {
        font-size: 2.6em;
    }
    /*#mEducation .request_box .btn_box {width:calc(100% - 90px)}*/
    #mEducation .request_box .btn_box a {
        font-size: 1.4em;
    }
    #mEducation .request_box .btn_box .txt {
        width: 150px;
        height: 73px;
        font-size: 0.875em;
        background-size: contain;
        padding: 12px 13px;
        left: 10px;
    }
    #mEducation .reserve_box {
        width: calc(100% - 260px);
        height: 120px;
        padding: 0 25px;
    }
    .reserve_slide .swiper-slide-prev ~ .swiper-slide:before {
        height: 50px;
    }
    .reserve_slide dl dt {
        font-size: 1.3em;
    }
    .reserve_slide a {
        width: 90px;
        line-height: 30px;
        font-size: 0.875em;
        margin-top: 10px;
    }
    .reserve_slide .swiper-button-prev,
    .reserve_slide .swiper-button-next {
        font-size: 1.3em;
    }
    .reserve_slide .swiper-button-prev {
        left: 5px;
    }
    .reserve_slide .swiper-button-next {
        right: 5px;
    }
}

@media screen and (max-width: 767px) {
    #mEducation {
        margin-top: -50px;
    }
    #mEducation .request_box {
        width: 100%;
        height: 100px;
        border-radius: 10px;
    }
    #mEducation .request_box .btn_box a {
        font-size: 1.3em;
    }
    #mEducation .request_box .btn_box .txt {
        width: 130px;
        height: 63px;
        padding: 10px 13px;
        left: 50%;
        margin-left: -65px;
    }
    #mEducation .reserve_box {
        width: 100%;
        height: 120px;
        border-radius: 10px;
        padding: 0;
        margin-top: 5px;
        box-shadow: 0 0 20px rgba(25, 25, 25, 0.1);
    }
    .reserve_slide a {
        width: 80px;
        line-height: 28px;
    }
    .reserve_slide .swiper-button-prev,
    .reserve_slide .swiper-button-next {
        display: none;
    }
}

#mNotice {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ddd;
    margin: 0 auto;
    padding: 40px 0;
}
#mNotice .tit {
    width: 135px;
    font-size: 1.5em;
    font-weight: 800;
    text-transform: uppercase;
}
#mNotice .more {
    display: block;
    width: 20px;
    font-size: 1.25em;
    text-align: right;
}
.mNotice_slide {
    width: calc(100% - 155px);
    height: 30px;
    position: relative;
    padding-right: 125px;
    overflow: hidden;
}
.mNotice_slide:before {
    content: '';
    display: block;
    width: 1px;
    height: 16px;
    background: #a4a4a4;
    position: absolute;
    right: 61px;
    top: 50%;
    transform: translateY(-50%);
}
.mNotice_slide a {
    display: flex;
    align-items: center;
    width: 100%;
    height: 30px;
}
.mNotice_slide a .subject {
    width: calc(100% - 85px);
    font-size: 1.125em;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.mNotice_slide a .date {
    width: 85px;
    font-size: 1em;
    color: #666;
    text-align: right;
}
.mNotice_slide .swiper-button-prev,
.mNotice_slide .swiper-button-next {
    font-size: 1.25em;
    color: #191919;
}
.mNotice_slide .swiper-button-prev {
    left: auto;
    right: 65px;
}
.mNotice_slide .swiper-button-next {
    right: 30px;
}
.mNotice_slide .swiper-button-prev:after,
.mNotice_slide .swiper-button-next:after {
    font-size: 1em;
    font-weight: 400;
    font-family: 'Font Awesome 6 Pro';
}
.mNotice_slide .swiper-button-prev:after {
    content: '\f104';
}
.mNotice_slide .swiper-button-next:after {
    content: '\f105';
}

@media screen and (max-width: 1024px) {
    #mNotice {
        padding: 25px 0;
    }
    #mNotice .tit {
        width: 100px;
        font-size: 1.3em;
    }
    #mNotice .more {
        font-size: 1.125em;
    }
    .mNotice_slide {
        width: calc(100% - 120px);
        padding-right: 90px;
    }
    .mNotice_slide:before {
        height: 13px;
        right: 46px;
    }
    .mNotice_slide a .subject {
        font-size: 1em;
    }
    .mNotice_slide a .date {
        font-size: 0.875em;
    }
    .mNotice_slide .swiper-button-prev {
        right: 45px;
    }
    .mNotice_slide .swiper-button-next {
        right: 20px;
    }
}

@media screen and (max-width: 767px) {
    #mNotice {
        padding: 15px 0;
    }
    #mNotice .tit {
        width: 70px;
        font-size: 1.2em;
    }
    .mNotice_slide {
        width: calc(100% - 90px);
        padding-right: 5px;
    }
    .mNotice_slide:before {
        display: none;
    }
    .mNotice_slide a .subject {
        width: calc(100% - 60px);
    }
    .mNotice_slide a .date {
        width: 60px;
    }
    .mNotice_slide .swiper-button-prev,
    .mNotice_slide .swiper-button-next {
        display: none;
    }
}

#mCommunity {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 70px;
}
#mCommunity .quick {
    width: calc(50% - 24px);
}
#mCommunity .quick ul {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    height: 295px;
    border: 1px solid #ddd;
    border-radius: 20px;
    position: relative;
}
#mCommunity .quick ul:before {
    content: '';
    display: block;
    width: calc(100% - 60px);
    height: 1px;
    background: #ddd;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%);
}
#mCommunity .quick ul li {
    width: 33.33%;
    height: 50%;
    position: relative;
}
#mCommunity .quick ul li:after {
    content: '';
    display: block;
    width: 1px;
    height: 70px;
    background: #ddd;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
#mCommunity .quick ul li:nth-child(3n):after {
    display: none;
}
#mCommunity .quick ul li a {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
}
#mCommunity .quick ul li a .icon {
    display: block;
    width: 51px;
    height: 51px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    margin-bottom: 15px;
}
#mCommunity .quick ul li a p {
    font-size: 1.125em;
    font-weight: 700;
    text-align: center;
}
#mCommunity .banner {
    width: calc(50% + 4px);
}
.mCommunity_slide {
    width: 100%;
    height: 100%;
    border: 1px solid #ddd;
    border-radius: 20px;
    background: #e1f5ff;
    overflow: hidden;
    position: relative;
}
.mCommunity_slide .swiper-slide {
    background: #e1f5ff; /* padding:50px; */
    position: relative;
}
.mCommunity_slide p,
.mCommunity_slide a {
    position: relative;
    z-index: 5;
}
.mCommunity_slide .t1 {
    font-size: 1.25em;
    color: #666;
    line-height: 1.5em;
    font-weight: 500;
}
.mCommunity_slide .t2 {
    width: 280px;
    font-size: 1.875em;
    line-height: 1.33em;
    font-weight: 700;
    margin-top: 10px;
}
.mCommunity_slide a {
    display: inline-block;
    font-size: 1em;
    color: #666;
    font-weight: 600;
    margin-top: 15px;
}
.mCommunity_slide a:after {
    content: '\f105';
    display: inline-block;
    width: 24px;
    line-height: 24px;
    background: #191919;
    border-radius: 50%;
    font-size: 0.75em;
    color: #fff;
    font-weight: 400;
    font-family: 'Font Awesome 6 Pro';
    text-align: center;
    margin-left: 10px;
    vertical-align: middle;
}
.mCommunity_slide .img_box {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover; /* border-radius:50%; position:absolute; right:30px; top:50%; transform:translateY(-50%) */
}
.mCommunity_slide .btn_box {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 184px;
    height: 51px;
    background: rgba(25, 25, 25, 0.3);
    border-top-left-radius: 20px;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 30;
}
.mCommunity_slide .btn_box .play_btn {
    font-size: 1.25em;
    margin: 0 12px;
}
.mCommunity_slide .btn_box .play_btn:after {
    content: '\f04c';
    font-size: 1em;
    color: #fff;
    font-weight: 400;
    font-family: 'Font Awesome 6 Pro';
}
.mCommunity_slide .btn_box .play_btn.stop:after {
    content: '\f04b';
    font-weight: 900;
}
.mCommunity_slide .swiper-pagination-fraction {
    width: auto;
    position: relative;
    bottom: 0;
    font-size: 1em;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    margin-right: 20px;
}
.mCommunity_slide .swiper-pagination-fraction i {
    display: inline-block;
    width: 1px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    margin: 0 10px;
}
.mCommunity_slide .swiper-pagination-current {
    color: #fff;
}
.mCommunity_slide .swiper-button-prev,
.mCommunity_slide .swiper-button-next {
    width: auto;
    height: auto;
    font-size: 1.25em;
    color: #fff;
    position: relative;
    left: 0;
    right: 0;
    top: 0;
    margin-top: 0;
}
.mCommunity_slide .swiper-button-prev:after,
.mCommunity_slide .swiper-button-next:after {
    font-size: 1em;
    font-weight: 400;
    font-family: 'Font Awesome 6 Pro';
}
.mCommunity_slide .swiper-button-prev:after {
    content: '\f104';
}
.mCommunity_slide .swiper-button-next:after {
    content: '\f105';
}

#mCommunity .quick ul li a .icon1 {
    background-image: url(https://static.est.so/web/security/images/mCommunity_icon1.png);
}
#mCommunity .quick ul li a .icon2 {
    background-image: url(https://static.est.so/web/security/images/mCommunity_icon2.png);
}
#mCommunity .quick ul li a .icon3 {
    background-image: url(https://static.est.so/web/security/images/mCommunity_icon3.png);
}
#mCommunity .quick ul li a .icon4 {
    background-image: url(https://static.est.so/web/security/images/mCommunity_icon4.png);
}
#mCommunity .quick ul li a .icon5 {
    background-image: url(https://static.est.so/web/security/images/mCommunity_icon5.png);
}
#mCommunity .quick ul li a .icon6 {
    background-image: url(https://static.est.so/web/security/images/mCommunity_icon6.png);
}

@media screen and (max-width: 1024px) {
    #mCommunity {
        margin-top: 7%;
    }
    #mCommunity .quick {
        width: calc(50% - 5px);
    }
    #mCommunity .quick ul {
        height: 250px;
    }
    #mCommunity .quick ul li a .icon {
        width: 42px;
        height: 42px;
        margin-bottom: 10px;
    }
    #mCommunity .quick ul li a p {
        font-size: 1em;
    }
    #mCommunity .banner {
        width: calc(50% - 5px);
    }
    .mCommunity_slide .swiper-slide {
        padding: 25px;
    }
    .mCommunity_slide .t1 {
        font-size: 1.125em;
    }
    .mCommunity_slide .t2 {
        width: 65%;
        font-size: 1.5em;
        margin-top: 5px;
    }
    .mCommunity_slide .img_box {
        width: 17vw;
        height: 17vw;
        right: 15px;
    }
    .mCommunity_slide .btn_box {
        width: 150px;
        height: 40px;
    }
    .mCommunity_slide .btn_box .play_btn {
        font-size: 1em;
        margin: 0 8px;
    }
    .mCommunity_slide .swiper-pagination-fraction {
        margin-right: 12px;
    }
    .mCommunity_slide .swiper-pagination-fraction i {
        height: 10px;
        margin: 0 7px;
    }
    .mCommunity_slide .swiper-button-prev,
    .mCommunity_slide .swiper-button-next {
        font-size: 1em;
    }
}

@media screen and (max-width: 767px) {
    #mCommunity .quick {
        width: 100%;
        margin-bottom: 1.5%;
    }
    #mCommunity .quick ul {
        height: 180px;
        border-radius: 10px;
    }
    #mCommunity .quick ul:before {
        width: calc(100% - 30px);
    }
    #mCommunity .quick ul li:after {
        height: 50px;
    }
    #mCommunity .quick ul li a .icon {
        width: 33px;
        height: 33px;
        margin-bottom: 5px;
    }
    #mCommunity .banner {
        width: 100%;
    }
    .mCommunity_slide {
        height: 180px;
        border-radius: 10px;
    }
    .mCommunity_slide .swiper-slide {
        display: flex;
        justify-content: center;
        flex-direction: column;
        padding: 15px;
    }
    .mCommunity_slide .t1 {
        font-size: 1em;
    }
    .mCommunity_slide .t2 {
        font-size: 1.3em;
    }
    .mCommunity_slide a {
        margin-top: 10px;
    }
    .mCommunity_slide a:after {
        width: 18px;
        line-height: 18px;
        margin-left: 5px;
    }
    .mCommunity_slide .img_box {
        width: 140px;
        height: 140px;
        right: 10px;
    }
    .mCommunity_slide .btn_box {
        width: 120px;
        height: 32px;
        border-top-left-radius: 10px;
    }
    .mCommunity_slide .btn_box .play_btn {
        font-size: 1em;
        margin: 0 8px;
    }
    .mCommunity_slide .swiper-pagination-fraction {
        margin-right: 10px;
    }
    .mCommunity_slide .swiper-pagination-fraction i {
        height: 8px;
    }
}

#mWhy {
    display: flex;
    align-items: center;
    margin-top: 100px;
}
#mWhy .txt_box {
    width: 360px;
}
#mWhy .txt_box .main_title {
    font-size: 2.3em;
}
#mWhy .tab_box {
    margin-top: 50px;
}
#mWhy .tab_box li {
    position: relative;
}
#mWhy .tab_box li:before {
    content: '';
    display: block;
    width: calc(100% + 70px);
    height: 100%;
    background: #009eec;
    border-radius: 39px;
    box-shadow: 5px 10px 20px rgba(0, 158, 236, 0.2);
    position: absolute;
    left: -50px;
    top: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
    transition-property: opacity, visibility;
}
#mWhy .tab_box li button {
    display: block;
    width: 100%;
    height: 78px;
    font-size: 1.25em;
    font-weight: 600;
    text-align: left;
    position: relative;
    z-index: 5;
    transition: color 0.5s;
}
#mWhy .tab_box li:hover button {
    color: #009eec;
}
#mWhy .tab_box li.on:before {
    opacity: 1;
    visibility: visible;
}
#mWhy .tab_box li.on button {
    color: #fff;
}
#mWhy .tab_box li.on button:after {
    content: '\f105';
    font-size: 1em;
    font-weight: 400;
    font-family: 'Font Awesome 6 Pro';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}
#mWhy .cont_box {
    width: calc(100% - 360px);
}
#mWhy .cont_box > div {
    width: 100%;
    background: #f8f9fc;
    border-radius: 20px;
    padding: 70px;
}
#mWhy .cont_box > div:not(.on) {
    display: none;
}
#mWhy .cont_box > div dl dt {
    font-size: 1.875em;
    line-height: 1.33em;
    font-weight: 700;
}
#mWhy .cont_box > div dl dd {
    max-width: 500px;
    font-size: 1.25em;
    color: #666;
    line-height: 1.5em;
    margin-top: 15px;
}
#mWhy .cont_box > div .img_box {
    width: 100%;
    height: 135px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    margin-top: 70px;
}

@media screen and (max-width: 1024px) {
    #mWhy {
        margin-top: 10%;
    }
    #mWhy .txt_box {
        width: 270px;
    }
    #mWhy .txt_box .main_title {
        font-size: 1.8em;
    }
    #mWhy .tab_box {
        margin-top: 30px;
    }
    #mWhy .tab_box li:before {
        width: calc(100% + 50px);
        left: -30px;
    }
    #mWhy .tab_box li button {
        height: 60px;
        font-size: 1.125em;
    }
    #mWhy .cont_box {
        width: calc(100% - 270px);
    }
    #mWhy .cont_box > div {
        padding: 40px;
    }
    #mWhy .cont_box > div dl dt {
        font-size: 1.5em;
    }
    #mWhy .cont_box > div dl dd {
        font-size: 1.125em;
        margin-top: 10px;
    }
    #mWhy .cont_box > div .img_box {
        height: 100px;
        margin-top: 35px;
    }
}

@media screen and (max-width: 767px) {
    #mWhy {
        display: block;
    }
    #mWhy .txt_box {
        width: 100%;
    }
    #mWhy .txt_box .main_title {
        font-size: 1.7em;
    }
    #mWhy .tab_box {
        margin-top: 3%;
    }
    #mWhy .tab_box li {
        margin-bottom: 5px;
    }
    #mWhy .tab_box li:before {
        display: none;
    }
    #mWhy .tab_box li button {
        height: 35px;
        border: 1px solid #ddd;
        font-size: 1em;
        padding: 0 10px;
        border-radius: 5px;
    }
    #mWhy .tab_box li.on button {
        background: #009eec;
        border-color: #009eec;
    }
    #mWhy .cont_box {
        width: 100%;
    }
    #mWhy .cont_box > div {
        border-radius: 10px;
        padding: 15px;
    }
    #mWhy .cont_box > div dl dt {
        font-size: 1.3em;
    }
    #mWhy .cont_box > div dl dd {
        font-size: 1em;
        margin-top: 5px;
    }
    #mWhy .cont_box > div .img_box {
        height: 80px;
        margin-top: 15px;
    }
}

#mBest {
    margin-top: 100px;
}
#mBest .box {
    display: flex;
    width: 100%;
    background: #fff;
    border-radius: 20px;
    box-shadow: 5px 10px 20px rgba(25, 25, 25, 0.05);
    margin-top: 40px;
    padding: 50px;
}
#mBest .box > div {
    width: 50%;
}
#mBest .box > div:first-child {
    display: flex;
    border-right: 1px solid #ddd;
    padding-right: 70px;
}
#mBest .box > div:last-child {
    padding-left: 70px;
}
#mBest .box .tit {
    font-size: 1.375em;
    line-height: 1.36em;
    font-weight: 500;
}
#mBest .box .box1 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 250px;
    height: 250px;
    background: url(https://static.est.so/web/security/images/mBest_img1.png) no-repeat center center;
    background-size: contain;
    margin-left: 30px;
    color: #009eec;
}
#mBest .box .box1 .t1 {
    font-size: 1.375em;
    font-weight: 700;
}
#mBest .box .box1 .t2 {
    font-size: 1.5em;
    font-weight: 700;
}
#mBest .box .box1 .t2 strong {
    font-size: 2.72em;
}
#mBest .box ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 30px;
}
#mBest .box ul li {
    width: calc(50% - 4.5px);
    background: #ebf6ff;
    border-radius: 10px;
    font-size: 1.25em;
    color: #666;
    line-height: 1.5em;
    padding: 15px 20px;
}
#mBest .box ul li:nth-child(2) ~ li {
    margin-top: 10px;
}
#mBest .box ul li:last-child {
    width: 100%;
}

@media screen and (max-width: 1220px) {
    #mBest .box {
        padding: 40px;
    }
    #mBest .box > div:first-child {
        padding-right: 30px;
    }
    #mBest .box > div:last-child {
        padding-left: 30px;
    }
    #mBest .box ul li {
        font-size: 1.125em;
    }
}

@media screen and (max-width: 1024px) {
    #mBest .box {
        margin-top: 4%;
        padding: 25px;
    }
    #mBest .box .tit {
        font-size: 1.25em;
    }
    #mBest .box > div:first-child {
        width: 230px;
        display: block;
        padding-right: 20px;
    }
    #mBest .box > div:last-child {
        width: calc(100% - 230px);
        padding-left: 20px;
    }
    #mBest .box .box1 {
        width: 180px;
        height: 180px;
        margin: 15px 0 0;
    }
    #mBest .box .box1 .t1 {
        font-size: 1em;
    }
    #mBest .box .box1 .t2 {
        font-size: 1.125em;
    }
    #mBest .box ul {
        margin-top: 15px;
    }
    #mBest .box ul li {
        width: 100%;
        font-size: 1em;
        padding: 10px 15px;
    }
    #mBest .box ul li:nth-child(1) ~ li {
        margin-top: 5px;
    }
}

@media screen and (max-width: 767px) {
    #mBest .box {
        display: block;
        border-radius: 10px;
        padding: 5%;
    }
    #mBest .box > div:first-child {
        display: flex;
        width: 100%;
        padding-right: 0;
        border-right: 0;
        border-bottom: 1px solid #ddd;
        margin-bottom: 4%;
        padding-bottom: 4%;
    }
    #mBest .box > div:last-child {
        width: 100%;
        padding-left: 0;
    }
    #mBest .box .box1 {
        width: 150px;
        height: 150px;
        margin-top: 10px;
    }
    #mBest .box ul {
        margin-top: 10px;
    }
    #mBest .box ul li {
        border-radius: 5px;
        padding: 8px 10px;
    }
}

#mReview {
    margin: 100px auto;
}
#mReview .tit_box {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 40px;
}
.mReview_slide {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding-bottom: 60px;
}
.mReview_slide a {
    display: block;
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 30px;
}
.mReview_slide a .star {
    font-size: 1.125em;
    color: #009eec;
    margin-bottom: 20px;
}
.mReview_slide a .txt_box .subject {
    font-size: 1.25em;
    line-height: 1.5em;
    font-weight: 700;
}
.mReview_slide a .txt_box .name {
    font-size: 1em;
    color: #666;
    margin-top: 15px;
}
.mReview_slide a .txt_box .content {
    font-size: 1.125em;
    color: #666;
    line-height: 1.55em;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #ddd;
    word-break: normal;
}
.mReview_slide .swiper-button-prev,
.mReview_slide .swiper-button-next {
    height: 30px;
    top: auto;
    bottom: 0;
    margin-top: 0;
    font-size: 1.875em;
    color: #191919;
}
.mReview_slide .swiper-button-prev {
    left: 0;
}
.mReview_slide .swiper-button-next {
    left: 45px;
    right: auto;
}
.mReview_slide .swiper-button-prev:after,
.mReview_slide .swiper-button-next:after {
    font-size: 1em;
    font-weight: 400;
    font-family: 'Font Awesome 6 Pro';
}
.mReview_slide .swiper-button-prev:after {
    content: '\f104';
}
.mReview_slide .swiper-button-next:after {
    content: '\f105';
}
.mReview_slide.swiper-container-horizontal > .swiper-pagination-progressbar {
    width: calc(100% - 90px);
    height: 2px;
    background: #ddd;
    border-radius: 0;
    top: auto;
    bottom: 14px;
    left: auto;
    right: 0;
}
.mReview_slide .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    height: 2px;
    background: #191919;
}

@media screen and (max-width: 1024px) {
    #mReview {
        margin: 10% auto;
    }
    #mReview .tit_box {
        margin-bottom: 4%;
    }
    .mReview_slide {
        padding-bottom: 40px;
    }
    .mReview_slide a {
        padding: 15px;
    }
    .mReview_slide a .star {
        font-size: 1em;
        margin-bottom: 10px;
    }
    .mReview_slide a .txt_box .subject {
        font-size: 1.125em;
    }
    .mReview_slide a .txt_box .name {
        margin-top: 5px;
    }
    .mReview_slide a .txt_box .content {
        font-size: 1em;
    }
    .mReview_slide .swiper-button-prev,
    .mReview_slide .swiper-button-next {
        height: 20px;
        font-size: 1.5em;
    }
    .mReview_slide .swiper-button-next {
        left: 30px;
    }
    .mReview_slide.swiper-container-horizontal > .swiper-pagination-progressbar {
        width: calc(100% - 70px);
        bottom: 9px;
    }
}

@media screen and (max-width: 767px) {
    #mReview {
        position: relative;
        padding-bottom: 55px;
    }
    #mReview .tit_box {
        display: block;
    }
    #mReview .tit_box .security_btn1 {
        position: absolute;
        right: 0;
        bottom: 0;
    }
    .mReview_slide {
        overflow: visible;
    }
    .mReview_slide .swiper-slide {
        width: 280px;
    }
    .mReview_slide a {
        padding: 12px;
        border-radius: 10px;
    }
    .mReview_slide a .txt_box .content {
        margin-top: 10px;
        padding-top: 10px;
    }
}

#mContact {
    width: 100%;
    background: #009eec;
    padding: 90px 0;
}
#mContact > div {
    display: flex;
    align-items: center;
}
#mContact .main_title {
    width: 285px;
}
#mContact dl {
    width: calc(100% - 479px);
    padding-left: 50px;
    padding-right: 20px;
    border-left: 1px solid #ddd;
}
#mContact dl dt {
    font-size: 1.875em;
    color: #fff;
    line-height: 1.33em;
    font-weight: 700;
}
#mContact dl dd {
    font-size: 1.125em;
    color: #fff;
    line-height: 1.4em;
    font-weight: 500;
    margin-top: 15px;
}

@media screen and (max-width: 1024px) {
    #mContact {
        padding: 8% 0;
    }
    #mContact .main_title {
        width: 220px;
    }
    #mContact dl {
        width: calc(100% - 380px);
        padding-left: 30px;
    }
    #mContact dl dt {
        font-size: 1.5em;
    }
    #mContact dl dd {
        font-size: 1em;
        margin-top: 10px;
    }
}

@media screen and (max-width: 767px) {
    #mContact > div {
        display: block;
    }
    #mContact .main_title {
        width: 100%;
    }
    #mContact dl {
        width: 100%;
        padding: 0;
        margin-top: 2%;
        margin-bottom: 5%;
        border-left: 0;
    }
    #mContact dl dt {
        font-size: 1.3em;
    }
}

#mLocation {
    margin: 100px auto;
}
#mLocation .map_box {
    border: 1px solid #ddd;
    border-radius: 20px;
    overflow: hidden;
    margin-top: 40px;
}
#mLocation .map_box img {
    width: 100%;
}
#mLocation .box {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    width: 100%;
    margin-top: 50px;
}
#mLocation .box .btn_box {
    display: flex;
    justify-content: space-between;
    width: 394px;
}
#mLocation .box .btn_box .naver {
    background: #00c73c;
    border-color: #00c73c;
    color: #fff;
}
#mLocation .box .btn_box .kakao {
    background: #fae100;
    border-color: #fae100;
    color: #191919;
}
#mLocation .box .info {
    display: flex;
    justify-content: space-between;
    width: 680px;
    position: relative;
}
#mLocation .box .info:before {
    content: '';
    display: block;
    width: 1px;
    height: 100%;
    background: #ddd;
    position: absolute;
    left: 50%;
    top: 0;
}
#mLocation .box .info dl {
    width: calc(50% - 40px);
}
#mLocation .box .info dl dt {
    font-size: 1.375em;
    font-weight: 600;
}
#mLocation .box .info dl dd {
    font-size: 1.125em;
    color: #666;
    line-height: 1.55em;
    margin-top: 15px;
    word-break: normal;
}

@media screen and (max-width: 1220px) {
    #mLocation .box .info {
        width: calc(100% - 420px);
    }
}

@media screen and (max-width: 1024px) {
    #mLocation {
        margin: 10% auto;
    }
    #mLocation .map_box {
        margin-top: 3%;
    }
    #mLocation .box {
        margin-top: 4%;
    }
    #mLocation .box .btn_box {
        width: 325px;
    }
    #mLocation .box .info {
        width: calc(100% - 360px);
    }
    #mLocation .box .info dl {
        width: calc(50% - 20px);
    }
    #mLocation .box .info dl dt {
        font-size: 1.125em;
    }
    #mLocation .box .info dl dd {
        font-size: 1em;
        margin-top: 5px;
    }
}

@media screen and (max-width: 767px) {
    #mLocation .map_box {
        border-radius: 10px;
    }
    #mLocation .box {
        display: block;
    }
    #mLocation .box .btn_box {
        width: 100%;
        justify-content: center;
    }
    #mLocation .box .btn_box a {
        margin: 0 2px;
    }
    #mLocation .box .info {
        display: block;
        width: 100%;
        margin-bottom: 6%;
    }
    #mLocation .box .info:before {
        display: none;
    }
    #mLocation .box .info dl {
        width: 100%;
        margin-bottom: 3%;
    }
    #mLocation .box .info dl:last-child {
        margin-bottom: 0;
    }
    #mLocation .box .info dl dt {
        font-size: 1.125em;
    }
    #mLocation .box .info dl dd {
        font-size: 1em;
        margin-top: 5px;
    }
}

/* sub */
#sub_content {
    margin: 50px 0 100px;
}
#sub_content > div {
    display: flex;
    justify-content: space-between;
    align-items: start;
    flex-wrap: wrap;
}

#page_cont {
    width: calc(100% - 340px);
}
#page_cont2 {
    width: 100%;
}

.sub_title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
    margin-bottom: 50px;
}
.sub_title h3 {
    font-size: 2.18em;
    line-height: 1.3em;
    font-weight: 500;
    font-family: 'S Dream';
}
.sub_title h3.case2 {
    font-size: 1.875em;
    font-weight: 700;
    font-family: 'Pretendard';
}
.sub_title ul {
    display: flex;
    align-items: center;
}
.sub_title ul li {
    font-size: 1em;
    color: #666;
}
.sub_title ul li:after {
    content: '\f105';
    font-size: 0.875em;
    color: #ddd;
    font-weight: 400;
    font-family: 'Font Awesome 6 Pro';
    margin: 0 10px;
}
.sub_title ul li:last-child:after {
    display: none;
}
.sub_title ul li.home {
    color: #191919;
}

.bg01 {
    background: #f8f9fc;
}

.s_tit1 {
    font-size: 1.5em;
    font-weight: 600;
    margin-bottom: 15px;
}
.s_tit2 {
    font-size: 2.5em;
    line-height: 1.25em;
    font-weight: 600;
    font-family: 'S Dream';
}

.s_txt1 {
    font-size: 1.25em;
    color: #666;
    line-height: 1.5em;
}
.s_txt2 {
    font-size: 1.125em;
    color: #666;
    line-height: 1.5em;
}

@media screen and (max-width: 1220px) {
    #page_cont {
        width: calc(100% - 300px);
    }
}

@media screen and (max-width: 1024px) {
    #sub_content > div {
        display: block;
    }
    #sub_content {
        margin: 0 0 10%;
    }

    #page_cont {
        width: 100%;
        margin-top: 5%;
    }
    #page_cont2 {
        margin-top: 5%;
    }

    .sub_title {
        padding-bottom: 2%;
        margin-bottom: 5%;
    }
    .sub_title h3 {
        font-size: 1.7em;
    }
    .sub_title h3.case2 {
        font-size: 1.5em;
    }
    .sub_title ul li {
        font-size: 0.9375em;
    }

    .s_tit1 {
        font-size: 1.3em;
        margin-bottom: 1.5%;
    }
    .s_tit2 {
        font-size: 2em;
    }

    .s_txt1 {
        font-size: 1.125em;
    }
    .s_txt2 {
        font-size: 1em;
    }
}

@media screen and (max-width: 767px) {
    .sub_title h3 {
        font-size: 1.5em;
    }
    .sub_title h3.case2 {
        font-size: 1.3em;
    }
    .sub_title ul li:after {
        margin: 0 6px;
    }

    .s_tit2 {
        font-size: 1.8em;
    }

    .s_txt1 {
        font-size: 1em;
    }
}

.sub_menu_wrap {
    width: 270px;
}
.sub_menu_wrap h2 {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 80px;
    background: #009eec;
    border-radius: 10px 10px 0 0;
    font-size: 1.5em;
    color: #fff;
    font-weight: 500;
    font-family: 'S Dream';
    padding: 10px 30px;
}
.sub_menu_wrap .class_box {
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    padding: 30px 30px 0;
}
.sub_menu_wrap .class_box > div {
    background: #f8f9fc;
    padding: 20px 30px;
    text-align: center;
}
.sub_menu_wrap .class_box > div img {
    max-width: 100%;
}
.sub_menu_wrap .class_box > div p {
    font-size: 1.25em;
    font-weight: 600;
    margin-top: 20px;
}
.sub_menu_wrap .class_box > div p strong {
    color: #009eec;
}
.sub_menu_wrap button {
    display: none;
}
.sub_menu_wrap > ul {
    width: 100%;
    border: 1px solid #ddd;
    border-top: 0;
    border-radius: 0 0 10px 10px;
    padding: 30px;
    z-index: 30;
}
.sub_menu_wrap > ul > li > a {
    display: block;
    width: 100%;
    border-bottom: 1px solid #ddd;
    font-size: 1.125em;
    color: #666;
    padding: 15px 0;
    position: relative;
}
.sub_menu_wrap > ul > li:last-child a {
    border-bottom: 0;
}
.sub_menu_wrap > ul > li.depth2 > a:after {
    content: '\f106';
    font-size: 0.77em;
    color: #191919;
    font-weight: 400;
    font-family: 'Font Awesome 6 Pro';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}
.sub_menu_wrap > ul > li.depth2 > a.on:after {
    content: '\f107';
}
.sub_menu_wrap > ul > li > ul {
    width: 100%;
    background: #f8f9fc;
    padding: 10px 15px;
}
.sub_menu_wrap > ul > li > ul > li > a {
    display: block;
    font-size: 1em;
    color: #666;
    line-height: 1.75em;
    position: relative;
    padding-left: 13px;
}
.sub_menu_wrap > ul > li > ul > li > a:before {
    content: '';
    display: block;
    width: 3px;
    height: 3px;
    background: #666;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 11px;
}
.sub_menu_wrap > ul > li.on > a {
    color: #009eec;
    font-weight: 700;
}
.sub_menu_wrap > ul > li > ul > li.on > a {
    color: #009eec;
    font-weight: 700;
}

@media screen and (min-width: 1025px) {
    .sub_menu_wrap {
        position: sticky;
        left: 0;
        top: 180px;
    }
    .sub_menu_wrap > ul {
        display: block !important;
        max-height: 45vh;
        overflow-y: auto;
    }
    .sub_menu_wrap > ul > li:first-child a {
        padding-top: 0;
    }
}

@media screen and (max-width: 1024px) {
    .sub_menu_wrap {
        width: calc(100% + 12vw);
        margin-left: -6vw;
        position: relative;
    }
    .sub_menu_wrap h2 {
        display: none;
    }
    .sub_menu_wrap .class_box {
        display: none;
    }
    .sub_menu_wrap button {
        display: block;
        width: 100%;
        height: 42px;
        border-bottom: 1px solid #ddd;
        font-size: 1.125em;
        font-weight: 500;
        text-align: left;
        padding: 0 6%;
        position: relative;
    }
    .sub_menu_wrap button:after {
        content: '\f107';
        font-size: 1em;
        font-weight: 400;
        font-family: 'Font Awesome 6 Pro';
        position: absolute;
        right: 6%;
        top: 50%;
        transform: translateY(-50%);
    }
    .sub_menu_wrap button.on:after {
        content: '\f106';
    }
    .sub_menu_wrap > ul {
        display: none;
        background: #fff;
        border-radius: 0;
        position: absolute;
        left: 0;
        top: 100%;
        padding: 0;
    }
    .sub_menu_wrap > ul > li > a {
        font-size: 1em;
        padding: 12px 6%;
    }
    .sub_menu_wrap > ul > li.depth2 > a:after {
        right: 6%;
    }
    .sub_menu_wrap > ul > li > ul {
        padding: 0;
    }
    .sub_menu_wrap > ul > li > ul > li > a {
        padding: 10px 6%;
        line-height: 1.3em;
        border-bottom: 1px solid #eee;
    }
    .sub_menu_wrap > ul > li > ul > li > a:before {
        display: none;
    }
    .sub_menu_wrap button.on + ul {
        display: block;
    }
}

@media screen and (max-width: 767px) {
    .sub_menu_wrap button {
        height: 38px;
        font-size: 1em;
    }
}

.sub_table_box1 {
    overflow-x: auto;
}
.sub_table_box1 table {
    width: 100%;
    min-width: 600px;
    border-top: 2px solid #191919;
    border-collapse: collapse;
}
.sub_table_box1.case3 table {
    min-width: 100%;
}
.sub_table_box1 thead th {
    background: #f8f9fc;
    font-size: 1.125em;
    font-weight: 600;
    padding: 20px 5px;
}
.sub_table_box1 tbody th {
    background: #f8f9fc;
    font-size: 1.125em;
    font-weight: 600;
    padding: 15px 5px;
    border-bottom: 1px solid #ddd;
}
.sub_table_box1 tbody td {
    font-size: 1.125em;
    color: #666;
    text-align: center;
    line-height: 1.5em;
    padding: 15px;
    border-bottom: 1px solid #ddd;
}
.sub_table_box1 tbody td button {
    display: block;
    width: 84px;
    max-width: 100px;
    height: 39px;
    background: #009eec;
    border-radius: 5px;
    font-size: 0.88em;
    color: #fff;
    font-weight: 600;
    margin: 0 auto;
}
.sub_table_box1 tbody td input {
    display: block;
    width: 100%;
    height: 35px;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 0 10px;
}
.sub_table_box1.case2 {
    overflow-x: auto;
}
.sub_table_box1.case2 table {
    min-width: 850px;
}
.sub_table_box1.case2 thead th {
    border-left: 1px solid #ddd;
}
.sub_table_box1.case2 thead th:first-child {
    border-left: 0;
}
.sub_table_box1.case2 tbody td {
    border-left: 1px solid #ddd;
}
.sub_table_box1.case2 tbody td:first-child {
    border-left: 0;
    border-right: 1px solid #ddd;
}

@media screen and (max-width: 1024px) {
    .sub_table_box1 thead th {
        font-size: 1em;
        padding: 10px 5px;
    }
    .sub_table_box1 tbody th {
        font-size: 1em;
        padding: 10px;
    }
    .sub_table_box1 tbody td {
        font-size: 1em;
        padding: 10px;
    }
    .sub_table_box1 tbody td button {
        width: 60px;
        height: 33px;
    }
}

.sApplication_wrap {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}
.sApplication_wrap .calendar_box {
    width: 400px;
}
.sApplication_wrap .info_box {
    width: calc(100% - 470px);
}
.sApplication_wrap .info_box h3 {
    font-size: 1.125em;
    font-weight: 500;
    color: #dc3545;
}
.sApplication_wrap .info_box .btn_box {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}
.sApplication_wrap .info_box .btn_box #btn_submit {
    display: block;
    width: 194px;
    height: 60px;
    background: #009eec;
    border-radius: 5px;
    font-size: 1.125em;
    color: #fff;
    font-weight: 700;
}
.sApplication_wrap .info_box .excel_box {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}
.sApplication_wrap .info_box .excel_box form {
    width: calc(100% - 369px);
}
.sApplication_wrap .info_box .excel_box form input[type='text'] {
    width: 100%;
}
.sApplication_wrap .info_box .excel_box #btn_upload {
    display: block;
    width: 130px;
    height: 49px;
    background: #191919;
    border-radius: 5px;
    font-size: 1.125em;
    color: #fff;
    font-weight: 600;
    margin: 0 10px 0 5px;
}
.sApplication_wrap .info_box .excel_box #btn_form_download {
    display: block;
    width: 224px;
    height: 49px;
    background: #f8f9fc;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1.125em;
    font-weight: 600;
    text-align: left;
    padding: 0 15px;
    position: relative;
}
.sApplication_wrap .info_box .excel_box #btn_form_download:after {
    content: '\e094';
    font-size: 0.77em;
    font-weight: 400;
    font-family: 'Font Awesome 6 Pro';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}
.sApplication_wrap .title {
    font-size: 1.5em;
    font-weight: 600;
    padding-bottom: 14px;
    border-bottom: 2px solid #191919;
    margin-bottom: 30px;
}

.sApplication_wrap .form_box {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}
.sApplication_wrap .form_box li {
    width: 100%;
    margin-bottom: 20px;
}
.sApplication_wrap .form_box li.w_50 {
    width: calc(50% - 7.5px);
}
.sApplication_wrap .form_box li > label {
    display: block;
    font-size: 1.125em;
    font-weight: 600;
    margin-bottom: 10px;
}
.sApplication_wrap .form_box li input[type='text'] {
    display: block;
    width: 100%;
    height: 49px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
    padding: 0 15px;
}
.sApplication_wrap .form_box li select {
    display: block;
    width: 100%;
    height: 49px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
    padding: 0 15px;
    background: url(/images/icon_select_arrow.svg) no-repeat calc(100% - 15px) center;
    background-size: 10px auto;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.sApplication_wrap .form_box li span {
    display: block;
    font-size: 0.875em;
    color: #ee5100;
    margin-top: 5px;
}
.sApplication_wrap .form_box li .price {
    font-size: 1.125em;
    font-weight: 500;
}
.sApplication_wrap .form_box li .phone_box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.sApplication_wrap .form_box li .phone_box select {
    width: 25%;
}
.sApplication_wrap .form_box li .phone_box input[type='text'] {
    width: calc(75% - 20px);
}
.sApplication_wrap .form_box li .add_box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.sApplication_wrap .form_box li .add_box select {
    width: calc(50% - 2.5px);
}
.sApplication_wrap .info_box .file_box {
    display: flex;
    justify-content: space-between;
    position: relative;
}
.sApplication_wrap .info_box .file_box input[type='text'] {
    display: block;
    width: calc(100% - 135px);
    height: 49px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
    padding: 0 15px;
}
.sApplication_wrap .info_box .file_box > button {
    display: block;
    width: 130px;
    height: 49px;
    background: #191919;
    border-radius: 5px;
    font-size: 1.125em;
    color: #fff;
    font-weight: 600;
}
.sApplication_wrap .info_box .file_box input[type='file'] {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
}
.sApplication_wrap .form_box li .stamp_box {
    display: inline-block;
    margin-top: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: #f8f9fc;
    padding: 15px;
}
.sApplication_wrap #btn_add {
    display: block;
    width: 100%;
    height: 49px;
    background: #009eec;
    border-radius: 5px;
    font-size: 1.125em;
    color: #fff;
    font-weight: 600;
}
.sApplication_wrap .agree_wrap {
    width: 100%;
    max-height: 200px;
    background: #f8f9fc;
    border-radius: 10px;
    padding: 20px;
    overflow-y: auto;
    font-size: 1em;
    color: #666;
    line-height: 1.5em;
}
.sApplication_wrap .agree_wrap h1 {
    font-size: 1.125em;
    color: #191919;
    font-weight: 500;
    margin-bottom: 10px;
}

.sApplication_wrap .person_box {
    margin-top: 40px;
}
.sApplication_wrap .person_box > p {
    font-size: 1.125em;
    font-weight: 600;
    margin-bottom: 10px;
}
.sApplication_wrap .person_box > p span {
    color: #009eec;
}
.sApplication_wrap .person_box table {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px;
    width: 100%;
}
.sApplication_wrap .person_box table .empty {
    font-size: 1em;
    color: #666;
    text-align: center;
    padding: 20px 0;
}

.sApplication_wrap .tooltip {
    display: inline-block;
    position: relative;
}
.sApplication_wrap .tooltip > button {
    font-size: 1.125em;
    color: #009eec;
    margin-left: 5px;
}
.sApplication_wrap .tooltip > div {
    display: none;
    width: auto;
    background: #009eec;
    border-radius: 5px;
    font-size: 0.875em;
    color: #fff;
    line-height: 1.42em;
    font-weight: 600;
    padding: 15px;
    position: absolute;
    left: -10px;
    bottom: 100%;
    margin-bottom: 15px;
    z-index: 30;
}
.sApplication_wrap .tooltip > div p {
    white-space: nowrap;
}
.sApplication_wrap .tooltip > button:hover + div {
    display: block;
}

@media screen and (max-width: 1024px) {
    .sApplication_wrap .calendar_box {
        width: 320px;
    }
    .sApplication_wrap .info_box {
        width: calc(100% - 350px);
    }
    .sApplication_wrap .info_box .btn_box {
        margin-top: 5%;
    }
    .sApplication_wrap .info_box .btn_box #btn_submit {
        width: 160px;
        height: 50px;
        font-size: 1em;
    }
    .sApplication_wrap .info_box .excel_box form {
        width: calc(100% - 115px);
    }
    .sApplication_wrap .info_box .excel_box #btn_upload {
        width: 110px;
        height: 40px;
        font-size: 1em;
        margin: 0 0 0 5px;
    }
    .sApplication_wrap .info_box .excel_box #btn_form_download {
        width: 100%;
        height: 40px;
        margin-top: 5px;
        font-size: 1em;
        padding: 0 10px;
    }
    .sApplication_wrap .title {
        font-size: 1.3em;
        padding-bottom: 10px;
        margin-bottom: 15px;
    }

    .sApplication_wrap .form_box li {
        margin-bottom: 15px;
    }
    .sApplication_wrap .form_box li.w_50 {
        width: calc(50% - 5px);
    }
    .sApplication_wrap .form_box li > label {
        font-size: 1em;
        margin-bottom: 5px;
    }
    .sApplication_wrap .form_box li input[type='text'] {
        height: 40px;
        padding: 0 10px;
    }
    .sApplication_wrap .form_box li select {
        height: 40px;
        padding: 0 10px;
    }
    .sApplication_wrap .info_box .file_box input[type='text'] {
        width: calc(100% - 115px);
        height: 40px;
        padding: 0 10px;
    }
    .sApplication_wrap .info_box .file_box > button {
        width: 110px;
        height: 40px;
        font-size: 1em;
    }
    .sApplication_wrap #btn_add {
        height: 40px;
        font-size: 1em;
    }

    .sApplication_wrap .tooltip > div {
        padding: 10px;
        left: -40px;
    }
}

@media screen and (max-width: 767px) {
    .sApplication_wrap > div {
        margin-bottom: 6%;
    }
    .sApplication_wrap > div:last-child {
        margin-bottom: 0;
    }
    .sApplication_wrap .calendar_box {
        width: 100%;
    }
    .sApplication_wrap .info_box {
        width: 100%;
    }
    .sApplication_wrap .info_box .btn_box #btn_submit {
        width: 130px;
        height: 40px;
    }
    .sApplication_wrap .info_box .excel_box form {
        width: calc(100% - 95px);
    }
    .sApplication_wrap .info_box .excel_box #btn_upload {
        width: 90px;
        height: 35px;
    }
    .sApplication_wrap .info_box .excel_box #btn_form_download {
        height: 35px;
    }

    .sApplication_wrap .form_box li input[type='text'] {
        height: 35px;
    }
    .sApplication_wrap .form_box li select {
        height: 35px;
    }
    .sApplication_wrap .form_box li .phone_box input[type='text'] {
        width: calc(75% - 15px);
    }
    .sApplication_wrap .info_box .file_box input[type='text'] {
        width: calc(100% - 95px);
        height: 35px;
    }
    .sApplication_wrap .info_box .file_box > button {
        width: 90px;
        height: 35px;
    }
    .sApplication_wrap .agree_wrap {
        height: 120px;
        padding: 10px;
    }
}

.sBusiness_wrap .img_box {
    text-align: center;
}
.sBusiness_wrap .img_box img {
    max-width: 100%;
}
.sBusiness_wrap .btn_box {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 50px;
}
.sBusiness_wrap .btn_box .security_btn1 {
    background: #191919;
    border-color: #191919;
    color: #fff;
    margin: 0 2.5px;
}
.sBusiness_wrap .btn_box .security_btn1.case2 {
    background: #009eec;
    border-color: #009eec;
}

/* login */
.login_wrap {
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
}
.login_wrap .tab_box {
    width: 100%;
    overflow: hidden;
    margin-bottom: 30px;
}
.login_wrap .tab_box li {
    float: left;
    width: 33.33%;
}
.login_wrap .tab_box li a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 60px;
    background: #f8f9fc;
    border: 1px solid #ddd;
    border-right: 0;
    border-bottom-color: #191919;
    font-size: 1.125em;
    color: #666;
    text-align: center;
}
.login_wrap .tab_box li:last-child a {
    border-right: 1px solid #ddd;
}
.login_wrap .tab_box li.on a {
    background: #fff;
    border-color: #191919;
    border-bottom: 0;
    color: #191919;
    font-weight: 600;
}
.login_wrap .tab_box li.on + li a {
    border-left-color: #191919;
}

.login_wrap .form_txt {
    display: block;
    width: 100%;
    height: 60px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1.125em;
    padding: 0 20px;
    margin-bottom: 6px;
}
.login_wrap .form_txt::placeholder {
    color: #666;
}
.login_wrap .form_txt::-webkit-input-placeholder {
    color: #666;
}
.login_wrap .form_txt:-ms-input-placeholder {
    color: #666;
}

.login_wrap .util_box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}
.login_wrap .util_box ul {
    display: flex;
    align-itmes: center;
}
.login_wrap .util_box ul li:before {
    content: '';
    display: inline-block;
    width: 1px;
    height: 12px;
    background: #ddd;
    margin: 0 12px;
    vertical-align: middle;
}
.login_wrap .util_box ul li:first-child:before {
    display: none;
}
.login_wrap .util_box ul li a {
    display: inline-block;
    font-size: 1em;
    color: #666;
    vertical-align: middle;
}

.login_wrap .login_btn {
    display: block;
    width: 100%;
    height: 60px;
    background: #009eec;
    border-radius: 5px;
    font-size: 1.125em;
    color: #fff;
    font-weight: 600;
    margin-top: 30px;
}

.login_wrap .result_box {
    display: flex;
    align-items: center;
    width: 100%;
    margin-top: 50px;
}
.login_wrap .result_box p {
    width: 198px;
    font-size: 1.125em;
    color: #666;
}
.login_wrap .result_box a {
    display: block;
    width: calc(100% - 198px);
}
.login_wrap .result_box a button {
    display: block;
    width: 100%;
    height: 50px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1.125em;
    color: #000;
    font-weight: 500;
    text-align: center;
}

@media screen and (max-width: 1024px) {
    .login_wrap .tab_box li a {
        height: 50px;
        font-size: 1em;
    }

    .login_wrap .form_txt {
        height: 50px;
        font-size: 1em;
        padding: 0 15px;
        margin-bottom: 5px;
    }

    .login_wrap .login_btn {
        height: 50px;
        font-size: 1em;
    }

    .login_wrap .result_box p {
        width: 160px;
        font-size: 1em;
    }
    .login_wrap .result_box a {
        width: calc(100% - 160px);
    }
    .login_wrap .result_box a button {
        height: 45px;
        font-size: 1em;
    }
}

@media screen and (max-width: 767px) {
    .login_wrap .tab_box {
        margin-bottom: 5%;
    }
    .login_wrap .tab_box li a {
        height: 40px;
    }

    .login_wrap .form_txt {
        height: 38px;
        padding: 0 10px;
    }

    .login_wrap .util_box {
        margin-top: 2%;
    }
    .login_wrap .util_box ul li:before {
        height: 10px;
        margin: 0 8px;
    }

    .login_wrap .login_btn {
        height: 45px;
        margin-top: 5%;
    }

    .login_wrap .result_box {
        margin-top: 5%;
    }
    .login_wrap .result_box p {
        width: 50%;
    }
    .login_wrap .result_box a {
        width: 50%;
    }
    .login_wrap .result_box a button {
        height: 40px;
    }
}

/* form */
.check_box input {
    display: none;
}
.check_box label {
    display: inline-block;
    position: relative;
    padding-left: 24px;
}
.check_box label:before {
    content: '';
    display: flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 0.875em;
    color: #fff;
    font-weight: 400;
    font-family: 'Font Awesome 6 Pro';
    position: absolute;
    left: 0;
    top: 0;
}
.check_box label span {
    font-size: 1em;
    color: #666;
    line-height: 24px;
    padding-left: 8px;
}
.check_box input:checked + label:before {
    content: '\f00c';
    background: #009eec;
    border-color: #009eec;
}

.radio_wrap {
    display: flex;
    align-items: start;
    flex-wrap: wrap;
}
.radio_wrap .radio_box {
    margin: 2px 10px 2px 0;
}
.radio_wrap .radio_box:last-child {
    margin-right: 0;
}
.radio_box input {
    display: none;
}
.radio_box label {
    display: inline-block;
    position: relative;
    padding-left: 24px;
}
.radio_box label:before {
    content: '';
    display: flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    border: 1px solid #ddd;
    border-radius: 50%;
    font-size: 0.875em;
    color: #fff;
    font-weight: 400;
    font-family: 'Font Awesome 6 Pro';
    position: absolute;
    left: 0;
    top: 0;
}
.radio_box label span {
    font-size: 1em;
    color: #666;
    line-height: 24px;
    padding-left: 8px;
}
.radio_box input:checked + label:before {
    content: '\f00c';
    background: #009eec;
    border-color: #009eec;
}
.radio_box input:disabled + label:before {
    background: #f8f9fc;
}
.radio_box2 input {
    display: none;
}
.radio_box2 label {
    display: inline-block;
    position: relative;
    padding-left: 26px;
}
.radio_box2 label:before {
    content: '';
    display: flex;
    justify-content: center;
    align-items: center;
    width: 26px;
    height: 26px;
    background: #fff;
    border: 2px solid #ddd;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0;
}
.radio_box2 label p {
    font-size: 1em;
    color: #666;
    line-height: 26px;
    padding-left: 10px;
}
.radio_box2 input:checked + label:after,
.radio_box2 label:hover:after {
    content: '';
    display: block;
    width: 14px;
    height: 14px;
    background: #009eec;
    border-radius: 50%;
    position: absolute;
    left: 6px;
    top: 6px;
}

.form_select {
    display: block;
    height: 49px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
    color: #666;
    padding: 0 15px;
    background: url(/images/icon_select_arrow.svg) no-repeat 90% center;
    background-size: 10px auto;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

@media screen and (max-width: 1024px) {
    .form_select {
        height: 40px;
        padding: 0 10px;
    }
}

@media screen and (max-width: 767px) {
    .check_box label {
        padding-left: 20px;
    }
    .check_box label:before {
        width: 20px;
        height: 20px;
    }
    .check_box label span {
        line-height: 20px;
    }

    .radio_box label {
        padding-left: 20px;
    }
    .radio_box label:before {
        width: 20px;
        height: 20px;
    }
    .radio_box label span {
        line-height: 20px;
    }

    .radio_box2 label {
        padding-left: 20px;
    }
    .radio_box2 label:before {
        width: 20px;
        height: 20px;
    }
    .radio_box2 label p {
        line-height: 20px;
        padding-left: 5px;
    }
    .radio_box2 input:checked + label:after,
    .radio_box2 label:hover:after {
        width: 10px;
        height: 10px;
        left: 5px;
        top: 5px;
    }

    .form_select {
        height: 35px;
        padding: 0 5px;
    }
}

.modal_popup {
    display: none;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    background: rgba(25, 25, 25, 0.4);
    position: fixed;
    left: 0;
    top: 0;
    z-index: 400;
}
.modal_popup.on {
    display: flex;
}
.modal_inner {
    max-width: 890px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 5px 5px 10px rgba(25, 25, 25, 0.1);
    padding: 30px;
    position: relative;
}
.modal_inner .close_btn {
    font-size: 1.5em;
    color: #191919;
    position: absolute;
    right: 20px;
    top: 15px;
}
.modal_inner .close_btn:before {
    content: '\f00d';
    font-size: 1em;
    font-weight: 400;
    font-family: 'Font Awesome 6 Pro';
}
.modal_inner .individual_box .t1 {
    font-size: 1.125em;
    font-weight: 500;
    line-height: 1.5em;
}
.modal_inner .individual_box .t2 {
    font-size: 1em;
    color: #666;
    line-height: 1.5em;
    margin-top: 10px;
}
.modal_inner .individual_box a {
    display: block;
    width: 100%;
    line-height: 40px;
    background: #009eec;
    border-radius: 5px;
    font-size: 1em;
    color: #fff;
    font-weight: 500;
    text-align: center;
    margin-top: 20px;
}

@media screen and (max-width: 1024px) {
    .modal_inner {
        max-width: 88%;
        padding: 15px;
    }
    .modal_inner .close_btn {
        font-size: 1.3em;
        top: 10px;
        right: 10px;
    }
}

.modal {
    display: none;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    background: rgba(25, 25, 25, 0.4);
    position: fixed;
    left: 0;
    top: 0;
    z-index: 400;
}
.modal.on {
    display: flex;
}
.modal-content {
    max-width: 890px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 5px 5px 10px rgba(25, 25, 25, 0.1);
    padding: 30px;
    position: relative;
}
.modal-content #header_title {
    font-size: 1.5em;
    font-weight: 600;
    margin-bottom: 15px;
}
.modal-content .modal-close {
    font-size: 1.5em;
    color: #191919;
    position: absolute;
    right: 20px;
    top: 15px;
}
.modal-content .modal-close:before {
    content: '\f00d';
    font-size: 1em;
    font-weight: 400;
    font-family: 'Font Awesome 6 Pro';
}
.modal-content .sample_btn,
.modal-content .btn-custom {
    display: inline-block;
    padding: 0 15px;
    line-height: 35px;
    background: #009eec;
    border-radius: 5px;
    font-size: 1em;
    color: #fff;
    font-weight: 500;
}

@media screen and (max-width: 1024px) {
    .modal-content {
        max-width: 88%;
        padding: 15px;
    }
    .modal-content #header_title {
        font-size: 1.3em;
    }
    .modal-content .modal-close {
        font-size: 1.3em;
        top: 10px;
        right: 10px;
    }
}
