@charset "utf=8";

.header {
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    width: 100%;
    height: 16.4rem;
    background: var(--secondary);
    transition: all .3s;
}

.header.is-animation {
    height: 12rem;
}

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

.hBx {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
}

.hBxL {
    flex: 1;
    margin: 0 1.5rem 0 0;
}

.hLogo {
    display: block;
    width: 100%;
    max-width: 33.6rem;
}

.hLogo a {
    display: block;
    width: 100%;
}

.hBxR {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 80%;
    max-width: 155rem;
}

.hNavBx {
    display: flex;
    justify-content: flex-end;
    gap: .5rem 2.5rem;
    flex: 1;
    flex-wrap: wrap;
    max-width: 68rem;
    margin: 0 1.5rem 0 0;
}

.hNavLink {
    line-height: 1.5em;
}

.hNavLink a {
    font-size: 1.7rem;
    line-height: 1.5em;
    letter-spacing: .05em;
    font-weight: 700;
    font-family: var(--fontB);
}

.hNavLink a:hover {
    text-decoration: underline;
}

.hTelBx {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 7.75rem;
    padding: 0 1.8rem 0 2.8rem;
    border-left: 1px solid #FA863E;
}

.hTelFl {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.hTelFl figure {
    display: flex;
    align-items: center;
    width: 2.07rem;
}

.hTelFl figure img {
    width: 100%;
}

.hTelNum {
    font-size: 3rem;
    line-height: 1.4em;
    font-family: var(--fontB);
    color: var(--primary);
}

.hTelTxt01 {
    font-size: 1.8rem;
    line-height: 1.5em;
    color: var(--primary);
}

.hTelTxt01 br {
    display: none;
}

.hBtnBx {
    position: relative;
    display: flex;
    height: 10rem;
    width: 30%;
    max-width: 39rem;
}

.hBtnBx::before {
    content: "";
    position: absolute;
    height: 77.5%;
    width: 1px;
    background: var(--white);
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    z-index: 1;
}

.hBtn {
    width: 50%;
    height: 100%;
    margin: 3px 0 0;
    background: var(--primary-light);
    transition: all .3s;
}

.header.is-animation .hBtn {
    margin: 0;
}

.hBtn:hover {
    filter: brightness(1.15);
}

.hBtnIn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: var(--white);
}

.hBtnTxt01 {
    font-size: 1.6rem;
    letter-spacing: .1em;
    line-height: 1.5em;
    font-family: var(--fontB);
}

.hBtnTxt02 {
    font-size: 2.2rem;
    line-height: 1.5em;
    font-weight: 700;
    font-family: var(--fontB);
}

.hHamBtn {
    position: relative;
    z-index: 999;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 5.2rem;
    cursor: pointer;
}

.hHamBarBx {
    position: relative;
    width: 3.05rem;
    height: 13px;
}

.hHamBarBx::before,
.hHamBarBx::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    display: block;
    height: 2px;
    width: 100%;
    margin: auto;
    background: var(--primary);
    transition: all .3s;
}

.hHamBarBx::before {
    top: 0;
}

.hHamBarBx::after {
    bottom: 0;
}

.hHamBtn.js-open .hHamBarBx::before,
.hHamBtn.js-open .hHamBarBx::after {
    top: 0;
    bottom: 0;
    transform-origin: center;
}

.hHamBtn.js-open .hHamBarBx::before {
    transform: rotate(40deg);
}

.hHamBtn.js-open .hHamBarBx::after {
    transform: rotate(-40deg);
}

.hHamBtnTxt {
    margin: .5rem 0 0;
    color: var(--primary);
    letter-spacing: .1em;
    line-height: 1.4em;
    text-align: center;
}


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

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

    .hNavBx {
        gap: .5rem 2rem;
    }

    .hNavLink a {
        font-size: 1.5rem;
    }

    .hTelBx {
        padding: 0 1rem;
        width: 100%;
        max-width: max-content;
    }

    .hTelFl {
        gap: .5rem;
    }

    .hTelNum {
        font-size: 2.2rem;
    }

    .hTelTxt01 {
        font-size: 1.6rem;
        text-align: center;
    }

    .hTelTxt01 br {
        display: block;
    }


    .hBtnTxt02 {
        font-size: 1.8rem;
    }

}

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


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

@media screen and (width <=1024px) {
    .header {
        width: 100%;
        height: 10rem;
    }

    .header.is-animation {
        height: 8rem;
    }

    .hAr {
        padding: 0 3.4rem;
        margin: 0 auto;
    }

    .hBx {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .hBxL {
        width: 100%;
        display: flex;
        margin: 0 auto;
        justify-content: space-between;
        align-items: center;
    }

    .hLogo {
        width: 20.2rem;
    }

    .header.is-animation .hLogo a {
        display: flex;
        align-items: center;
    }

    .hHamBtn {
        display: flex;
    }

    .hBxR {
        display: none;
        width: 100%;
        justify-content: center;
        margin: 2.15rem 0 0;
    }

    .hTelBx {
        width: 100%;
        max-width: 30rem;
        background: var(--primary-light);
    }

    .hTelBx figure {
        filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
    }

    .hTelNum {
        font-size: 2.2rem;
        color: var(--white);
    }

    .hTelTxt01 {
        font-size: 1.3rem;
        color: var(--white);
    }

    .hTelTxt01 br {
        display: none;
    }

    .hBtnBx {
        display: none;
    }


    .hNavBx,
    .hContactBx {
        display: none !important;
    }
}

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