.elementor-1488 .elementor-element.elementor-element-64607d5{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}@media(max-width:767px){.elementor-1488 .elementor-element.elementor-element-64607d5{--margin-top:-40px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-1488 .elementor-element.elementor-element-b3ec139{margin:50px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;}}/* Start custom CSS for html, class: .elementor-element-b3ec139 *//* ==========================================================
   SWEET TW HEADER V5
   日系甜美 Taiwan Header

   Header 跟隨網站頁面正常滾動
   Header 本身無邊框
   Header 本身無磨砂
   Header 本身無背景
   PC Logo 100px
   Mobile Logo 90px

   漢堡按鈕：
   日系甜美
   雙層圓環
   粉色光暈
   三條漢堡線
   微小裝飾點
   ========================================================== */


/* ==========================================================
   全局
   ========================================================== */

#sweet-tw-header-system {
    --pink: #D99AAA;
    --pink-light: #E8B7C5;
    --soft-pink: #F8E9ED;
    --cream: #FAF7F2;
    --text: #2B2B2B;
    --gray: #6D6666;
    --border: #EEE5E1;

    font-family:
        "Noto Sans TC",
        "PingFang TC",
        "Microsoft JhengHei",
        sans-serif;
}


/* ==========================================================
   BODY Menu 鎖定
   ========================================================== */

body.sweet-menu-locked {
    overflow: hidden;
}


/* ==========================================================
   HEADER

   使用 absolute：
   Header 不會固定在瀏覽器頂部
   會跟隨網站頁面正常向上滾動
   ========================================================== */

#sweet-tw-header-system .sweet-tw-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 9000;
    pointer-events: none;
}


/* ==========================================================
   Header 內容

   完全透明
   沒有外框
   沒有磨砂
   ========================================================== */

#sweet-tw-header-system .sweet-tw-header-box {
    width: min(1280px, calc(100% - 48px));
    height: 90px;
    margin: 0 auto;
    padding: 8px 0;
    box-sizing: border-box;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;

    pointer-events: auto;
}


/* ==========================================================
   LOGO
   ========================================================== */

#sweet-tw-header-system .sweet-tw-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;

    width: 100px;
    flex: 0 0 100px;

    text-decoration: none;
    line-height: 0;
}


#sweet-tw-header-system .sweet-tw-logo img {
    display: block;

    width: 100px;
    height: auto;
    max-width: 100%;

    object-fit: contain;

    transition: transform 0.35s ease;
}


#sweet-tw-header-system .sweet-tw-logo:hover img {
    transform: scale(1.025);
}


/* ==========================================================
   漢堡按鈕
   ========================================================== */

#sweet-tw-header-system .sweet-tw-open-btn {
    position: relative;

    width: 68px;
    height: 68px;

    padding: 0;
    margin: 0;

    border: none;
    border-radius: 50%;

    background: transparent;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    box-sizing: border-box;
    isolation: isolate;

    transition:
        transform 0.35s cubic-bezier(.22, 1, .36, 1);
}


/* ==========================================================
   外層柔和光暈
   ========================================================== */

#sweet-tw-header-system .sweet-tw-open-btn::before {
    content: "";

    position: absolute;
    inset: 2px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(248, 233, 237, 0.35) 35%,
            rgba(232, 183, 197, 0.16) 62%,
            transparent 74%
        );

    filter: blur(3px);

    z-index: -2;

    transform: scale(1.15);
    opacity: 0.9;
}


/* ==========================================================
   外圈
   ========================================================== */

#sweet-tw-header-system .sweet-ring-outer {
    position: absolute;
    inset: 1px;

    border: 2px solid var(--pink-light);
    border-radius: 50%;

    box-sizing: border-box;
    z-index: 1;
}


/* ==========================================================
   外圈上半部小漸變感
   ========================================================== */

#sweet-tw-header-system .sweet-tw-open-btn::after {
    content: "";

    position: absolute;
    inset: 5px;

    border:
        1px solid
        rgba(217, 154, 170, 0.65);

    border-radius: 50%;

    box-sizing: border-box;
    z-index: 1;
}


/* ==========================================================
   內圈
   ========================================================== */

#sweet-tw-header-system .sweet-ring-inner {
    position: absolute;
    inset: 8px;

    border:
        1px solid
        rgba(217, 154, 170, 0.45);

    border-radius: 50%;

    box-sizing: border-box;
    z-index: 2;
}


/* ==========================================================
   按鈕內部
   ========================================================== */

#sweet-tw-header-system .sweet-tw-open-btn .sweet-menu-lines {
    position: relative;

    width: 30px;
    height: 23px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    gap: 6px;

    z-index: 5;
}


/* ==========================================================
   漢堡三條線
   ========================================================== */

