#site-header {
    width: 100%;
    background-color: white;
    position: fixed;
    top: 0;
    z-index: 9999;
    .header-inner {
        margin: 0 auto;
        padding: 16px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .header-logo {
        font-size: 0;
        line-height: 1;
        z-index: 2;
        width: 130px;
        height: 30px;
    }
    .header-logo img {
        display: block;
        width: 100%;
        height: 100%;
    }
}

@media screen and (min-width: 960px) {
    
    #site-header {
        /* height: 80px; */
        background-color: white;
        position: fixed;
        top: 0;
        z-index: 9999;
        .header-inner {
            padding: 0;
            padding-left: 32px;
        }
        .header-logo {
            width: 208px;
            height: 47px;
            /* margin: 0 30px; */
        }
        .header-nav-contact {
            display: flex;
            max-width: 580px;
            align-self: stretch;
            margin-right: 0;
            margin-left: auto;
        }
        .header-nav-contact .header-nav-sns {
            line-height: 80px;
            margin-right: 20px;
        }
        .header-nav-contact .header-nav-sns a {
            padding: 10px;
            font-size: 2.1rem;
            cursor: pointer;
        }
        .header-nav-contact .contact-nav-btn {
            width: 150px;
            padding: 18px;
            text-align: center;
        }
        .header-nav-contact .contact-nav-icon {
            display: inline-block;
            width: 100%;
            margin-bottom: 10px;
        }
        .header-nav-btn {
            width: 42px;
            height: 20px;
            position: relative;
            top: auto;
            right: auto;
            margin: 0 30px;
            width: 60px;
        }
        .header-nav-btn span {
            height: 2px;
        }
    }
}

/* ----- 下層ページヘッダー ----- */
#page-header {
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 2;
    width: 100%;
    max-height: 320px;
    margin-top: 62px;
    margin-bottom: 40px;
    background-size: cover;
    background-position: center;
    position: relative;
    .page-title {
        display: block;
        color: white;
        text-align: center;
        font-size: 2.8rem;
        line-height: 1.2;
        font-family: var(--mi);
        font-weight: 400;
        letter-spacing: 0.05em;
        position: relative;
        z-index: 2;
    }
    .page-title span {
        display: block;
        font-size: 1.4rem;
        font-family: var(--go);
    }
    &::before {
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top:0;
        bottom: 0;
        right: 0;
        content: '';
        background-color: #000;
        opacity: 0.3;
        z-index: 1;
    }
}


@media screen and (min-width: 960px) {
    #page-header {
        margin-top: 80px;
        margin-bottom: 100px;
        width: 100%;
        aspect-ratio: 14 / 4;
        height: auto;
        max-height: 400px;
        /* max-height: none; */
        .page-title {
            font-size: 4.4rem;
            line-height: 1.6;
        }
        .page-title span {
            font-size: 1.6rem;
        }
    }

}
