/* header.css */


.site-header {
    background: #fff;
    position: relative;
    z-index: 11;
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 17px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #FFF;
}

.site-logo {
    width: 100%;
    max-width: 374px;
    margin-right: 30px;
}

@media screen and (max-width: 1024px) {
    .site-logo {
        max-width: 280px;
    }
}

.site-nav .header-menu__list--pc {
    display: flex;
    align-items: center;
    gap: 20px;
    list-style: none;
}
@media screen and (max-width: 1024px) {
    .site-nav .header-menu__list--pc {
        gap: 10px;
    }
}

.header-menu__list--pc {
    display: none;
}

.header-menu__wrap--sp {
    display: none;
}

@media screen and (max-width: 768px) {
    .site-nav .header-menu__list--pc {
        display: none;
    }

    .header-menu__wrap--sp {
        display: block;
    }
}

.site-nav .header-menu__list--pc li a {
    text-decoration: none;
    padding: 10px;
    font-weight: 500;
    font-size: 15px;
}

@media screen and (max-width: 1024px) {
    .site-nav .header-menu__list--pc li a {
        font-size: 13px;
    }
}

.site-nav .header-menu__list--pc li.reserve-button {
    background-color: var(--orange);
    border-radius: 5px;
    padding: 10px 20px;
}

@media screen and (max-width: 1024px) {
    .site-nav .header-menu__list--pc li.reserve-button {
        padding: 5px;
    }
}

.site-nav .header-menu__list--pc li.reserve-button a {
    color: #FFF;
    font-weight: 700;
}

/* ハンバーガーメニュー */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    position: absolute;
    top: 26px;
    right: 20px;
}

.hamburger.fixed {
    position: fixed;
}

.hamburger span {
    display: block;
    width: 30px;
    height: 2px;
    background: #333;
    border-radius: 2px;
    transition: 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media screen and (max-width: 768px) {
    .site-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--purple-bg);
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 999;
    }

    .site-nav.active {
        display: block;
    }

    .site-nav .header-menu__list--sp {
        display: flex;
        flex-direction: column;
        gap: 15px;
        max-width: 500px;
        margin: 50px auto;
        padding: 0 3%;
    }

    .site-nav .header-menu__list--sp li {
        border-bottom: 1px solid #C6C2D0;
        padding-bottom: 15px;
        position: relative;
    }

    .site-nav .header-menu__list--sp li::after {
        content: '';
        display: block;
        position: absolute;
        top: 50%;
        right: 20px;
        transform: translate(50%, -50%) rotate(-45deg);
        width: 10px;
        height: 10px;
        border-right: 2px solid var(--orange);
        border-bottom: 2px solid var(--orange);
    }

    .site-nav .header-menu__list--sp li a {
        font-size: 1.5em;
        padding-bottom: 15px;
        font-weight: 600;
    }

    .site-nav .header-menu__list--sp li a span {
        color: var(--purple);
        font-size: 18px;
        font-family: "Josefin Sans", sans-serif;
    }

    .site-nav .header-menu__list--sp li a p {
        font-size: 24px;
    }

    .reserve-button-sp {
        max-width: 500px;
        margin: 0 auto;
    }

    .hamburger {
        display: flex;
    }
}

@media screen and (max-width: 425px) {
    .site-nav .header-menu__list--sp {
        margin: 20px auto;
    }

    .site-nav .header-menu__list--sp li a span {
        font-size: 14px;
    }

    .site-nav .header-menu__list--sp li a p {
        font-size: 20px;
    }
}