/* ==========================================================================
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 {
    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%;
}
.num.txt-14 {
    text-align: center;
    /* margin-left: 20px; */
}

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


@media screen and (max-width: 767px) {
    .head-space,.header__inner {
        height: 60px;/* pc版ヘッダーの高さ */
    }
}


.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: 250px;/* ヘッダーロゴの横幅 */
}

@media screen and (max-width: 767px) {
    .header-logo {
    width: 150px;/* sp版ヘッダーの横幅 */
    }
}

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

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

.header-item a {
    font-size: 18px;/* ヘッダーメニューアイテムのフォントサイズ*/
    font-weight: bold;
    font-family: "Noto Sans JP", sans-serif;
    color: #354254;
}

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

/* ヘッダーのボタン pc版 */
.header-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0792b7;
    border-radius: 50px;
    width: 240px;
    height: 50px;
}

.header-btn img{
    width: 30px;
}
.header-btn p{
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    font-family: "Noto Sans JP", sans-serif;
    letter-spacing: 0.22em;
}
/* ヘッダーのボタン 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: #fff;

}

@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: #fff;
        font-size: 1.6rem;
        letter-spacing: .1em;
    
    }
}    