@charset "UTF-8";

@font-face {
    font-family: 'Noto Sans JP';
    src: url(/fonts/NotoSansJP-Regular.woff2) format('woff2');
    font-weight: 400;
    font-display: swap;
}
@font-face {
    font-family: 'Noto Sans JP';
    src: url(/fonts/NotoSansJP-Medium.woff2) format('woff2');
    font-weight: 500;
    font-display: swap;
}
@font-face {
    font-family: 'Noto Sans JP';
    src: url(/fonts/NotoSansJP-Bold.woff2) format('woff2');
    font-weight: 700;
    font-display: swap;
}
@font-face {
    font-family: 'Noto Serif JP';
    src: url(/fonts/NotoSerifJP-Bold.woff2) format('woff2');
    font-weight: 700;
    font-display: swap;
}
@font-face {
    font-family: 'Abril Fatface';
    src: url(/fonts/AbrilFatface-Regular.ttf);
    font-weight: 400;
    font-display: swap;
}
@font-face {
    font-family: 'Libre Baskerville';
    src: url(/fonts/LibreBaskerville-SemiBold.ttf);
    font-weight: 600;
    font-display: swap;
}
@font-face {
    font-family: 'Lobster';
    src: url(/fonts/Lobster-Regular.ttf);
    font-weight: 400;
    font-display: swap;
}
@font-face {
    font-family: 'Anonymous Pro';
    src: url(/fonts/AnonymousPro-Bold.ttf);
    font-weight: 700;
    font-display: swap;
}

/* ============================================================
   ヘッダー（追従：sticky）
   ============================================================ */
.l-header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 3;
}

.l-header *,
.org-header * {
    box-sizing: border-box;
    font-family: "Noto Sans JP", sans-serif;
}

.l-header a {
    color: inherit;
    text-decoration: none;
}
.l-header a:hover {
    opacity: 1;
}
.org-header {
    width: 100%;
    background: #f2efe7;
    transition: box-shadow 0.25s ease;
}

.org-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-left: 20px;
}

.org-header__logo-wrap {
    flex-shrink: 0;
    margin: 0;
    height: 60px;
}

.org-header__logo {
    display: block;
    height: 60px;
}

.org-header__logo img {
    display: block;
    width: auto;
    height: 60px;
}

@media screen and (max-width: 1279px) {
    .org-header__logo-wrap {
        width: 370px;
    }

    .org-header__logo {
        width: 370px;
    }

    .org-header__logo img {
        width: 370px;
        height: auto;
    }
}

.org-header__right {
    display: flex;
    align-items: stretch;
    gap: 12px;
    height: 100%;
}

.org-header__contents {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 12px;
    padding: 8px 0;
}

.org-header__shop-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
    width: 100%;
}

.org-header__hours {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.org-header__hours-line {
    flex: 1 0 0;
    min-width: 1px;
    height: 1px;
    background: rgba(0, 0, 0, 0.05);
}

.org-header__hours-text {
    margin: 0;
    font-size: 11px;
    font-weight: 400;
    line-height: 1;
    color: #222;
    white-space: nowrap;
}

.org-header__tel-list {
    display: flex;
    gap: 1px;
}

.org-header__tel-item {
    display: flex;
    align-items: center;
    gap: 5px;
    height: 36px;
    padding: 0 8px 0 6px;
    background: #e4e0d6;
}

.org-header__tel-label {
    margin: 0;
    font-size: 11px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.44px;
    text-align: center;
    color: #222;
    white-space: nowrap;
}

.org-header__tel-num {
    font-family: "Abril Fatface", serif;
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.4px;
    color: #222;
    white-space: nowrap;
    text-decoration: none;
}

.org-header__gnavi {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 22px;
}

.org-header__gnavi-item {
    position: relative;
}

.org-header__gnavi-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin: 0;
    padding: 0 0 4px;
    border: none;
    border-bottom: 1px solid transparent;
    background: none;
    font-family: inherit;
    font-size: 13px;
    font-weight: 500;
    line-height: normal;
    color: #222;
    white-space: nowrap;
    cursor: pointer;
}

.org-header__gnavi-btn.is-open {
    border-bottom-color: #222;
}