#sweet-tw-header-system .sweet-menu-lines span {
    display: block;

    width: 29px;
    height: 2px;

    border-radius: 999px;

    background:
        linear-gradient(
            90deg,
            #D99AAA,
            #E8B7C5
        );

    box-shadow:
        0 1px 4px
        rgba(217, 154, 170, 0.22);

    transform-origin: center;

    transition:
        transform 0.4s cubic-bezier(.22, 1, .36, 1),
        width 0.3s ease,
        opacity 0.25s ease;
}


/* ==========================================================
   中間線稍微短一點
   ========================================================== */

#sweet-tw-header-system .sweet-menu-lines span:nth-child(2) {
    width: 21px;
}


/* ==========================================================
   裝飾小點
   ========================================================== */

#sweet-tw-header-system .sweet-dot {
    position: absolute;

    width: 4px;
    height: 4px;

    border-radius: 50%;

    background: var(--pink);

    opacity: 0.65;

    z-index: 4;
}


/* 上方小點 */

#sweet-tw-header-system .sweet-dot-top {
    top: 16px;
    right: 17px;
}


/* 下方小點 */

#sweet-tw-header-system .sweet-dot-bottom {
    bottom: 16px;
    left: 17px;

    width: 3px;
    height: 3px;

    opacity: 0.45;
}


/* ==========================================================
   Hover
   ========================================================== */

#sweet-tw-header-system .sweet-tw-open-btn:hover {
    transform:
        scale(1.055)
        rotate(1deg);
}


/* 外圈 Hover */

#sweet-tw-header-system
.sweet-tw-open-btn:hover
.sweet-ring-outer {
    border-color: var(--pink);
}


/* 內圈 Hover */

#sweet-tw-header-system
.sweet-tw-open-btn:hover
.sweet-ring-inner {
    border-color:
        rgba(217, 154, 170, 0.7);
}


/* 線條 Hover */

#sweet-tw-header-system
.sweet-tw-open-btn:hover
.sweet-menu-lines
span:nth-child(2) {
    width: 27px;
}


/* ==========================================================
   MENU 全屏
   ========================================================== */

#sweet-tw-header-system .sweet-tw-menu-layer {
    position: fixed;
    inset: 0;

    width: 100vw;
    height: 100vh;
    height: 100dvh;

    z-index: 10000;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity 0.35s ease,
        visibility 0.35s ease;
}


#sweet-tw-header-system.is-open .sweet-tw-menu-layer {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}


/* ==========================================================
   Menu 背景
   ========================================================== */

#sweet-tw-header-system .sweet-tw-menu-bg {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    background:
        linear-gradient(
            135deg,
            #FAF7F2 0%,
            #F8E9ED 52%,
            #E8B7C5 100%
        );
}


/* ==========================================================
   Menu 卡片
   ========================================================== */

#sweet-tw-header-system .sweet-tw-menu-card {
    position: absolute;

    top: 24px;
    right: 24px;

    width:
        min(
            520px,
            calc(100vw - 48px)
        );

    height:
        calc(100dvh - 48px);

    padding: 34px 36px;

    box-sizing: border-box;

    display: flex;
    flex-direction: column;

    background:
        rgba(250, 247, 242, 0.88);

    border:
        1px solid
        var(--border);

    border-radius: 30px;

    box-shadow:
        0 20px 60px
        rgba(43, 43, 43, 0.08);

    transform:
        translateX(
            calc(100% + 40px)
        );

    transition:
        transform
        0.6s cubic-bezier(.22, 1, .36, 1);

    overflow: hidden;
}


#sweet-tw-header-system.is-open .sweet-tw-menu-card {
    transform: translateX(0);
}


/* ==========================================================
   Menu Top
   ========================================================== */

#sweet-tw-header-system .sweet-tw-menu-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-bottom: 22px;

    border-bottom:
        1px solid
        var(--border);
}


#sweet-tw-header-system .sweet-tw-title {
    color: var(--text);

    font-size: 21px;
    font-weight: 500;

    letter-spacing: 0.12em;
}


#sweet-tw-header-system .sweet-tw-title small {
    display: block;

    margin-top: 4px;

    color: var(--gray);

    font-size: 8px;

    letter-spacing: 0.2em;
}


/* ==========================================================
   Close ×
   ========================================================== */

#sweet-tw-header-system .sweet-tw-close {
    width: 46px;
    height: 46px;

    padding: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    box-sizing: border-box;

    border:
        1px solid
        var(--border);

    border-radius: 50%;

    background: var(--cream);
    color: var(--text);

    font-size: 29px;
    font-weight: 300;
    line-height: 1;

    cursor: pointer;

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}


#sweet-tw-header-system .sweet-tw-close:hover {
    background: var(--soft-pink);

    border-color: var(--pink);
    color: var(--pink);

    transform: rotate(8deg);
}


/* ==========================================================
   Navigation
   ========================================================== */

