@media (max-width: 1280px) {
    html {
        font-size: 14px;
    }
}
@media (max-width: 768px) {
    html {
        font-size: 12px;
    }
}

body {
    overflow: auto;
}
body.scroll-lock {
    overflow: hidden;
}

body > header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}
body > header.active {
    border-bottom: 1px solid #a7a7a7;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}
body > header > nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 80px;
    max-width: 1440px;
    padding: 0 2rem;
    box-sizing: border-box;
    margin: 0 auto;
}
@media (max-width: 768px) {
    body > header > nav {
        height: 60px;
        padding: 0 1rem;
    }
}
body > header > nav h1 {
    font-size: 2rem;
    color: #111;
    cursor: pointer;
    padding: 0;
}
body > header > nav h1 img {
    height: 40px;
}
@media (max-width: 768px) {
    body > header > nav h1 img {
        height: 30px;
    }
}
body > header > nav .menu {
    display: flex;
    gap: 2.5rem;
    height: 100%;
    visibility: hidden;
}
@media (max-width: 1280px) {
    body > header > nav .menu {
        gap: 2rem;
    }
}
body > header > nav .menu li {
    font-size: 1.15rem;
    color: #222;
    cursor: pointer;
    display: flex;
    align-items: center;
    border-bottom: 3px solid transparent;
    width: auto !important;
}
body > header > nav .menu li:nth-of-type(3) {
    width: 50px;
}
body > header > nav .menu li.active {
    font-weight: bold;
    border-bottom: 3px solid #1a1a1a;
}
body > header > nav .menu li a {
    padding: 16px;
    text-decoration: none;
    padding: 0 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    position: relative;
    width: 90px;
    text-align: center;
}
body > header > nav .menu li a::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #1a1a1a;
    opacity: 0;
    transition: 0.2s;
}
body > header > nav .menu li a:hover {
    text-decoration: none;
    font-weight: 800;
}
body > header > nav .menu li a:hover::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    opacity: 1;
    background-color: #1a1a1a;
}
@media (max-width: 768px) {
    body > header > nav .menu {
        display: none;
    }
}
body > header .accessibility-skip-menu {
    width: 100%;
    height: auto;
    background-color: #ccc;
    border: 1px solid black;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #333;
    color: #fff;
    border: none;
}
body > header .accessibility-skip-menu a {
    display: block;
    text-align: center;
    height: 0;
    overflow: hidden;
    box-sizing: border-box;
}
body > header .accessibility-skip-menu a:focus {
    overflow: visible;
    height: auto;
    display: block;
    font-size: 1rem;
    padding: 8px 0;
}
body > header .accessibility-skip-menu button {
    display: block;
    margin: 0 auto;
    color: #fff;
    height: 0;
    overflow: hidden;
    box-sizing: border-box;
    cursor: pointer;
}
body > header .accessibility-skip-menu button:focus {
    overflow: visible;
    height: auto;
    display: block;
    font-size: 1rem;
    padding: 8px 0;
}
body > header .header_burger {
    visibility: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    right: 16px;
    width: 24px;
    height: 24px;
}
@media (max-width: 768px) {
    body > header .header_burger {
        visibility: visible;
    }
}
body > header .header_burger.btn_m_gnbclose {
    background-image: url("../images/icon_close.png");
}
body > header .header_burger.btn_m_gnbclose > a {
    font-size: 0;
    width: 24px;
    height: 24px;
    display: block;
}
body > header .header_burger.btn_m_gnbopen {
    background-image: url("../images/btn_menu.png");
    width: 30px;
    height: 30px;
    top: 50%;
    transform: translateY(-50%);
}
body > header .header_burger.btn_m_gnbopen > a {
    font-size: 0;
    width: 30px;
    height: 30px;
    display: block;
}
body > header .m_gnb-menu-wrap {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    z-index: 1000;
    padding: 0;
    display: none;
    flex-direction: column;
    transition: 0.3s;
    z-index: 99999;
}
@media (max-width: 768px) {
    body > header .m_gnb-menu-wrap {
        display: none;
    }
}
body > header .m_gnb-menu-wrap .header_list_top {
    width: 100%;
    height: 60px;
    padding: 0 24px 0 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    background-color: #f5f5f5;
}
body > header .m_gnb-menu-wrap .header_list_top img {
    height: 30px;
}
body > header .m_gnb-menu-wrap .header_list {
    flex: 1;
    width: 100%;
    box-sizing: border-box;
    font-size: 1.3rem;
    padding: 16px;
    gap: 32px;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    overflow: auto;
}
body > header .m_gnb-menu-wrap .header_list a {
    display: block;
    padding: 8px 0;
}

