/*common.css 共通部分のCSS設定*/

/* ===============================================
# Header
=============================================== */
.l-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 78px; 
    z-index: 1000;
    background-color: transparent;
}

.l-header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 17px 31px;
    height: 100%;
}

.l-header__logo {
    width: 132px;
    height: 44px;
    z-index: 1000;
    transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
    .l-header__logo:hover {
        opacity: 0.6;
    }
}

.l-header__logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Hamburger Menu Button */
.c-hbg-menu-btn {
    width: 25px;
    height: 10px;
    border: none;
    margin: 0;
    padding: 0;
    background: transparent;
    z-index: 1000;
}

.c-hbg-menu-btn img{
    width: 100%;
    height: auto;
    object-fit: cover;
}

.c-hbg-menu-btn .icon-close {
    display: none;
}

.c-hbg-menu-btn .icon-open {
    display: block;
}

.c-hbg-menu-btn.active .icon-open {
    display: none;
}

.c-hbg-menu-btn.active .icon-close {
    display: block;
}
.p-header-nav {
    position: fixed;
    top: -120%;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    overflow-y: auto;
    height: calc(100vh - 61px);
    z-index: 9998;
    background-image: url(../../static/img/sp_bg_2.jpg);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.p-header-nav.active {
    opacity: 1;
    visibility: visible;
    display: block;
    z-index: 999;
    background-image: url(../../static/img/sp_bg_2.jpg);
    height: auto;
    min-height: 100svh;
    margin: 0 auto;
    padding: 138px 0 0;
    top: 0;
    right: 0;
    transition: all 0.5s ease;
    overflow: scroll;
    width: 100%;
    min-width: 100%;
}


.p-header-nav__list {
    display: flex;
    flex-direction: column;
    gap: 31px;
    list-style: none;
    margin: 0 0 38px;
    padding: 0;
    text-align: center;
    text-transform: uppercase;
}

.p-header-nav__link {
    text-decoration: none;
    color: #5B4D46;
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 1.5;
    letter-spacing: 0.03em;
    transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
    .p-header-nav__link:hover {
        opacity: 0.6;
    }
}

.p-header-nav__footer {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.p-header-nav__line {
    width: 186px;
    height: auto;
    object-fit: contain;
    margin-bottom: 38px;
}
.p-header-nav__info {
    font-weight: normal;
    font-size: 1.6rem;
    line-height: 1.8;
    color: #5B4D46;
    margin-bottom: 52px;
}

.p-header-nav__info p {
    margin: 0;
}

.p-header-nav__social {
    display: flex;
    gap: 19px;
}
/* ===============================================
# PC Styles
=============================================== */
@media (min-width: 990px) {
    .l-header {
        height: 102px;
    }

    .l-header__inner {
        padding: 24px clamp(25px, (100vw - 1235px) / 2, 60px) 24px 25px;
    }

    .l-header__logo {
        width: 166px;
        height: 54px;
        z-index: 1000;
    }

    .c-hbg-menu-btn {
        display: none;
    }

    .p-header-nav {
        position: static;
        width: auto;
        height: auto;
        overflow: visible;
        transition: none;
        background: none;
    }

    .p-header-nav__list {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 4rem;
        margin: 0;
    }

    .p-header-nav__link {
        line-height: 1.8;
        letter-spacing: 0;
    }

    .p-header-nav__footer {
        display: none;
    }
}

/* ===============================================
# Footer
=============================================== */
.l-footer {
    padding: 64px 0 21px;
    background-color: #FFFBF7; 
}

.l-footer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    max-width: 1154px;
    margin: 0 auto;
    padding: 0 31px;
    width: 100%;
}
.l-footer__nav {
    margin-bottom: 0;
}
.l-footer__nav-list {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 31px;
    list-style: none;
    padding: 0;
    margin: 0;
    text-transform: uppercase;
}

.l-footer__nav-link {
    text-decoration: none;
    color: #5B4D46;
    font-weight: 500;
    font-size: 1.6rem;
    letter-spacing: 0.03em;
    transition: opacity 0.3s ease;
}

@media (any-hover: hover) {
    .l-footer__nav-link:hover {
        opacity: 0.6;
    }
}


.l-footer__separator img {
    display: block;
}

.l-footer__info {
    color: #5B4D46;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.6rem;
    line-height: 1.8;
    text-align: center;
}

.l-footer__info p {
    margin: 0;
}

.l-footer__social {
    display: flex;
    gap: 21px;
}

.l-footer__social a {
    display: block;
    transition: opacity 0.3s ease;
}

@media (any-hover: hover) {
    .l-footer__social a:hover {
        opacity: 0.6;
    }
}


.l-footer__copyright {
    color: #5B4D46;
    font-size: 1.2rem;
    line-height: 1.25;
    letter-spacing: 0.1em;
    opacity: 0.5;
    margin: 0;
}

/* PC Styles for Footer */
@media (min-width: 750px) {
    .l-footer {
        padding: 83px 0 21px;
    }
    .l-footer__inner {
        gap: 38px;
    }
    .l-footer__nav {
        margin-bottom: 1rem;
    }
    .l-footer__nav-list {
        flex-direction: row;
        gap: 44px;
    }
}

/* ===============================================
# Reservation
=============================================== */
.p-reservation {
    padding: 64px 0 68px;
    background-color: #fff;
}

.p-reservation__inner {
    max-width: 1154px;
    margin: 0 auto;
    padding: 0 31px;
    width: 100%;
}

.p-reservation__title {
    display: flex;
    flex-direction: column;
    color: #5B4D46;
    margin: 0 0 26px;
}

.p-reservation__title-ja {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: normal;
    font-size: 1.6rem;
    line-height: 1.8;
}

.p-reservation__title-en {
    font-family: 'adobe-garamond-pro', serif;
    font-weight: normal;
    font-size: 4rem;
    line-height: 1.35;
    letter-spacing: 0.08em;
}

.p-reservation__body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.p-reservation__text {
    color: #5B4D46;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.6rem;
    line-height: 1.8;
    text-align: center;
}

.p-reservation__text p {
    margin: 0;
    text-align: left;
}

.p-reservation__links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    width: 100%;
}

