@charset "utf-8";

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    width: 100%;
    height: 12rem;
    transition: all .3s;
}

.header.is-animation {
    background: rgba(255, 255, 255, 0.8);
}

.header a {
    pointer-events: auto;
}

.hAr {
    width: 100%;
    max-width: 185rem;
    height: 100%;
    padding: 0 1.5rem;
    margin: 0 auto;
}

.hBx {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    height: 100%;
    gap: 5rem;
}

.hLogo {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    width: 13rem;
}

.hNavBx {
    display: flex;
    justify-content: space-between;
    flex: 1;
    max-width: 90.7rem;
}

.hSns {
    width: 3.5rem;
    transition: all .3s;
}

.hSns:hover {
    transform: scale(1.1);
}

.hNav {
    font-family: var(--fontB);
    font-size: 2rem;
    line-height: 1.45;
    letter-spacing: 0.05em;
    font-weight: 400;
    pointer-events: auto;
}

.hNav:hover {
    text-decoration: underline;
}

.spSns {
    margin: 3rem 0 0;
    width: 3rem;
}

.spSns a {
    transition: all .3s;
}

.spSns a:hover {
    transform: scale(1.1);
}

.fixedBtnBx {
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: 50;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.fixedBtnBx .btn02 a {
    width: 20rem;
    height: 6rem;
    border: 1px solid #CCCAC6;
}

.fixedBtnBx .btn02 a:hover {
    border: 1px solid var(--primary);
}


/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (width <=1024px) {
    .hBx {
        padding: 0 0 0 12rem;
        gap: 1.5rem;
    }

    .hLogo {
        width: 9rem;
    }


}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */


/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (width <=768px) {

    .header {
        pointer-events: none;
    }

    .header.is-animation {
        background: none;
    }

    .hAr {
        padding: 0 2.5rem;
    }

    .hNavBx,
    .hSns {
        display: none;
    }

    .fixedBtnBx {
        display: none;
    }

}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */