@charset "UTF-8";

/*///////////////////// font-face ///////////////////////////*/
/* Zen Kaku Gothic New 400 */
@font-face {
    font-family: "Zen Kaku Gothic New";
    src: url(/fonts/zen-kaku-gothic-new-v18-japanese_latin-regular.woff2) format("woff2");
    font-weight: 400;
    font-display: swap;
}
/* Zen Kaku Gothic New 500 */
@font-face {
    font-family: "Zen Kaku Gothic New";
    src: url(/fonts/zen-kaku-gothic-new-v18-japanese_latin-500.woff2) format("woff2");
    font-weight: 500;
    font-display: swap;
}
/* Zen Kaku Gothic New 700 */
@font-face {
    font-family: "Zen Kaku Gothic New";
    src: url(/fonts/zen-kaku-gothic-new-v18-japanese_latin-700.woff2) format("woff2");
    font-weight: 700;
    font-display: swap;
}
/* Zen Kaku Gothic New 900 */
@font-face {
    font-family: "Zen Kaku Gothic New";
    src: url(/fonts/zen-kaku-gothic-new-v18-japanese_latin-900.woff2) format("woff2");
    font-weight: 900;
    font-display: swap;
}

/*//////////////////// Header ////////////////////*/
.l-header {
    padding: 0;
}
.org-header {
    top: 0;
    left: 0;
    z-index: 5;
    width: 100%;
    height: 80px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
    .org-header * {
        font-family: "Zen Kaku Gothic New", sans-serif;
        box-sizing: border-box;
    }
/* TOP：初期は透明固定 */
.org-header--top {
    position: fixed;
    background-color: transparent;
    box-shadow: none;
}
/* TOP追従時・下層：白背景＋シャドウ */
.org-header--top.is-fixed,
.org-header--lower {
    background-color: #fff;
    box-shadow: 0 2px 4.5px rgba(0, 0, 0, 0.06);
}
.org-header--lower {
    position: sticky;
}
    .org-header__inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        height: 100%;
        padding-inline: 20px;
    }
        .org-header__left {
            display: flex;
            align-items: center;
            flex-shrink: 0;
        }
            .org-header__logo-wrap {
                margin: 0;
                line-height: 0;
            }
                .org-header__logo {
                    display: block;
                    width: 266px;
                    height: 54px;
                }
                    .org-header__logo img {
                        display: block;
                        width: 100%;
                        height: 100%;
                        object-fit: contain;
                    }
        .org-header__right {
            display: flex;
            align-items: center;
            gap: 30px;
            flex-shrink: 0;
        }
            .org-header__nav-list {
                display: flex;
                align-items: center;
                gap: 30px;
                margin: 0;
                padding: 0;
                list-style: none;
            }
                .org-header__nav-item,
                .org-header__nav-item--search {
                    position: relative;
                    list-style: none;
                }
                    .org-header__nav-link,
                    .org-header__nav-link--search {
                        display: inline-flex;
                        align-items: center;
                        gap: 6px;
                        font-size: 16px;
                        font-weight: 500;
                        line-height: 1;
                        color: #343437;
                        text-decoration: none;
                        white-space: nowrap;
                    }
                    .org-header__nav-link--search {
                        cursor: pointer;
                        margin-top: 2px;
                    }
                        .org-header__nav-txt {
                            display: block;
                        }
                        .org-header__nav-arrow {
                            display: block;
                            flex-shrink: 0;
                            width: 11px;
                            height: 7px;
                            overflow: visible;
                            color: #343437;
                            fill: none;
                            margin-top: 3px;
                        }
                    /* プルダウン */
                    .org-header__pulldown {
                        position: absolute;
                        top: calc(100% + 14px);
                        left: 50%;
                        z-index: 6;
                        display: flex;
                        flex-direction: column;
                        align-items: center;
                        width: 140px;
                        margin: 0;
                        padding: 9px 20px 16px;
                        list-style: none;
                        background-color: #fff;
                        border-radius: 6px;
                        box-shadow: 0 2px 4.5px rgba(0, 0, 0, 0.06);
                        opacity: 0;
                        visibility: hidden;
                        pointer-events: none;
                        transform: translateX(-50%);
                    }
                    /* ホバー橋渡し（ヘッダーとメニューの隙間） */
                    .org-header__pulldown::before {
                        content: "";
                        position: absolute;
                        top: -14px;
                        left: 0;
                        width: 100%;
                        height: 14px;
                    }
                        .org-header__pulldown-item {
                            width: 100%;
                            list-style: none;
                        }
                        .org-header__pulldown-item + .org-header__pulldown-item {
                            margin-top: 12px;
                            padding-top: 12px;
                            border-top: 1px solid #d8d8d8;
                        }
                            .org-header__pulldown-link {
                                display: block;
                                width: 100%;
                                font-size: 16px;
                                font-weight: 400;
                                line-height: 1;
                                color: #333;
                                text-align: center;
                                text-decoration: none;
                                white-space: nowrap;
                            }
            .org-header__btns {
                display: flex;
                align-items: center;
                gap: 10px;
            }
                [class*="org-header__option-bt"] {
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    width: 106px;
                    height: 34px;
                    border: 1px solid transparent;
                    border-radius: 9999px;
                    text-decoration: none;
                }
                .org-header__option-bt--reservation {
                    background-color: #ff595d;
                    border-color: #ff595d;
                }
                .org-header__option-bt--satei {
                    background-color: #8acb27;
                    border-color: #8acb27;
                }
                .org-header__option-bt--login {
                    background-color: #ffde8c;
                    border-color: #ffde8c;
                }
                .org-header__option-bt--member {
                    background-color: #ffcb3a;
                    border-color: #ffcb3a;
                }
                .org-header__option-bt--member-wide {
                    width: auto;
                    min-width: 106px;
                    padding-inline: 12px;
                }
                    .org-header__option-txt {
                        font-size: 16px;
                        font-weight: 500;
                        line-height: 1;
                        color: #fff;
                        white-space: nowrap;
                    }
                    .org-header__option-txt--dark {
                        color: #1d3a6d;
                    }