.p-reservation__button-link {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 328px;
    width: 100%;
    height: initial;
    aspect-ratio: 328 / 88;
    background-image: url(../img/sp_reserve_button_frame.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    color: #5B4D46;
    text-decoration: none;
    font-size: 1.8rem;
    transition: background-image 0.3s ease;
}


.p-reservation__button-link span {
    position: relative;
}
.p-reservation__button-link span::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%) rotate(-90deg);
    width: 15px;
    height: 13px;
    background-image: url(../img/arrow.svg);
    background-size: contain;
    background-repeat: no-repeat;
    transition: transform 0.3s ease;
}

.p-reservation__contact-link {
    color: #5B4D46;
    font-size: 1.6rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(91, 77, 70, 0.6);
    position: relative;
}

.p-reservation__contact-link::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%) rotate(-90deg);
    width: 15px;
    height: 13px;
    background-image: url(../img/arrow.svg);
    background-size: contain;
    background-repeat: no-repeat;
    transition: transform 0.3s ease;
}

@media (any-hover: hover) {
    .p-reservation__contact-link:hover {
        border-bottom: 1px solid rgba(91, 77, 70, 1);
    }
    .p-reservation__contact-link:hover::after {
        transform: translate(3px, -50%) rotate(-90deg);
    }
}

/* PC Styles for Reservation */
@media (min-width: 750px) {
    .p-reservation {
        padding: 135px 0;
    }
    .p-reservation__title {
        margin: 0 0 59px;
    }
    .p-reservation__body {
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
        gap: 105px;
    }

    .p-reservation__text {
        text-align: left;
    }
    .p-reservation__links {
        gap: 25px;
        width: auto;
    }
    .p-reservation__button-link {
        max-width: 447px;
        width: 447px;
        aspect-ratio: 447/88;
        background-image: url(../img/pc_reserve_button_frame.png);
    }
    @media (any-hover: hover) {
    .p-reservation__button-link:hover {
        background-image: url(../img/pc_reserve_button_frame_hover.png);
    }
    .p-reservation__button-link:hover span::after {
        transform: translate(3px, -50%) rotate(-90deg);
    }
}
}