@charset "UTF-8";

/* ======================
   PC デフォルト
====================== */

/* Header */
.header nav ul {
    display: flex;
    justify-content: flex-end;
    gap: 36px;
    list-style: none;
}

.header nav ul a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 100;
    letter-spacing: 1px;
}

.header_text_pc {
    display: block;
}

/* ハンバーガーメニューはPCで非表示 */
.hamburger-menu {
    display: none !important;
}

/* モバイルロゴはPCで非表示 */
.header_image_mobile {
    display: none;
}

/* About */
.main_about {
    display: block;
}

.main_description {
    max-width: 720px;
    margin: 40px auto 0;
    font-size: 16px;
    line-height: 2;
    letter-spacing: 0.08em;
    text-align: center;
}

.main_description span {
    display: block;
}

/* Footer */
.footer_pc {
    display: block;
}

.footer_mobile {
    display: none;
}

/* Reservation Button */
.reservation-button {
    position: fixed;
    right: 24px;
    bottom: 24px;
    padding: 16px 48px;
    background-color: #e78d42;
    color: #fff;
    font-size: 18px;
    border-radius: 28px;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transition: transform 0.2s;
    letter-spacing: 2px;
}

.reservation-button:hover {
    transform: scale(1.05);
}

/* ======================
   モバイル（SP）
====================== */
@media screen and (max-width: 741px) {

    /* Header PC版を非表示 */
    .header_text_pc {
        display: none !important;
    }

    .header nav,
    .header nav ul {
        display: none !important;
    }

    /* ハンバーガーメニュー表示 */
    .hamburger-menu {
        display: block !important;
    }

    /* ハンバーガー線の位置とスペース */

    .hamburger-menu .bar {
        margin: 0 0 5px auto;
    }

    /* モバイルロゴ表示 */
    .header_image_mobile {
        display: block !important;
        /* height: 20px; */
    }

    /* About */
    .main_description {
        max-width: none;
        margin: 0;
        font-size: 14px;
        line-height: 2;
        letter-spacing: 0.2em;
        text-align: left;
    }

    /* Footer */
    .footer_pc {
        display: none !important;
    }

    .footer_mobile {
        display: block !important;
    }

    /* Reservation Button モバイル */
    .reservation-button {
        left: 50%;
        right: auto;
        bottom: 20px;
        transform: translateX(-50%);
        padding: 16px 100px;
    }

    .reservation-button:hover {
        transform: translateX(-50%) scale(1.05);
    }
}

/* ======================
   FAQ（PC幅調整）
====================== */
@media screen and (min-width: 742px) {
    .faq {
        max-width: 900px;
        margin: 0 auto;
    }
}