@supports (-webkit-touch-callout: none) {
    body > header .m_gnb-menu-wrap .header_list a {
        padding: 16px 0;
    }
}

@media (max-width: 768px) {
    .m_gnb-menu-wrap .header_list li ul li a {
        padding: 16px 0;
        border-top: 1px solid #ccc;
        border-bottom: 1px solid #ccc;
    }
    .m_gnb-menu-wrap .header_list li ul li a:last-child {
        margin-top: -1px;
    }
}

body > header .m_gnb-menu-wrap .header_list_bottom {
    width: 100%;
    height: 60px;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
}
body > header .m_gnb-menu-wrap .header_list_bottom li {
    background-color: #f5f5f5;
    flex: 1;
}
body > header .m_gnb-menu-wrap .header_list_bottom li a {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}
body > header .m_gnb-menu-wrap.active {
    display: flex;
    right: 0;
}

main {
    padding: 0 0 32px 0;
}
main > header,
main > section,
main > footer {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 64px 0;
}
main > header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 64px;
    margin-top: 80px;
}
@media (max-width: 768px) {
    main > header {
        flex-direction: column;
        gap: 32px;
    }
}
main > header .main-contents-title {
    font-size: 2.625rem;
    line-height: 100%;
    padding-left: 2rem;
}
@supports (-webkit-touch-callout: none) {
    main > header .main-contents-title {
        margin-bottom: 32px;
    }
}
@media (max-width: 768px) {
    main > header .main-contents-title {
        font-size: 2.5rem;
        padding-left: 0;
        text-align: center;
        width: 100%;
        line-height: 1.2;
    }
}
main > header > div {
    box-sizing: border-box;
    padding: 0 2rem;
}
@media (max-width: 768px) {
    main > header > div {
        width: 100%;
        flex-direction: column;
    }
}
main > section {
    padding: 16px;
    box-sizing: border-box;
}
@media (max-width: 768px) {
    main > section.main_demo_container {
        padding: 32px 0px !important;
    }
    .main_demo {
        padding: 0 32px;
    }
}

