@charset "UTF-8";

:root {
    --header-height: 8.6rem;
    --header-top-bar-height: 2.5rem;
    --header-height-is-compact: 5.75rem;
    --header-breadcrumb-height: 9.25rem;
    --header-inner-height: 8.6rem;
    --header--spacer-height: 10rem;
    --header--spacer-height_blog: 13rem;
}

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

@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-compact: 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 (max-width:959px) {
    #header-spacer {
        height: 0;
    }
}


@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) {
    header#header2025.is-compact {
        height: var(--header-height-is-compact);
        background-color: rgba(255, 255, 255, 0.98);
        /* border-bottom: 1px solid #e5e7eb; */
        box-shadow: 0px 0px 10px rgba(0, 0, 0, .1);
        transition: height .45s ease-in-out, background-color .35s ease-in-out, border-color .35s ease-in-out, box-shadow .35s ease-in-out;

        & .navigation {
            height: var(--header-height-is-compact);
            transition: height .45s ease-in-out;

            & .inner__navigation {
                height: var(--header-height-is-compact);
                transition: all .8s ease;

                .wrap__header_outer_links {
                    height: 0;
                    overflow: hidden;
                    opacity: 0;
                }

                .header-nav {
                    height: var(--header-height-is-compact);
                }

                .drawer-nav {
                    /* height: var(--header-height-is-compact); */
                    height: var(--header-inner-height);
                    justify-content: center;
                    gap: 0;
                }

                .brand-logo img {
                    width: clamp(130px, 12vw, 160px);
                    height: auto;
                    transition: all .8s ease-in;
                }
            }
        }
    }

    .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: none;
        height: var(--header-height);
        background-color: transparent;
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 3002;
        transition: height .45s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;

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

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

        .container {
            max-width: 100%;
            padding: 0;
        }

        .drawer-navbar {
            background-color: initial
        }

        .navigation {
            top: 0;
            height: var(--header-height);
            display: flex;
            align-items: center;
            position: initial;
            position: initial;
            transition: height .45s ease-in-out;

            .inner__navigation {
                position: relative;
                height: var(--header-height);
                display: flex;
                flex-direction: column;
                align-items: stretch;
                transition: height .45s ease-in-out;

                .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;
                    transition: width .45s ease-in-out;
                }

                .header-nav {
                    height: var(--header-inner-height);
                    width: 100%;
                    background: transparent;
                    display: flex;
                    align-items: center;
                    padding-top: 0;
                    padding-bottom: 0;
                    padding-left: clamp(30px, 3vw, 60px);
                    padding-right: clamp(30px, 3vw, 60px);
                    transition: height .45s ease-in-out;
                }

                .drawer-nav {
                    height: 100%;
                    display: flex;
                    flex-direction: column;
                    flex: 1;
                    gap: 6px;
                    justify-content: center;
                    background: transparent;
                    border: none;
                    background: none;
                    transition: height .45s ease-in-out;

                    .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, padding .45s ease-in-out;

                            &: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;
                            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 {
                    height: var(--header-top-bar-height);
                    display: flex;
                    align-items: center;
                    justify-content: flex-end;
                    overflow: visible;
                    position: relative;
                    z-index: 10;
                    transition: height .45s ease-in-out;

                    ul.ul_lv1__header_outer_links {
                        list-style: none;
                        margin: 0;
                        display: flex;
                        gap: 20px;
                        align-items: center;

                        &>li {
                            width: auto;
                        }

                        &>a,
                        &>li>a {
                            text-decoration: none;
                            color: #374151;
                            font-weight: 500;
                            font-size: 13px;
                            display: flex;
                            align-items: center;
                            transition: color .3s;
                            padding: 4px 8px;
                            border-radius: 6px;
                            transition: all 0, 2s ease;

                            &:hover {
                                background: rgba(0, 0, 0, .09);
                            }
                        }

                        img {
                            max-width: 16.5px
                        }

                        .dropdown .dropdown-menu {
                            left: initial;
                            right: 0;
                            top: 80%;
                            padding: 0;

                            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-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
                        }
                    }
                }
            }
        }
    }
}

/* =============================================
   SP / Mobile overrides (top-level)
   ============================================= */
@media screen and (max-width:959px) {
    header#header2025 {
        z-index: 200;
    }

    header#header2025 .inner__navigation .wrap__header_outer_links {
        display: none;
    }

    header#header2025 .drawer-nav {
        display: none;
    }

    header#header2025 .inner__navigation .header-nav {
        padding-left: clamp(20px, 4vw, 30px);
        padding-right: clamp(20px, 4vw, 30px);
    }

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

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

    /* SP nav item layout */
    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;
    }

    div#wrap__sp_nav-list ul.ul2__sp_nav-list {
        list-style: none;
        width: 92.5%;
        justify-items: center;
        margin: 15px auto 0;
    }

    div#wrap__sp_nav-list ul.ul2__sp_nav-list li a {
        font-size: clamp(12.5px, 2.5vw, 14px);
        padding: 1.2rem 0;
        letter-spacing: 0;
        margin: 0;
    }

    div#wrap__sp_nav-list ul.ul2__sp_nav-list li a i {
        margin-right: 5px;
    }

    /* SP nav buttons */
    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;
        display: block;
    }

    div#wrap__sp_nav-list .nav-list>li a.btn-secondary {
        background: #fff;
        color: var(--main-color-1);
        border: 2px solid var(--main-color-1);
    }

    /* Hamburger icon */
    .drawer-hamburger-icon,
    .drawer-hamburger-icon:before,
    .drawer-hamburger-icon:after {
        width: 100%;
        height: 3px;
        transition: transform .3s;
        background-color: #222;
    }

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

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