/* ==========================================================================
Header
========================================================================== */
.header {
    z-index: 10000;
    /* box-shadow: 0 0 10px 2px rgba(0,0,0,0.15); */
}

.header.pc.page {
    /* 下層ページのスタイルを設定 */
    box-shadow: 0 0 10px 2px rgba(0,0,0,0.1);
}

.header.pc.page .header-item a {
    color: #000;
}

.header.pc.page .header-logo {
    visibility: visible!important;
}

header.header.sp.page .header-logo {
    /* sp時の下層ページのスタイルを設定 */
    visibility: visible!important;
}

.header__inner {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 20px;
    -webkit-transition: .5s;
    transition: .5s;
    max-width: 100%;
}

/* .header__inner.inner {
    max-width: initial;
    margin: initial;
} */

.header.fixed-1 .header__inner.inner {
}

.head-space,.header__inner {
    height: 120px;/* pc版ヘッダーの高さ */
}
.header.fixed-1 .header__inner {
    height: 70px;/* pc版ヘッダーの高さ */
}

@media screen and (max-width: 767px) {
    .head-space,.header__inner {
        height: 60px;/* pc版ヘッダーの高さ */
    }
    .header__inner.inner {
        background-size: 70px;
        background-position: 20px;
        padding: 0 10px !important;
    }
    .header.fixed-1 .header__inner{
        height: 57px;
    }
}


.header-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

@media screen and (max-width: 767px) {
    .header-wrap {
        height: 100%;
        position: relative;
    }
}

.header-logo {
    width: 210px;/* ヘッダーロゴの横幅 */
    height: 40px;
    margin-top: -47px;
    /* background-color: #000;
    position: absolute;
    top: 29%;
    left: 40px;
    opacity: 0; */
}

.header.fixed-1 .header-logo {
    width: 90px;
    height: 0px;
    margin-top: -25px;
}
@media screen and (max-width: 1100px) {
    .header-logo {
        position: initial;
    }
}
@media screen and (max-width: 767px) {
    .header-logo {
    width: 110px;/* sp版ヘッダーの横幅 */
    left: 20px;
    height: 60px;
    }
    .header.fixed-1 .header-logo {
        width: 70px;
        margin-top: -16px;
    }
}

.header-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    text-align: center;
}

.header-item {
    margin-right: 20px;/* ヘッダーメニューアイテムの余白 */
    margin-left: 20px;/* ヘッダーメニューアイテムの余白 */
    white-space: nowrap;
}

.header-item a {
    font-size: 16px;/* ヘッダーメニューアイテムのフォントサイズ*/
    font-weight: bold;
    letter-spacing: 0.06em;
    color: #000;
}

.header-item a:hover {
    opacity: 0.7;
}

/* ヘッダーのボタン pc版 */
.header-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50px;
    width: 200px;
    height: 60px;
    color: #000;
}

/* ヘッダーのボタン sp版 */
.header-btn-sp {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
    border-radius: 50px;
    max-width: 300px;
    width: 60%;
    height: 60px;
    color: #000;

}

.header-list {
    justify-content: flex-end;
}
.header-item-1 {
    width: 34%;
}
.header-item-2 {
    width: 40%;
}

@media screen and (max-width: 767px) {
    .header-btn-sp {
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #000;
        border-radius: 50px;
        max-width: 300px;
        width: 60%;
        height: 50px;
        margin: 0 auto;
        color: #000;
        font-size: 1.6rem;
        letter-spacing: .1em;
    
    }

    .header-item {
        margin-right: 0;
        margin-left: 5px;
    }

}    