body > footer {
    background-color: #232323;
    padding: 0 0 1rem;
}
body > footer .footer-bottom {
    display: flex;
    margin-top: 0.5rem;
}
@media (max-width: 768px) {
    body > footer .footer-bottom {
        flex-direction: column;
    }
}
body > footer .slogan {
    border-bottom: 1px solid #4f4f4f;
    padding: 2rem 16px;
    display: flex;
    justify-content: space-between;
    gap: 8px;
}
body > footer .slogan h2 {
    font-weight: 500;
    font-size: 2.25rem;
    color: #b0b0b0;
    line-height: 100%;
    display: flex;
    align-items: center;
}
@media (max-width: 768px) {
    body > footer .slogan h2 {
        font-size: 2rem;
    }
}
@supports (-webkit-touch-callout: none) {
    body > footer .slogan h2 {
        margin-bottom: 8px;
    }
}
body > footer .slogan img {
    height: 60px;
    margin: 0 12px;
    color: #4f4f4f;
}
@media (max-width: 768px) {
    body > footer .slogan img {
        height: 40px;
    }
}
@media (max-width: 768px) {
    body > footer .slogan {
        flex-direction: column;
    }
}
body > footer .footer-contents {
    flex: 6.5;
    color: #fff;
    padding: 0.5rem 1rem 1rem;
}
body > footer .footer-contents .term-link {
    border-bottom: 1px solid #4f4f4f;
    display: flex;
    justify-content: start;
    gap: 30px;
    font-size: 0.9rem;
    padding-bottom: 1rem;
}
body > footer .footer-contents .term-link li:nth-of-type(3) a {
    color: #58b8f3;
    font-size: 1.1rem;
    font-weight: 900;
}
@media (max-width: 768px) {
    body > footer .footer-contents .term-link {
        flex-wrap: wrap;
        justify-content: flex-start;
        font-size: 1rem;
        gap: 8px;
    }
}
@media (max-width: 768px) {
    body > footer .footer-contents .term-link li {
        width: 30%;
        text-align: center;
    }
    @supports (-webkit-touch-callout: none) {
        body > footer .footer-contents .term-link li {
            margin: 4px 0;
        }
    }
}
body > footer .footer-contents .term-link li a {
    text-decoration: none;
    border: none;
}
body > footer .footer-contents .term-link li a:focus {
    outline: 2px dashed #fff;
}
body > footer .footer-contents .contact-us h2 {
    padding: 2rem 0;
    font-size: 2.2rem;
    line-height: 100%;
    color: #b0b0b0;
}
@media (max-width: 768px) {
    body > footer .footer-contents .contact-us h2 {
        font-size: 2rem;
    }
}
body > footer .footer-contents .contact-us h3 {
    font-size: 2rem;
    line-height: 100%;
    margin: 0.5rem 0;
    font-weight: normal;
    word-break: break-all;
}
@media (max-width: 768px) {
    body > footer .footer-contents .contact-us h3 {
        font-size: 1.5rem;
    }
}
body > footer .footer-contents .contact-us p {
    font-size: 1.5rem;
    line-height: 100%;
}
body > footer .footer-contents .contact-us p:last-child {
    font-size: 1.125rem;
    font-weight: 300;
}
@media (max-width: 768px) {
    body > footer .footer-contents .contact-us p {
        font-size: 1rem;
    }
}
body > footer .footer-company-info-wrapper {
    border-left: 1px solid #4f4f4f;
    padding: 1rem;
    flex: 3.5;
    color: #b0b0b0;
}
body > footer .footer-company-info-wrapper .company-info-item {
    margin: 6px 0;
    display: flex;
    gap: 8px;
    font-size: 0.89rem;
}
@media (max-width: 768px) {
    body > footer .footer-company-info-wrapper .company-info-item {
        font-size: 1rem;
    }
}
body > footer .footer-company-info-wrapper .company-info-item:first-child {
    flex-direction: column;
}
body > footer .footer-company-info-wrapper .company-info-item .company-info-label {
    color: #dfdfdf;
}
body > footer .footer-company-info-wrapper .copyright {
    margin: 2rem 0;
}
body > footer .footer-company-info-wrapper .family-site-menu-wrap {
    position: relative;
}
body > footer .footer-company-info-wrapper .family-site-menu-wrap .btn_family-site-menu {
    position: relative;
    font-size: 1.1rem;
    background-color: #4f4f4f;
    width: 100%;
    text-align: left;
    padding: 0.9rem 0 0.9rem 0.5rem;
    border-radius: 4px;
    color: #fff;
    border: none;
    cursor: pointer;
}
body > footer .footer-company-info-wrapper .family-site-menu-wrap .btn_family-site-menu:focus {
    outline: 2px dashed #fff;
}
body > footer .footer-company-info-wrapper .family-site-menu-wrap .btn_family-site-menu img {
    width: 12px;
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%) rotate(90deg);
}
body > footer .footer-company-info-wrapper .family-site-menu-wrap .btn_family-site-menu img.active {
    transform: translateY(-50%) rotate(-90deg);
}
body > footer .footer-company-info-wrapper .family-site-menu-wrap .family-site-menu {
    position: absolute;
    border: 1px solid #4f4f4f;
    background-color: #4f4f4f;
    color: #fff;
    font-size: 1rem;
    bottom: 105%;
    left: 0;
    width: 100%;
    border-radius: 4px;
}
body > footer .footer-company-info-wrapper .family-site-menu-wrap .family-site-menu li a {
    display: block;
    padding: 16px;
    text-decoration: none;
}
body > footer .footer-company-info-wrapper .family-site-menu-wrap .family-site-menu li a:hover,
body > footer .footer-company-info-wrapper .family-site-menu-wrap .family-site-menu li a:focus {
    background-color: #fdfdfd;
    color: #111;
}
body > footer .footer-company-info-wrapper select {
    padding: 0.5rem 0 0.5rem 0.2rem;
    font-size: 1rem;
    width: 100%;
    background-color: #4f4f4f;
    border-radius: 4px;
    border: none;
    color: #dfdfdf;
    cursor: pointer;
}
@media (max-width: 768px) {
    body > footer .footer-company-info-wrapper select {
        padding: 1rem 0 1rem 0.2rem;
        font-size: 1.4rem;
    }
}
body > footer .ui-selectmenu-button.ui-button {
    padding: 0.5rem 0 0.5rem 0.2rem;
    width: 100%;
    background-color: #4f4f4f;
    font-size: 1rem;
    border-radius: 4px;
    color: #dfdfdf;
    box-sizing: border-box;
    cursor: pointer;
}

