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

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;

    z-index: 1000;

    background: linear-gradient(
        to bottom,
    rgba(255,255,255,0.98) 0%,
    rgba(255,255,255,0.96) 30%,
    rgba(255,255,255,0.90) 60%,
    rgba(255,255,255,0.75) 85%,
    rgba(255,255,255,0) 100%
    );

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
/* -----------------------------------------
   Header Inner
----------------------------------------- */

.header__inner {
    width: 100%;
    height: 70px;
    margin: 0;
    padding: 0 40px;
    box-sizing: border-box;

    display: flex;
    justify-content: space-between;
    align-items: center;
}


/* -----------------------------------------
   Logo
----------------------------------------- */

.header__logo {
    display: block;
}

.header__logo-image {
    display: block;
    width: 56px ;
    height: auto ;
}


/* -----------------------------------------
   Contact
----------------------------------------- */

.header__contact {
    display: flex;
    flex-direction: column;
    align-items: center;

    text-decoration: none;
    color: #555;
}

.header__contact-icon {
    width: 34px;
    height: 34px;
}

.header__contact-text {
    font-size: 12px;
}
/* =========================================
   Responsive tab
========================================= */

@media screen and (max-width: 1024px) and (min-width: 769px) {

    /* -----------------------------------------
       Header
    ----------------------------------------- */

    .header {
        height: 64px;
    }

    /* -----------------------------------------
       Header Inner
    ----------------------------------------- */

    .header__inner {
        height: 64px;
        padding: 0 24px;
    }

    /* -----------------------------------------
       Logo
    ----------------------------------------- */

    .header__logo-image {
        width: 48px;
    }

    /* -----------------------------------------
       Contact
    ----------------------------------------- */

    .header__contact-icon {
        width: 28px;
        height: 28px;
    }

    .header__contact-text {
        font-size: 11px;
    }

}
/* =========================================
   Responsive SP
========================================= */

@media screen and (max-width: 768px) {

    .header__inner {
        height: 60px;
        padding: 0 16px;
    }

    .header__logo-image {
        width: 38px;
    }

    .header__contact-icon {
        width: 24px;
        height: 24px;
    }

    .header__contact-text {
        font-size: 10px;
    }

}

