header {
    width: 100%;
    height: 55px;
    position: sticky;
    /* ウィンドウを基準に画面に固定 */
    top: 0;
    /* 上下の固定位置を上から0pxにする */
    left: 0;
    /* 左右の固定位置を左から0pxにする */
    z-index: 10;

    display: flex;
    /* justify-content: center; */
    align-items: center;
    background-color: #ffffff;
}

.logo-erea {
    height: 100%;
    background-color: #ffffff;
}

header a {
    height: 100%;
    display: flex;
    align-items: center;
}

header h1 {
    height: 100%;

    padding: 0px 100px 0px;
    margin: 0px;
    background-color: #ffd9f8;
    clip-path: polygon(0 0, 80% 0%, 100% 100%, 0% 100%);
}

.subtitle {
    display: flex;
    align-items: center;
    padding-left: 100px;
}

header .nikukyuu-erea img {
    height: 20px;
    display: flex;
    align-items: center;
    margin-left: 8px;
}



@media screen and (max-width: 767px) {
    header {
        height: 50px;
    }

    header h1 {
        padding: 0px 8px 0px;
        width: 120px;
    }

    header h1 img {
        width: 90%;
    }

    .subtitle {
        padding-left: 0px;
    }
}