.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}

.btn_common {
    min-width: 200px;
    min-height: 60px;
    padding: 16px 32px;
    background-color: #fff;
    border: 1px solid #1a1a1a;
    border-radius: 30px;
    font-size: 1.325rem;
    line-height: 1.2;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    align-items: center;
    -webkit-align-items: center;
    cursor: pointer;
}
@media (max-width: 768px) {
    .btn_common {
        font-size: 1.4rem;
    }
}
.btn_common.w250 {
    width: 250px;
}
.btn_common.w300 {
    width: 300px;
}
@media (max-width: 340px) {
    .btn_common.w300 {
        width: 90%;
        padding: 16px;
        max-width: 0 auto;
    }
}
.btn_common span {
    line-height: 100%;
}
.btn_common .fas {
    width: 24px;
    height: 24px;
    background-color: #1a1a1a;
    color: #fff;
    font-size: 16px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
}
.btn_common:hover {
    background-color: #1a1a1a;
    color: #fff;
}
.btn_common:hover .fas {
    background-color: #fff;
    color: #1a1a1a;
    font-size: 16px !important;
}
.btn_common.btn_apple {
    background-color: #1a1a1a;
    color: #fff;
    width: 220px;
    height: 60px;
    font-size: 1.2rem;
}
.btn_common.btn_apple img {
    width: 24px;
    margin-right: 4px;
}
@media (max-width: 768px) {
    .btn_common.btn_apple {
        min-height: 0;
        min-width: 0;
        font-size: 1.3rem;
    }
}
.btn_common.btn_google {
    background-color: #1a1a1a;
    color: #fff;
    width: 220px;
    height: 60px;
    font-size: 1.2rem;
    gap: 4px;
}
.btn_common.btn_google img {
    width: 24px;
}
@media (max-width: 768px) {
    .btn_common.btn_google {
        min-height: 0;
        min-width: 0;
        font-size: 1.3rem;
    }
}
.btn_common.btn_shortcut {
    background-size: 60px;
    background-position: right 30px top 50%;
    background-repeat: no-repeat;
    border-radius: 0;
    height: 120px;
    padding: 32px 32px;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    flex: 1;
    font-weight: bold;
    font-size: 1.4rem;
    border: none;
    color: #1a1a1a;
    font-weight: 600;
    position: relative;
    transform: scale(0.99);
    transition: 0.3s;
}
@media (max-width: 768px) {
    .btn_common.btn_shortcut {
        align-items: center;
        flex-direction: row;
        padding: 32px;
        background-size: 30px;
        background-position: right 10px 50%;
        background-repeat: no-repeat;
    }
    @supports (-webkit-touch-callout: none) {
        .btn_common.btn_shortcut {
            min-height: 0;
            padding: 32px;
            height: auto;
        }
    }
}
.btn_common.btn_shortcut:nth-of-type(1) {
    background-image: url("../images/btn_quick01.png");
    position: relative;
}
.btn_common.btn_shortcut:nth-of-type(2) {
    background-image: url("../images/btn_quick02.png");
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    border-top: 0 solid #ccc;
    border-bottom: 0 solid #ccc;
}
@media (max-width: 768px) {
    .btn_common.btn_shortcut:nth-of-type(2) {
        border-left: 0 solid #ccc;
        border-right: 0 solid #ccc;
        border-top: 1px solid #ccc;
        border-bottom: 1px solid #ccc;
    }
}
.btn_common.btn_shortcut:nth-of-type(3) {
    background-image: url("../images/btn_quick03.png");
}
.btn_common.btn_shortcut img {
    width: 36px;
}
@media (max-width: 768px) {
    .btn_common.btn_shortcut img {
        display: none;
    }
}
.btn_common.btn_shortcut:hover {
    background-color: #fff;
    color: #1a1a1a;
    font-weight: 800;
    background-size: 70px;
}
@media (max-width: 768px) {
    .btn_common.btn_shortcut:hover {
        background-color: #fff;
        color: #1a1a1a;
        font-weight: 800;
        background-size: 40px;
    }
}

