@charset "UTF-8";

:root {
    --header-height: 11rem;
    --header-height-is-show: 8.25rem;
    --header-breadcrumb-height: 11rem;
    --header-inner-height: 6.75rem;
    --header--spacer-height: 15rem;
    --header--spacer-height_blog: 13rem;
}

@media screen and (max-width:1499px) {
    :root {
        --header-height-is-show: 7rem
    }
}

@media screen and (max-width:959px) {
    :root {
        --header-height: 6.75rem;
        --header-breadcrumb-height: 6.75rem;
        --header--spacer-height: 6.75rem
    }
}

@media screen and (max-width:480px) {
    :root {
        --header-height: 6rem;
        --header-height-is-show: 6rem;
        --header-breadcrumb-height: 6rem;
        --header-inner-height: 6rem;
        --header--spacer-height: 6rem
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#header-spacer {
    display: block;
    width: 100%;
    height: var(--header--spacer-height);
}

@media screen and (min-width:960px) {
    #header-spacer.top-header-spacer.header-spacer-1 {
        display: none
    }

    .body-renewal2025 {
        .header-outer-en {
            .container {
                padding: 0 3rem;
                max-width: 140rem !important
            }
        }
    }
}

.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .1);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 98%;
    margin: 8px auto 0;
    border-radius: 20px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.breadcrumb-nav {
    background: linear-gradient(#fff 0%, rgb(245, 245, 250) 100%);
    border-bottom: 1px solid #e5e7eb;
    padding: 12px 0;
    font-size: 14px;
    position: sticky;
    top: 70px;
    z-index: 3001;
}

.breadcrumb {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item:not(:last-child)::after {
    content: "›";
    margin: 0 8px;
    color: #6b7280;
    font-size: 16px;
}

.breadcrumb-item a {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--main-color-1);
    text-decoration: none;
    transition: color .3s;
}

.breadcrumb-item a:hover {
    color: #3cba92;
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #374151;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.breadcrumb-icon {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
}

.nav-menu>li {
    position: relative;
}

.nav-menu a:hover {
    color: var(--main-color-1);
}

.dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .15);
    border-radius: 8px;
    padding: 8px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: transform .3s ease, opacity .3s;
    z-index: 3000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #374151;
    font-weight: 400;
    border-radius: 0;
}

.dropdown-menu a:hover {
    background: #f3f4f6;
    color: var(--main-color-1);
}

@media (max-width:767px) {
    .nav-menu {
        display: none
    }

    .mobile-menu-btn {
        display: block
    }

    .breadcrumb-nav {
        padding: 8px 0;
        font-size: 13px
    }

    .breadcrumb-item.active {
        max-width: 100%;
        overflow-x: scroll
    }

    .breadcrumb-item:not(:last-child)::after {
        margin: 0 6px;
        font-size: 14px
    }

    .breadcrumb-icon {
        width: 14px;
        height: 14px
    }
}

body.body_new_blog {
    position: relative;
}

@media screen and (min-width:960px) and (max-width:1399px) {
    header#header2025.is-show {
        & .navigation {
            & .inner__navigation {
                .header-nav {
                    padding-left: clamp(30px, 3vw, 40px);
                    padding-right: clamp(30px, 3vw, 40px);
                    transition: border-radius .45s, height .45s
                }
            }
        }
    }
}

@media screen and (min-width:960px) {
    header#header2025.is-show {
        transition: all .45s;

        & .navigation {
            & .inner__navigation {
                transition: all .45s;
                max-width: 100%;
                padding: 0;
                align-items: initial;

                .header-nav {
                    height: var(--header-height-is-show);
                    border-radius: 0;
                    padding-left: clamp(30px, 3vw, 80px);
                    padding-right: clamp(30px, 3vw, 80px)
                }

                @media screen and (max-width:1399px) {
                    .header-nav {
                        padding-left: clamp(30px, 3vw, 40px);
                        padding-right: clamp(30px, 3vw, 40px)
                    }
                }
            }
        }

        .wrap__header_outer_links {
            visibility: hidden;
            opacity: 0;
            transition: opacity .2s
        }
    }
}

.top_body_new_blog .header-nav-wrap,
.index_body_new_blog .header-nav-wrap,
.index_body_new_blog .header-nav-wrap header#header2025,
.entry_body_new_blog .header-nav-wrap,
.entry_body_new_blog .header-nav-wrap header#header2025 {
    background-color: #fff;
}

