.header {
    background: #fff;
    padding: 20px 32px;
    position: sticky;
    top: 0;
    z-index: 998;
}

.header__inner {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin: auto;
    max-width: 1552px;
}

.header__block {
    display: flex;
    width: 80%;
}

.header__logo {
    min-width: 240px;
    width: 25%;
}

.header__navi {
    align-items: flex-end;
    flex-wrap: wrap;
    display: flex;
    padding: 0 0 0 48px;
    width: 75%;
}

.header__buttonBlock {
    width: 18%;
}

.header__button {
    align-items: center;
    display: block;
    height: 100%;
    justify-content: flex-end;
}

.header__button > * :not(:first-child) {
    margin-left: 10px;
}

.header__hamburger {
    display: none;
    min-width: calc(100% / 4);
    padding: 0 0 0 8px;
}

.headerNavi__list {
    display: flex;
}

.headerNavi__item:not(:first-child) {
    padding-left: 32px;
}

.headerNavi__link {
    color: #444;
    display: block;
    font-size: 18px;
    font-weight: bold;
    position: relative;
}

.headerNavi__link.isCurrent {
    pointer-events: none;
}



.headerSignupButton__image {
    width: 48px;
}

.headerSignupButton__text {
    color: #fff;
    font-size: 12px;
    padding: 2px 0 0;
}

.hamburger {
    height: 100%;
}

.hamburgerButton {
    background: #b286ff;
    border: 1px solid #b286ff;
    border-radius: 5px;
    cursor: pointer;
    display: none;
    height:70%;
    min-height: 20px;
    min-width: 20px;
    padding: 0 8px 18px;
    position: relative;
    transition: all 0.25s ease-out;
    z-index: 999;
}

.hamburgerButton.isActive {
    background: transparent;
    border-color: #fff;
}

.hamburgerButton__inner {
    height: 100%;
    position: relative;
    width: 100%;
}

.hamburgerButton__item {
    background: #fff;
    border-radius: 999em;
    display: block;
    height: 2px;
    left: 0px;
    margin: auto;
    position: absolute;
    right: 0;
    transition: .35s ease-in-out;
    width: 24px;
}

.hamburgerButton__item:nth-child(1) {
    top: 0;
}

.hamburgerButton__item:nth-child(2) {
    top: 8px;
}

.hamburgerButton__item:nth-child(3) {
    top: 16px;
}

.hamburgerButton__item.isActive:nth-child(1) {
    top: 8px;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
}

.hamburgerButton__item.isActive:nth-child(2) {
    opacity: 0;
    transition: none;
}

.hamburgerButton__item.isActive:nth-child(3) {
    top: 8px;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
}

.hamburgerButton__item.isActive:nth-child(4) {
    opacity: 0;
    transition: none;
}

.hamburgerMenu {
    background-color:rgba(255,152,178,0.90);
    display: none;
    height: 0;
    left: 0;
    overflow: hidden;
    position: fixed;
    top: 0;
    transition: .5s cubic-bezier(.6, 0, .4, 0);
    width: 100%;
    z-index: 998;
}

.hamburgerMenu.isActive {
    height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.hamburgerMenu__inner {
    opacity: 0;
    padding: 64px 16px 0;
    transition: .5s cubic-bezier(.6, 0, .4, 0);
}

.hamburgerMenu__inner.isActive {
    opacity: 1;
}

.hamburgerNavi {
    padding: 32px 0 0;
}

.hamburgerNavi__list:not(:first-child) {
    padding: 32px 0 0;
}

.hamburgerNavi__link {
    color: #fff;
    display: block;
    padding: 7px 0;
	line-height: 1.5em;
	font-size: 20px;
	text-align: center;
}

.hamburgerFooter {
    padding: 64px 0 0;
    text-align: center;
}

.hamburgerFooter__logo {
    width: 70%;
}

.hamburgerFooter__contact {
    padding: 32px 0 0;
}

.hamburgerFooter__tel {
    color: #fff;
    font-size: 30px;
    font-weight: bold;
}

.hamburgerFooter__link {
    color: #fff;
}

.hamburgerFooter__time {
    color: #fff;
    padding: 8px 0 0;
}

.hamburgerFooter__snsList {
    padding: 48px 0 0;
}

.hamburgerFooterSnsList {
    align-items: center;
    display: inline-flex;
}

.hamburgerFooterSnsList__item {
    width: 15.46vw;
}

.hamburgerFooterSnsList__item:not(:first-child) {
    margin-left: 16px;
}

.hamburgerFooterSnsList__link {
    display: block;
}

@media screen and (max-width: 1024px) {
    .header {
        padding: 12px 16px 0;
    }
    .header__inner {
        align-items: center;
        max-width: 100%;
    }
    .header__block {
        width: 40%;
    }
    .header__logo {
        min-width: auto;
        width: 100%;
    }
    .header__navi {
        display: none;
    }
    .header__buttonBlock {
        position: fixed; /* bodyに対しての絶対位置指定 */
	top: 8px;
		right: 8px;
    display: block;
        justify-content: flex-end;
        width: 50px;
		margin-right: 2%;
    }
    .header__button {
        align-items: stretch;
        width: calc(100% / 3 * 2);
    }
    .header__button > * :not(:first-child) {
        margin-left: 8px;
    }
    .header__hamburger {
        display: block;

    }
    .headerNavi__link:hover {
        color: #7d101e;
    }
    .headerSignupButton {
        display: none;
    }
    .hamburgerButton {
        align-items: center;
        display: flex;

    }
    .hamburgerMenu {
        display: block;
    }
}
