#wpadminbar {
    display: none;
}

/* ==========================================
   TOP Header
========================================== */

.top-header {
    width: 100%;
    background: var(--color-white);
    position: relative;
    z-index: 100;
    border-bottom: 1px solid var(--color-border);
}

.top-header__inner {
    width: min(1200px, calc(100% - 40px));
    height: 90px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* ==========================================
   Logo
========================================== */

.top-header__logo {
    flex-shrink: 0;
}

.top-header__logo a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-family: var(--font-mincho);
    font-weight: 700;
    line-height: 1.15;
    white-space: nowrap;
}

.logo-small {
    display: block;
    margin-bottom: 4px;
    color: var(--color-primary);
    font-size: .8rem;
    letter-spacing: .1em;
}

.logo-main {
    display: block;
    color: var(--color-text);
    font-size: 1.45rem;
    letter-spacing: .03em;
}


/* ==========================================
   Navigation
========================================== */

.top-header__nav ul {
    display: flex;
    align-items: center;
    gap: 28px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.top-header__nav li {
    margin: 0;
}

.top-header__nav a {
    position: relative;
    color: var(--color-text);
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

.top-header__nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 2px;
    background: var(--color-primary);
    transform: scaleX(0);
    transform-origin: center;
    transition: var(--transition);
}

.top-header__nav a:hover {
    color: var(--color-primary);
}

.top-header__nav a:hover::after {
    transform: scaleX(1);
}


/* ==========================================
   Header CTA
========================================== */

.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 0 18px;
    background: var(--color-primary);
    color: var(--color-white) !important;
    border-radius: 999px;
    font-weight: 700 !important;
    box-shadow: 0 8px 20px rgba(231, 52, 123, .18);
    transition: var(--transition);
}

.top-header__nav a.header-cta::after {
    content: "";
    position: static;
    display: block;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    margin-left: .8em;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 5l7 7-7 7' fill='none' stroke='%23ffffff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
    transform: none;
}

.header-cta:hover {
    color: var(--color-white) !important;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(231, 52, 123, .28);
}

.top-header__nav a.header-cta:hover::after {
    transform: translateX(4px);
}


/* ==========================================
   Hamburger
========================================== */

.top-header__toggle {
    display: none;
    width: 45px;
    height: 45px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    position: relative;
    z-index: 110;
}

.top-header__toggle span {
    display: block;
    width: 28px;
    height: 2px;
    margin: 6px auto;
    background: var(--color-primary);
    transition: var(--transition);
}


/* ==========================================
   Tablet
========================================== */

@media(max-width:1150px) {

    .top-header__inner {
        width: calc(100% - 30px);
    }

    .logo-small {
        font-size: .75rem;
    }

    .logo-main {
        font-size: 1.25rem;
    }

    .top-header__nav ul {
        gap: 16px;
    }

    .top-header__nav a {
        font-size: 13px;
    }

    .header-cta {
        height: 44px;
        padding: 0 14px;
    }

}


/* ==========================================
   Tablet / Mobile Menu
========================================== */

@media(max-width:1000px) {

    .top-header__toggle {
        display: block;
    }

    .top-header__nav {
        position: fixed;
        top: 75px;
        left: 0;
        width: 100%;
        height: calc(100vh - 75px);
        background: var(--color-white);
        padding: 40px 30px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: var(--transition);
    }

    .top-header__nav ul {
        display: flex;
        flex-direction: column;
        gap: 25px;
        align-items: center;
    }

    .top-header__nav a {
        font-size: 16px;
    }

    .top-header__nav.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

}


/* ==========================================
   Mobile
========================================== */

@media(max-width:768px) {

    body {
        padding-top: 70px;
    }

    .top-header {
        position: fixed;
        top: 0;
        left: 0;
    }

    .top-header__inner {
        height: 70px;
    }

    .logo-small {
        margin-bottom: 2px;
        font-size: .7rem;
    }

    .logo-main {
        font-size: 1rem;
        letter-spacing: 0;
    }

    .top-header__nav {
        top: 70px;
        height: calc(100vh - 70px);
    }

}


/* ==========================================
   Hamburger Animation
========================================== */

.top-header__toggle.is-open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.top-header__toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.top-header__toggle.is-open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}