header#header2025 {
    border-bottom: initial;
    height: var(--header-height);
    background-color: initial;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 3002;
    transition: background-color .3s;

    h1 {
        margin: initial;
        display: flex;
        align-items: center
    }

    .navigation .brand-logo {
        display: flex;
        padding: initial;
        align-items: center
    }

    .container {
        max-width: 1400px;
        padding: 0 20px
    }

    .drawer-navbar {
        background-color: initial
    }

    .navigation {
        top: 0;
        height: var(--header-height);
        display: flex;
        align-items: center;
        position: initial;
        position: initial;

        .inner__navigation {
            position: relative;
            height: var(--header-height);
            display: flex;
            align-items: end;
            transition: width .45s, padding .45s, max-width .45s, align-items .45s;

            .drawer-navbar-header {
                position: relative;
                display: flex;
                width: auto;
                padding: 0;
                border: 0;
                _height: var(--header-inner-height);
                height: initial;
                float: initial;
                align-items: center;
                background-color: initial
            }

            .header-nav {
                height: var(--header-inner-height);
                width: 100%;
                background: #fff;
                padding-top: 20px;
                padding-bottom: 20px;
                padding-left: clamp(30px, 3vw, 40px);
                padding-right: clamp(30px, 3vw, 40px);
                border-radius: 20px;
                filter: drop-shadow(0 0 6px rgba(0, 0, 0, .25));
                _transition: border-radius .45s
            }

            .drawer-nav {
                height: var(--header-inner-height);
                background: none;

                .nav-menu {
                    display: flex;
                    list-style: none;
                    gap: 8px;
                    align-items: center;

                    li {
                        display: flex;
                        align-items: center;
                        padding-left: 0;
                        padding-right: 0;
                        height: initial
                    }

                    a {
                        text-decoration: none;
                        color: #374151;
                        font-weight: 500;
                        font-size: clamp(13px, 1.35vw, 15px);
                        _padding: 8px 14px;
                        padding-top: 8px;
                        padding-bottom: 8px;
                        padding-left: clamp(10px, 1.15vw, 14px);
                        padding-right: clamp(10px, 1.15vw, 14px);
                        border-radius: 6px;
                        white-space: nowrap;
                        transition: color .3s;

                        &:hover {
                            color: var(--main-color-1)
                        }
                    }

                    ul.dropdown-menu a {
                        width: 100%;
                        border-radius: 0
                    }

                    .dropdown-menu a {
                        display: block;
                        padding: 12px 20px;
                        color: #374151;
                        font-weight: 400;
                        border-radius: 0
                    }

                    .dropdown-menu a:hover {
                        background: #f3f4f6;
                        color: var(--main-color-1)
                    }

                    .dropdown:hover .dropdown-menu {
                        opacity: 1;
                        visibility: visible;
                        transform: translateY(0)
                    }

                    .dropdown .dropdown-menu {
                        position: absolute;
                        top: 100%;
                        left: 0;
                        background: white;
                        min-width: 200px;
                        box-shadow: 0 8px 25px rgba(0, 0, 0, .15);
                        border-radius: 8px;
                        padding: 8px 0;
                        list-style: none;
                        opacity: 0;
                        visibility: hidden;
                        transform: translateY(-10px);
                        transition: transform .3s ease, opacity .3s;
                        z-index: 1000
                    }

                    .btn-secondary {
                        background: #fff !important;
                        color: var(--main-color-1) !important;
                        font-weight: 600 !important;
                        border: 2px solid var(--main-color-1) !important;
                        transition: background-color .3s, color .3s;

                        &:hover {
                            background: var(--main-color-1) !important;
                            color: white !important
                        }
                    }

                    .btn-primary {
                        background: var(--main-color-1) !important;
                        color: white !important;
                        font-weight: 600 !important;
                        border: 2px solid var(--main-color-1) !important;
                        transition: background-color .3s, color .3s, border-color .3s;

                        &:hover {
                            background: #3cba92 !important;
                            border-color: #3cba92 !important;
                            color: white !important
                        }
                    }
                }
            }

            .wrap__header_outer_links {
                ul.ul_lv1__header_outer_links {
                    position: absolute;
                    top: 0;
                    right: 0;
                    z-index: 103;
                    list-style: none;
                    padding: 0 20px 0 0;
                    margin: 0;
                    display: grid;
                    grid-template-columns: 1fr 1fr 1fr;
                    column-gap: 10px;
                    justify-items: center;

                    &>li {
                        width: 100%;

                        &>a {
                            text-decoration: none;
                            color: #374151;
                            font-weight: 500;
                            font-size: 14px;
                            display: flex;
                            transition: color .3s, background-color .3s, filter .3s;
                            align-items: center;
                            padding: 3px 15px;
                            background: #fff;
                            border-radius: 10px;
                            width: 100%;
                            justify-content: center;
                            margin-top: 6.5px;
                            filter: drop-shadow(0 0 6px rgba(0, 0, 0, .25));

                            &:hover {
                                color: var(--main-color-1);
                                background-color: #EFFBF7
                            }
                        }
                    }

                    &>li:first-child {
                        &>a {
                            padding: 3px 22px;
                        }
                    }

                    img {
                        max-width: 16.5px
                    }

                    .dropdown .dropdown-menu {
                        left: initial;
                        right: 0;
                        padding: 0;
                        min-width: 225px;

                        a {
                            padding: 15px;

                            &:hover {
                                color: var(--main-color-1);
                                text-decoration: none;
                                border-radius: 8px
                            }
                        }
                    }
                }
            }
        }
    }
}