#sweet-tw-header-system .sweet-tw-nav {
    margin-top: 32px;

    display: flex;
    flex-direction: column;
}


#sweet-tw-header-system .sweet-tw-nav a {
    min-height: 70px;

    display: grid;

    grid-template-columns:
        42px 1fr 30px;

    align-items: center;

    box-sizing: border-box;

    border-bottom:
        1px solid
        var(--border);

    color: var(--text);

    text-decoration: none;

    transition:
        color 0.25s ease,
        padding 0.25s ease;
}


#sweet-tw-header-system .sweet-tw-nav a:hover {
    color: var(--pink);
    padding-left: 6px;
}


#sweet-tw-header-system .sweet-tw-nav small {
    color: var(--pink);
    font-size: 10px;
}


#sweet-tw-header-system .sweet-tw-nav span {
    font-size: 18px;
    font-weight: 400;
}


#sweet-tw-header-system .sweet-tw-nav b {
    color: var(--pink);

    font-size: 19px;
    font-weight: 400;

    text-align: right;
}


/* ==========================================================
   Footer
   ========================================================== */

#sweet-tw-header-system .sweet-tw-footer {
    margin-top: auto;

    padding-top: 24px;

    border-top:
        1px solid
        var(--border);
}


#sweet-tw-header-system .sweet-tw-footer strong {
    display: block;

    color: var(--text);

    font-size: 17px;
    font-weight: 500;

    letter-spacing: 0.08em;
}


#sweet-tw-header-system .sweet-tw-footer p {
    margin: 7px 0 0;

    color: var(--gray);

    font-size: 12px;
}


/* ==========================================================
   TABLET
   ========================================================== */

@media (min-width: 768px) and (max-width: 1024px) {

    #sweet-tw-header-system .sweet-tw-header-box {
        width: calc(100% - 36px);
    }


    #sweet-tw-header-system .sweet-tw-menu-card {
        top: 18px;
        right: 18px;

        width:
            min(
                500px,
                calc(100vw - 36px)
            );

        height:
            calc(100dvh - 36px);
    }

}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 767px) {

    #sweet-tw-header-system .sweet-tw-header-box {
        width: calc(100% - 28px);

        height: 78px;

        padding: 6px 0;
    }


    /* Logo 90px */

    #sweet-tw-header-system .sweet-tw-logo {
        width: 90px;
        flex: 0 0 90px;
    }


    #sweet-tw-header-system .sweet-tw-logo img {
        width: 90px;
    }


    /* 漢堡按鈕縮小 */

    #sweet-tw-header-system .sweet-tw-open-btn {
        width: 60px;
        height: 60px;
    }


    #sweet-tw-header-system .sweet-menu-lines {
        width: 27px;
        height: 21px;
        gap: 5px;
    }


    #sweet-tw-header-system .sweet-menu-lines span {
        width: 27px;
    }


    #sweet-tw-header-system
    .sweet-menu-lines
    span:nth-child(2) {
        width: 20px;
    }


    #sweet-tw-header-system .sweet-dot-top {
        top: 14px;
        right: 15px;
    }


    #sweet-tw-header-system .sweet-dot-bottom {
        bottom: 14px;
        left: 15px;
    }


    /* Menu */

    #sweet-tw-header-system .sweet-tw-menu-card {
        top: 12px;
        right: 12px;

        width:
            calc(100vw - 24px);

        height:
            calc(100dvh - 24px);

        padding: 24px 20px;

        border-radius: 26px;
    }


    #sweet-tw-header-system .sweet-tw-menu-top {
        padding-bottom: 18px;
    }


    #sweet-tw-header-system .sweet-tw-title {
        font-size: 19px;
    }


    #sweet-tw-header-system .sweet-tw-close {
        width: 42px;
        height: 42px;

        font-size: 27px;
    }


    #sweet-tw-header-system .sweet-tw-nav {
        margin-top: 22px;
    }


    #sweet-tw-header-system .sweet-tw-nav a {
        min-height: 62px;

        grid-template-columns:
            36px 1fr 28px;
    }


    #sweet-tw-header-system .sweet-tw-nav span {
        font-size: 17px;
    }


    #sweet-tw-header-system .sweet-tw-footer {
        padding-top: 18px;
    }

}


/* ==========================================================
   超小手機
   ========================================================== */

@media (max-width: 380px) {

    #sweet-tw-header-system .sweet-tw-header-box {
        width: calc(100% - 22px);
    }


    #sweet-tw-header-system .sweet-tw-logo {
        width: 90px;
        flex-basis: 90px;
    }


    #sweet-tw-header-system .sweet-tw-logo img {
        width: 90px;
    }


    #sweet-tw-header-system .sweet-tw-open-btn {
        width: 58px;
        height: 58px;
    }

}/* End custom CSS */