.banban-layout {
    padding: 16px;
    display: flex;
    flex-direction: row;
    margin: 50px 0 30px;
}
@media (max-width: 768px) {
    .banban-layout {
        flex-direction: column;
    }
}
.banban-layout:nth-of-type(2n) {
    flex-direction: row-reverse;
}
.banban-layout:nth-of-type(2n) .ban-left {
    align-items: flex-end;
    text-align: right;
}
@media (max-width: 768px) {
    .banban-layout:nth-of-type(2n) {
        flex-direction: column;
    }
    .banban-layout:nth-of-type(2n) .ban-left {
        align-items: flex-end;
        text-align: left;
    }
}
.banban-layout > div {
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.banban-layout .ban-right img {
    width: 60%;
    max-width: 400px;
    margin: 3rem auto;
}

.popup-overlay,
.progress-overlay {
    display: none;
    position: fixed;
    background-color: rgba(0, 0, 0, 0.25);
    top: 0;
    left: 0;
    width: 100%;
    max-width: none;
    height: 100%;
    z-index: 100;
}
.popup-overlay.active,
.progress-overlay.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn_totop {
    border: 1px solid black;
    padding: 16px;
    display: inline-block;
}
.btn_totop a {
    line-height: 1;
    text-decoration: none !important;
}

@media (max-width: 768px) {
    .btn_totop {
        border: 1px solid black;
        padding: 8px;
        display: inline-block;
    }
    .btn_totop a {
        line-height: 1;
        text-decoration: none !important;
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip-path: inset(50%);
    border: 0;
    clip: rect(0 0 0 0);
}

.stop-scrolling {
    overflow: hidden;
    touch-action: none;
}
.popup-overlay,
.progress-overlay {
    display: none;
    position: fixed;
    background-color: rgba(0, 0, 0, 0.25);
    top: 0;
    left: 0;
    width: 100%;
    max-width: none;
    height: 100%;
    z-index: 100;
}
.popup-overlay.active,
.progress-overlay.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.progress-overlay {
    flex-direction: column;
    gap: 8px;
    color: #fff;
    font-size: 16px;
    background-color: rgba(0, 0, 0, 0.4);
}

.progress-box {
    border: 2px solid #fff;
    width: 100%;
    max-width: 300px;
    height: 36px;
    border-radius: 18px;
    display: flex;
    align-items: center;
}

.popup-wrap {
    display: none;
    width: 98%;
    max-width: 500px;
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
}
.popup-wrap#popup-process-guide,
.popup-wrap#popup-certbizOpen-number-guide {
    max-width: 1200x;
    height: auto;
    max-height: 90vh;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.popup-wrap#popup-process-guide .popup-title,
.popup-wrap#popup-certbizOpen-number-guide .popup-title {
    font-size: 28px;
    font-weight: bold;
}
.popup-wrap#popup-term {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.popup-wrap.active {
    display: block;
}
.popup-wrap .popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 20px;
    font-size: 1rem;
}
.popup-wrap .popup-header .popup-title {
    line-height: 100%;
    font-size: 1.3rem;
    font-weight: bold;
}
.popup-wrap .popup-header .popup-close-btn {
    width: 20px;
    height: 20px;
    cursor: pointer;
}
.popup-wrap .popup-header .popup-close-btn img {
    width: 100%;
}
.popup-wrap .popup-main {
    min-height: 100px;
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    overflow-y: auto;
}
.popup-wrap .popup-main .popup-inner {
    height: 100%;
}
.popup-wrap .popup-main .popup-inner.term {
    height: 200px;
    width: 100%;
    -webkit-overflow-scrolling: touch;
}
.popup-wrap .popup-main .popup-inner.term iframe {
    -webkit-overflow-scrolling: touch;
}
.popup-wrap .popup-main .popup-inner.alert {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
}
.popup-wrap .popup-main .popup-inner.alert .popup-main-text {
    line-height: 100%;
    font-size: 1.3rem;
}
.popup-wrap .popup-main .popup-inner.alert .popup-sub-text {
    font-size: 1rem;
    font-weight: normal;
}
.popup-wrap .popup-main .popup-inner.process {
    max-height: 520px;
    height: calc(100vh - 80px - 200px);
    width: 100%;
    overflow-y: auto;
    overflow-x: auto;
    display: flex;
    justify-content: space-around;
    gap: 32px;
}
@media (max-width: 1280px) {
    .popup-wrap .popup-main .popup-inner.process {
        height: calc(100vh - 80px - 200px);
        justify-content: flex-start;
        gap: 16px;
    }
}
@media (max-width: 768px) {
    .popup-wrap .popup-main .popup-inner.process {
        max-height: 400px;
        gap: 0;
    }
}
.popup-wrap .popup-main .popup-inner.process .guide-item {
    flex: 1;
    padding: 32px;
    box-sizing: border-box;
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
}
.popup-wrap .popup-main .popup-inner.process .guide-item::before {
    content: "APP";
    position: absolute;
    z-index: 10;
    left: 14%;
    background-color: #2d89ff;
    color: #fff;
    padding: 8px 16px;
    border-radius: 4px;
}
@media (max-width: 768px) {
    .popup-wrap .popup-main .popup-inner.process .guide-item {
        padding: 16px;
    }
}
.popup-wrap .popup-main .popup-inner.process .guide-item img {
    height: 400px;
}
@media (max-width: 768px) {
    .popup-wrap .popup-main .popup-inner.process .guide-item img {
        max-height: 300px;
    }
}
.popup-wrap .popup-main .popup-inner.process .guide-item .guide-text {
    padding: 16px 0;
    font-size: 1.1rem;
    color: #1a1a1a;
    word-break: keep-all;
}
.popup-wrap .popup-main .popup-inner.table {
    height: 400px;
    overflow: auto;
    padding: 0 1rem;
}
.popup-wrap .popup-main .popup-inner.table table {
    border-spacing: 0;
    border-collapse: collapse;
    width: 100%;
    border-top: 3px solid #555;
    border-bottom: 1px solid #555;
    vertical-align: middle;
    margin: 5px 0 10px;
}
.popup-wrap .popup-main .popup-inner.table table thead th {
    padding: 10px;
    border: 1px solid #555;
    background-color: #f5f5f5;
    vertical-align: middle;
    font-weight: bold;
    text-align: center;
}
.popup-wrap .popup-main .popup-inner.table table thead th:first-child {
    border-left: none;
}
.popup-wrap .popup-main .popup-inner.table table thead th:last-child {
    border-right: none;
}
.popup-wrap .popup-main .popup-inner.table table thead th.thl {
    text-align: left;
}
.popup-wrap .popup-main .popup-inner.table table tbody tr {
    vertical-align: middle;
}
.popup-wrap .popup-main .popup-inner.table table tbody tr.tbl {
    text-align: left;
}
.popup-wrap .popup-main .popup-inner.table table tbody tr td {
    text-align: center;
    padding: 10px;
    vertical-align: middle;
    border-top: 1px dotted #c7c7c7;
    border-right: 1px solid #555;
    border-bottom: 1px dotted #c7c7c7;
    border-left: 1px solid #555;
}
.popup-wrap .popup-main .popup-inner.table table tbody tr td:first-child {
    border-left: none;
}
.popup-wrap .popup-main .popup-inner.table table tbody tr td:last-child {
    border-right: none;
}
.popup-wrap .popup-main .popup-inner.table table tbody tr td.tbl {
    text-align: left;
}
.popup-wrap .popup-main .popup-inner.table table th {
    padding: 10px;
    border-bottom: 1px solid #555;
    background-color: #f5f5f5;
    vertical-align: middle;
    font-weight: bold;
    text-align: center;
}
.popup-wrap .popup-main .popup-inner.table table td {
    text-align: center;
    padding: 10px;
    vertical-align: middle;
    border-top: 1px dotted #c7c7c7;
    border-right: 1px solid #555;
    border-bottom: 1px dotted #c7c7c7;
    border-left: 1px solid #555;
}
.popup-wrap .popup-footer {
    display: flex;
    justify-content: space-around;
    padding: 0 16px 16px;
    gap: 8px;
}
.popup-wrap .popup-footer button {
    width: 200px;
    height: 50px;
    border-radius: 2rem;
    margin: 8px auto;
    font-size: 1.2rem;
    cursor: pointer;
    color: #fff;
    font-weight: bold;
    background-color: #1a1a1a;
}
@media (max-width: 768px) {
    .popup-wrap .popup-footer button {
        font-size: 1.2rem;
    }
}
.popup-wrap .popup-footer button.btn-cancel {
    background-color: #b0b0b0;
}
.popup-wrap .popup-footer button.btn-check {
    background-color: #1a1a1a;
}
.popup-certi-box {
    border-bottom: 1px solid #dfdfdf;
    border-top: 1px solid #dfdfdf;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    padding: 16px;
    box-sizing: border-box;
}
.popup-certi-box img {
    grid-row: 1/3;
    grid-column: 1/2;
    margin: 0 auto;
    display: flex;
    width: 60px;
}
.popup-certi-box p {
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.multiple-item-slide {
    box-sizing: border-box;
    width: 100%;
    margin: 1rem auto;
    height: 100%;
    padding: 2rem;
    border-radius: 2rem;
    box-sizing: border-box;
    background-color: #f5f5f5;
}
.multiple-item-slide.active {
    display: inline-block;
}
.multiple-item-slide button {
    position: absolute;
    z-index: 9;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}
.multiple-item-slide button.slick-prev {
    left: 1rem;
}
.multiple-item-slide button.slick-next {
    right: 1rem;
}
.multiple-item-slide button .fas::before {
    font-size: 64px;
    color: #ccc;
}
@media (max-width: 768px) {
    .multiple-item-slide button .fas::before {
        font-size: 48px;
    }
}
.multiple-item-slide .slick-track {
    height: inherit;
    justify-content: center;
    align-items: center;
}
.multiple-item-slide .slick-track .slick-slide {
    height: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
}
.multiple-item-slide .slick-track .slick-slide > div {
    height: inherit;
}
.multiple-item-slide .slide-item img {
    margin: 0 auto;
    display: block;
}
@media (max-width: 1280px) {
    .multiple-item-slide .slide-item img {
        height: 400px;
    }
}
.multiple-item-slide .slide-item .slide-text {
    padding: 16px 0;
    text-align: center;
    color: #4f4f4f;
}
.multiple-item-slide .slide-item .slide-text a {
    display: block;
    color: #006aad;
}
.multiple-item-slide .slick-dots {
    display: flex;
    gap: 16px;
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
}
@media (max-width: 768px) {
    .multiple-item-slide .slick-dots {
        gap: 8px;
    }
}
.multiple-item-slide .slick-dots li {
    background-color: #ccc;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    transition: 0.3s;
    cursor: pointer;
}
@supports (-webkit-touch-callout: none) {
    .multiple-item-slide .slick-dots li {
        margin: 0 4px;
    }
}
@media (max-width: 768px) {
    .multiple-item-slide .slick-dots li {
        width: 8px;
        height: 8px;
    }
}
.multiple-item-slide .slick-dots li.slick-active {
    background-color: #1a1a1a;
}
.multiple-item-slide .slick-dots li button {
    font-size: 0;
}
.multiple-item-slide .howto-slide-item {
    height: inherit;
    min-width: 300px;
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}
@media (max-width: 768px) {
    .multiple-item-slide .howto-slide-item {
        flex: 1;
        display: flex !important;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
    }
}
@media (max-width: 768px) {
    .multiple-item-slide .howto-slide-item .howto-slide-img {
        width: 100%;
        max-width: 70%;
        margin: auto;
    }
}
.multiple-item-slide .howto-slide-item .howto-slide-text {
    width: 75%;
    word-break: keep-all;
    text-align: center;
    padding: 8px 0 16px;
    color: #7d7d7d;
    font-size: 1.5rem;
    line-height: 1.4;
} /*# sourceMappingURL=common.css.map */

.top_header_body_wrap {
    width: 100%;
    height: 35px;
    background: #2c4590;
    display: flex;
    justify-content: space-between;
}
.top_header_body {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 80px;
    max-width: 1440px;
    padding: 0 2rem;
    box-sizing: border-box;
    margin: 0 auto;
    height: 35px;
    color: #fff;
    line-height: 35px;
}
.top_header_body_wrap ul {
    width: 360px;
    display: flex;
    gap: 20px;
}
.top_header_body_wrap ul li {
    font-size: 14px;
}
.nav-up {
    top: -35px;
    transition: top 0.2s ease-in-out;
}

@media (max-width: 768px) {
    .top_header_body_wrap {
        display: none;
    }
    .nav-up {
        top: 0;
    }
}

@media (max-width: 1200px) {
    .top_header_body {
        width: 94%;
        padding: 0 3%;
    }
}
.header_link-self {
    padding: 4px 0;
    border-bottom: 1px solid #fff;
    font-weight: bold;
}

/*250529*/
.features-box-container{position: relative; width:100%; max-width: 100%; padding:150px 0 150px; background: linear-gradient(to bottom, #E3EBFF, #E3EBFF, #fff);}
.features-box-container_bg{position: absolute; left:0; top:-80px; width:100%; height: 80px; background: url(../images/main_visual_bg_ef.png) repeat-x; z-index: 100;}
.features-inner{max-width: 1440px; margin: 0 auto;}
.features-box{text-align: center; }
.features-box .features-text-list h3{font-size: 2.5rem; font-weight: normal;line-height: 1.2;}
.features-box .features-text-list p{margin-top: 20px; font-size: 1.25rem;  line-height: 1.4;width: 100%;}
.features-icon-wrap{display: flex; justify-content: space-between;  gap:30px; margin-top:60px; }
.features-icon-box{flex: 1 1 calc(25% - 20px); display: flex; flex-direction: column; justify-content: center; height: 300px; background-color: #fff; border-radius: 20px; text-align: center; padding: 20px; box-sizing: border-box; font-size: 1.1rem; line-height: 1.5rem;}
.features-icon-box .icon{width:120px; margin: 0 auto;}
.features-icon-box .icon img{width:100%;}
.features-icon-box .tit{font-size: 1.5rem; font-weight: bold; margin:15px 0 10px;}
@media (max-width:1200px) {
.features-box-container{position: relative; width:100%; max-width: 100%; padding:70px 0 70px; background: linear-gradient(to bottom, #E3EBFF, #E3EBFF, #fff);}
.features-inner{max-width: 100%; margin: 0 auto; padding: 0 30px;}
.features-icon-wrap{display: flex; flex-wrap: wrap; justify-content: space-between;  gap:30px; margin-top:60px; }
.features-icon-box{flex: 1 1 calc(50% - 20px); }
}
@media (max-width:768px) {
.features-inner{max-width: 100%; margin: 0 auto; padding: 0 30px;}
.features-icon-wrap{display: flex; flex-wrap: wrap; justify-content: space-between;  gap:10px; margin-top:30px; }
.features-icon-box{flex: 1 1 calc(100% - 20px); height:auto; font-size: 1.25rem; line-height: 1.8rem;}
.features-icon-box .icon{width:80px; margin: 0 auto;}
}

.str_txt{padding:100px 0 50px; text-align: center; font-size: 3.5rem; }
.str_txt_bold{display: inline-block; margin: 0 3px; padding:5px 5px; font-weight: bold; }
@media (max-width:1200px) {
.str_txt{padding:70px 0 50px; text-align: center; font-size: 3rem; }
}
@media (max-width:768px) {
.str_txt{padding:0; text-align: center; font-size: 2.2rem; }
}