@media screen and (min-width:960px) {
    .drawer--right #wrap__sp_nav-list {
        display: none !important
    }
}

header#header2025 {
    .drawer-hamburger {
        _transition: transform .3s;
        transition: initial
    }
}

@media screen and (max-width:959px) {
    header#header2025 {
        z-index: 200;

        & .navigation {
            & .inner__navigation {
                padding: 0;
                transition: none;

                .header-nav {
                    border-radius: 0;
                    filter: initial;
                    padding-left: clamp(20px, 4vw, 30px);
                    padding-right: clamp(20px, 4vw, 30px);
                    border-bottom: 1px solid #efefef
                }

                .wrap__header_outer_links {
                    display: none
                }
            }
        }
    }

    div#wrap__sp_nav-list {
        .nav-list>li a.btn {
            width: 95%;
            max-width: 325px;
            margin: .7rem auto;
            font-weight: 600;
            height: initial;
            padding: 5px 10px;
            border-radius: 999px;

            &.btn-secondary {
                background: #fff;
                color: var(--main-color-1);
                border: 2px solid var(--main-color-1)
            }
        }
    }

    .drawer-hamburger-icon,
    .drawer-hamburger-icon:before,
    .drawer-hamburger-icon:after {
        width: 100%;
        height: 3px;
        _transition: all .6s cubic-bezier(.19, 1, .22, 1);
        transition: transform .3s;
        background-color: #222
    }

    .drawer--right #wrap__sp_nav-list {
        right: -100%;
        transition: right .6s;
        height: 100vh;
        background: #fff;
        position: fixed;
        z-index: 101;
        top: 0;
        overflow: hidden;
        width: 100%;
        _height: 100%;
        color: #222;
        background-color: #fff
    }

    header#header2025 {
        .navigation .brand-logo img {
            height: clamp(2.75rem, 4.5vw, 3.35rem)
        }

        .drawer-nav {
            ul.nav-menu.list-inline.nav-list.nav-list1 {
                display: none
            }
        }
    }

    .drawer-hamburger {
        width: 3.5rem;
        padding-top: 23px;
        padding-right: 2rem;
        padding-left: 2rem
    }

    div#wrap__sp_nav-list {
        ul.list-inline.nav-list.nav-list2 {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100%;
            height: 100vh;
            display: flex;
            align-items: center;
            flex-direction: column;
            justify-content: flex-start;
            padding-top: 80px
        }

        ul.ul2__sp_nav-list {
            list-style: none;
            display: grid;
            grid-template-columns: 1fr 1fr;
            width: 92.5%;
            max-width: 450px;
            justify-items: center;
            margin: 15px auto 0;

            li {
                a {
                    font-size: clamp(12.5px, 2.5vw, 14px);
                    padding: 1.2rem 0;
                    letter-spacing: 0;
                    margin: 0;

                    i {
                        margin-right: 5px
                    }
                }
            }
        }
    }

    .drawer--right.drawer-open {
        div#wrap__sp_nav-list {
            transition: .5s;
            right: 0
        }

        .breadcrumb-nav {
            _display: none
        }

        header#header2025 {
            & .navigation {
                & .inner__navigation {
                    .header-nav {
                        border-bottom: 1px solid #fff
                    }
                }
            }
        }
    }
}

@media screen and (max-width:767px) {
    .drawer-hamburger {
        width: 3.25rem
    }
}

@media screen and (max-width:480px) {
    .drawer-hamburger {
        width: 2.85rem
    }

    .drawer-hamburger {
        padding-top: 18px
    }

    .drawer-hamburger-icon:before {
        top: -9px
    }

    .drawer-hamburger-icon:after {
        top: 9px
    }
}

header#header2025 {
    & .navigation {
        & .inner__navigation {
            & .drawer-nav {
                & .nav-menu {
                    .btn-primary.btn-primary202512 {
                        _background: #0ba360 !important;
                        background: linear-gradient(180deg, #0BA360 0%, #008E45 100%) !important;
                        color: white !important;
                        font-weight: 600 !important;
                        border: 2px solid var(--main-color-1) !important;
                        transition: background-color .3s, color .3s, border-color .3s, background .3s, border .3s !important;
                        position: relative;
                        z-index: 0
                    }

                    .btn-primary.btn-primary202512::before {
                        content: "";
                        position: absolute;
                        inset: 0;
                        z-index: -1;
                        background: linear-gradient(180deg, #087E4A 0%, #019855 100%) !important;
                        opacity: 0;
                        border-radius: 6px;
                        transition: opacity .3s;
                        transition: background-color .3s, color .3s, border-color .3s, background .3s, border .3s, opacity .3s !important
                    }

                    .btn-primary.btn-primary202512:hover::before {
                        opacity: 1
                    }
                }
            }
        }
    }
}