.org-header__gnavi-btn.is-open .org-header__gnavi-arrow {
    transform: rotate(180deg);
}

.org-header__gnavi-link {
    font-size: 13px;
    font-weight: 500;
    line-height: normal;
    color: #222;
    white-space: nowrap;
    text-decoration: none;
    position: relative;
}
.org-header__gnavi-link:after,
.org-header__gnavi-btn:after {
    background: #222;
    content: '';
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: -5px;
    transform-origin: center top;
    transform: scale(0, 1);
    transition: transform .3s;
}
.org-header__gnavi-btn:after {
    bottom: 0px;
}
.org-header__gnavi-link:hover::after,
.org-header__gnavi-btn:hover::after {
    transform-origin: center top;
    transform: scale(1, 1);
}
.org-header__gnavi-arrow {
    display: block;
    flex-shrink: 0;
    width: 7px;
    height: 4px;
    background: url(/images/top/header-icon-arrow02.svg) no-repeat center / contain;
    transition: transform 0.2s ease;
}

.org-header__dropdown {
    position: absolute;
    top: calc(100% + 2px);
    right: 0;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 153px;
    padding: 10px;
    background: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.org-header__dropdown[hidden] {
    display: none;
}

.org-header__dropdown-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    height: 36px;
    padding: 0 10px;
    background: #f2efe7;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;
    color: #222;
    white-space: nowrap;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease;
}

.org-header__dropdown-link:hover {
    background: #222;
    color: #f2efe7;
}

.org-header__dropdown-arrow {
    display: block;
    flex-shrink: 0;
    width: 13px;
    height: 3px;
    background: #222;
    -webkit-mask: url(/images/top/header-icon-arrow.svg) no-repeat center / contain;
    mask: url(/images/top/header-icon-arrow.svg) no-repeat center / contain;
    transition: background 0.3s ease;
}

.org-header__dropdown-link:hover .org-header__dropdown-arrow {
    background: #f2efe7;
}

.org-header__btn-list {
    display: flex;
    align-items: stretch;
    padding: 8px 0;
}

.org-header__btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 100%;
    border-left: 1px solid rgba(0, 0, 0, 0.05);
    text-decoration: none;
    color: #222;
    transition: background 0.3s ease, color 0.3s ease;
}

.org-header__btn--history {
    padding: 0 10px;
}

.org-header__btn--favorite {
    padding: 0 8px;
}

.org-header__btn-icon {
    display: block;
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.org-header__btn-text {
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    white-space: nowrap;
}

.org-header__btn--history .org-header__btn-text {
    letter-spacing: 0.84px;
}

.org-header__btn--favorite .org-header__btn-text {
    letter-spacing: 0.56px;
}

.org-header__btn:hover {
    background: #222;
    color: #f2efe7;
}

.org-header__btn:hover .org-header__btn-icon {
    filter: brightness(0) invert(1);
    transform: scale(1.06);
}

.org-header__gnavi-link:hover,
.org-header__gnavi-btn:hover,
.org-header__dropdown-link:hover,
.org-header__btn:hover {
    opacity: 1;
}
/* ------------------------------------------------------------
   追従フロートバナー
   ------------------------------------------------------------ */
   .org-float {
    position: fixed;
    top: 180px;
    right: 0;
    z-index: 5;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.org-float.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.org-float__list {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: flex-end;
}

.org-float__item {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2px;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: 50px;
    padding: 12px 10px 14px;
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.org-float__item:hover {
    opacity: 0.8;
}

.org-float__item--reserve {
    background: #222;
    color: #fff;
}

.org-float__item--satei {
    background: #d0c7ae;
    color: #222;
}

.org-float__icon {
    display: block;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.org-float__icon img {
    display: block;
    width: 100%;
    height: 100%;
}

.org-float__text {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.15;
    text-align: center;
    writing-mode: vertical-rl;
    font-feature-settings: "vert" 1;
    letter-spacing: 2px;
}

.org-float__badge {
    position: absolute;
    top: 0;
    left: -15px;
    display: block;
}

.org-float__badge-img {
    display: block;
    width: auto;
    height: auto;
}
