@font-face {
    font-family: 'BHNsYuseiMagic';
    src: url(../fonts/BHNsYuseiMagic-Regular.eot);
    src: url(../fonts/BHNsYuseiMagic-Regular.eot?#iefix) format('embedded-opentype'), url(../fonts/BHNsYuseiMagic-Regular.woff) format('woff'), url(../fonts/BHNsYuseiMagic-Regular.ttf) format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'BHNsAOTFKanteiryuStd';
    src: url(../fonts/BHNsAOTFKanteiryuStd-Ultra.eot);
    src: url(../fonts/BHNsAOTFKanteiryuStd-Ultra.eot?#iefix) format('embedded-opentype'), url(../fonts/BHNsAOTFKanteiryuStd-Ultra.woff) format('woff'), url(../fonts/BHNsAOTFKanteiryuStd-Ultra.ttf) format('truetype');
    font-weight: 900;
    font-style: normal;
}

body {
    color: #333333;
    overflow-x: hidden;
    font-family: 'BHNsYuseiMagic', sans-serif;
    background: url(../images/bg.png?ver=2) repeat-y;
    background-size: 100%;
    background-attachment: fixed;
    font-weight: 400;
}

/* ---------- Home UI (static) ---------- */
:root {
    --ume-red: #bc0c1d;
    --ume-brown: #4a2b1b;
    --ume-ink: #111111;
    --ume-orange: #e95528;
    --ume-paper: rgba(245, 234, 209, 0.92);
    --ume-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
}

body ::-webkit-scrollbar-thumb {
    background: rgba(233, 85, 40, .8);
}

body ::-webkit-scrollbar-thumb:hover {
    background: var(--ume-orange);
}

body ::-webkit-scrollbar-track {
    background: rgba(233, 85, 40, .1);
    border-radius: 0;
}

#topcontrol {
    z-index: 999;
    background: #000;
    width: 40px;
    height: 40px;
    text-align: center;
    font-size: 24px;
    position: fixed;
    bottom: -80px;
    right: 5px;
    cursor: pointer;
    overflow: auto;
    -webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
    line-height: 34px;
    color: #b8b8b8;
    padding-left: 3px;
    border-radius: 3px;
}

.navigation .ui.secondary.menu .item {
    color: #b8b8b8;
    font-size: 1.1em;
}

.navigation .ui.secondary.menu .item:hover {
    color: #b8b8b8;
}

.ui[class*="left icon"].input>input {
    padding-left: 2.7142857em!important;
}

.ui.form input:not([type]), .ui.form input[type=text], .ui.form input[type=email], .ui.form input[type=search], .ui.form input[type=password], .ui.form input[type=date], .ui.form input[type=datetime-local], .ui.form input[type=tel], .ui.form input[type=time], .ui.form input[type=file], .ui.form input[type=url], .ui.form input[type=number] {
    font-weight: 300;
    font-size: 14px;
}

.ui.primary.button,
.ui.primary.buttons .button {
    background-color: #000;
}

.ui.primary.button:focus,
.ui.primary.button:active,
.ui.primary.button:hover,
.ui.primary.buttons .button:focus,
.ui.primary.buttons .button:active,
.ui.primary.buttons .button:hover {
    background-color: #000;
}

a {
  color: #333333;
}

a:focus,
a:active,
a:hover {
    color: var(--ume-red);
}

@media only screen and (min-width: 1400px) {
    .ui.container {
        width: 1200px;
    }
}

.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff url(../images/loading-bg.png) no-repeat center center;
    background-size: cover;
    z-index: 9999;
    opacity: 1;
    visibility: visible;
    transition: opacity 300ms ease, visibility 300ms ease;
}

.loading-screen.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

html:has(.loading-screen:not(.is-hidden)),
html:has(.loading-screen:not(.is-hidden)) body {
    overflow: hidden;
}

.loading-screen-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.loading-screen-content-logo {
    width: 200px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    position: relative;
}

.loading-screen .loader {
    width: 200px;
    height: 200px;
    position: relative;
}

.loading-screen .logo-fill {
    position: relative;
    width: 100%;
    height: 100%;
}

.loading-screen .logo-fill__base,
.loading-screen .logo-fill__full {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.loading-screen .logo-fill__base {
    opacity: 0.5;
}

.loading-screen .logo-fill__reveal {
    --fill: 0%;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: var(--fill);
    overflow: hidden;
}

.loading-screen .logo-fill__full {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 200px;
    opacity: 1;
}

.errordiv {
    padding: 10px 12px;
    *margin-left: .3em;
    line-height: 20px;
    color: #b8b8b8;
    text-align: left;
    text-shadow: 0 1px 1px rgba(255,255,255,0.75);
    vertical-align: middle;
    background-color: var(--ume-red);
    width: auto;
    min-width: 80px;
    min-height: 24px;
    display: none;
    position: absolute;
    z-index: 9999;
    top: 40px;
    border-radius: 5px;
}

.errordiv:before {
    position: absolute;
    top: -6px;
    left: 13px;
    display: inline-block;
    border-right: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 7px solid transparent;
    content: '';
}

.errordiv:after {
    position: absolute;
    top: -6px;
    left: 13px;
    display: inline-block;
    border-right: 10px solid transparent;
    border-bottom: 10px solid var(--ume-red);
    border-left: 10px solid transparent;
    content: '';
}
/* ---------- Header (static) ---------- */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    pointer-events: none;
}

.ume-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    pointer-events: auto;
    padding: 30px 40px;
}

.sticky-wrapper {
    height: 0 !important;
}

.is-sticky .ume-header {
    background: #000000e3;
    padding: 0 40px;
    opacity: 0;
}

.ume-header__logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    line-height: 0;
}

.ume-header__logo img {
    width: 80px;
    height: auto;
    display: block;
    object-fit: contain;
    transition: width 0.3s ease;
}

.is-sticky .ume-header__logo img {
    width: 75px;
}

.ume-header__right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 4px;
}

.is-sticky .ume-header__right {
    gap: 8px;
}

.ume-header__social {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.ume-header__actionsBlock {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
}

.ume-icon-btn {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.is-sticky .ume-icon-btn {
    width: 24px;
    height: 24px;
}

.ume-icon-btn:hover { filter: brightness(0.98); }

.ume-header__icon {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.ume-header__icon--menu {
    width: 22px;
    height: 22px;
}

.ume-menu-btn {
    width: 68px;
    height: 68px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.is-sticky .ume-menu-btn {
    width: 54px;
    height: 54px;
}

.ume-menu-btn__home {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 14px 26px rgba(0, 0, 0, 0.28));
}

.ume-menu-btn__bars {
    width: 26px;
    height: 26px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.ume-hotline {
    display: flex;
    flex-direction: column;
    align-items: end;
    gap: 6px;
    color: #fff;
    text-decoration: none;
    line-height: 1.1;
}

.ume-hotline__label {
    font-size: 18px;
    letter-spacing: 0.3px;
    text-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
}

.is-sticky .ume-hotline__label {
    font-size: 16px;
}

.ume-hotline__pill {
    padding: 6px 10px;
    border-radius: 4px;
    background: var(--ume-orange);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.6px;
    box-shadow: 0 14px 26px rgba(0, 0, 0, 0.28);
    text-decoration: underline;
}

.ume-hotline__pill .fa {
    margin-right: 3px;
}

.is-sticky .ume-hotline__pill {
    font-size: 12px;
}

.home-slider {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
}

.home-slider__item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#home,
#about,
#booking,
#menu,
#location,
#promo,
#membership {
    position: relative;
    top: 0;
}

.home-cta {
    position: relative;
    display: flex;
    align-items: stretch;
}

.home-cta a {
    display: flex;
    align-items: stretch;
    width: 100%;
    min-height: 320px;
    overflow: hidden;
}

.home-cta__rail {
    width: 80px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px 6px;
    z-index: 1;
    word-wrap: break-word;
}

.home-cta__railText {
    writing-mode: vertical-rl;
    -webkit-writing-mode: vertical-rl;
    text-orientation: upright;
    color: var(--ume-orange);
    font-family: 'BHNsAOTFKanteiryuStd', sans-serif;
    font-size: 30px;
    letter-spacing: 6px;
    line-height: 1;
    will-change: transform, letter-spacing, filter;
    transition: transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1), letter-spacing 420ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 260ms ease;
    display: block;
    width: 32px;
}

.home-cta__panel {
    position: relative;
    flex: 1 1 44%;
    min-height: 450px;
    text-decoration: none;
    color: #fff;
    overflow: hidden;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    will-change: transform;
    transition: transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 260ms ease;
}

.home-cta__panel::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.05) 55%, rgba(0, 0, 0, 0.35) 100%);
    pointer-events: none;
    transition: opacity 260ms ease;
}

.home-cta__panel--menu {
    background-image: url(../images/home-cta-menu.png);
}

.home-cta__panel--booking {
    background-image: url(../images/home-cta-booking.png);
}

.home-cta__panelInner {
    position: absolute;
    top: 28px;
    right: 68px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    text-align: right;
    max-width: min(520px, 72%);
    color: #fff;
    will-change: transform, opacity, color;
    transition: transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1), color 220ms ease, opacity 220ms ease;
}

.home-cta__jp--brush {
    font-family: 'BHNsAOTFKanteiryuStd', sans-serif;
    font-size: 32px;
    line-height: 1;
    letter-spacing: 2px;
}

.home-cta__vn {
    font-family: 'BHNsAOTFKanteiryuStd', sans-serif;
    font-size: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.05;
}

.home-cta__divider {
    width: 80px;
    background: var(--ume-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 6px;
    z-index: 1;
}

.home-cta__dividerText {
    writing-mode: vertical-rl;
    -webkit-writing-mode: vertical-rl;
    text-orientation: upright;
    color: #fff;
    font-family: 'BHNsAOTFKanteiryuStd', sans-serif;
    font-size: 34px;
    letter-spacing: 10px;
    line-height: 1;
    text-shadow: 0 10px 22px rgba(0, 0, 0, 0.25);
    will-change: transform, letter-spacing, filter;
    transition: transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1), letter-spacing 420ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 260ms ease;
    display: block;
    width: 32px;
}

.home-cta a:hover .home-cta__panel--menu,
.home-cta a:focus-visible .home-cta__panel--menu {
    transform: scale(1.04);
    filter: saturate(1.03) contrast(1.02);
}

.home-cta a:hover .home-cta__railText,
.home-cta a:focus-visible .home-cta__railText {
    transform: translate3d(0, -8px, 0);
    letter-spacing: 9px;
    filter: brightness(0.98);
}

.home-cta a:hover .home-cta__dividerText,
.home-cta a:focus-visible .home-cta__dividerText {
    transform: translate3d(0, -8px, 0);
    letter-spacing: 14px;
    filter: brightness(1.06);
}

.home-cta a:hover .home-cta__panel--menu::after,
.home-cta a:focus-visible .home-cta__panel--menu::after {
    opacity: 0.82;
}

.home-cta a:hover .home-cta__panelInner,
.home-cta a:focus-visible .home-cta__panelInner {
    transform: translate3d(-10px, 0, 0);
    color: var(--ume-red);
}

/* ---------- Quick actions (fixed right) ---------- */
.ume-quick-actions {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 1005;
    display: flex;
    flex-direction: column;
    width: 56px;
    box-shadow: -8px 0 22px rgba(0, 0, 0, 0.22);
    opacity: 1;
    transition: opacity 0.2s ease;
    will-change: opacity;
}

.is-sticky .ume-quick-actions {
    opacity: 1;
}

.ume-quick-actions__seg {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 0 5px 0;
    color: #fff;
    text-decoration: none;
    box-sizing: border-box;
    min-height: 0;
    transition: filter 0.2s ease, opacity 0.2s ease;
}

.ume-quick-actions__seg:hover,
.ume-quick-actions__seg:focus-visible {
    filter: brightness(1.06);
    color: #fff;
}

.ume-quick-actions__seg:focus-visible {
    outline: 2px solid #fff;
    outline-offset: -4px;
}

.ume-quick-actions__seg--hotline {
    background: var(--ume-orange);
    flex: 1 1 auto;
    min-height: 200px;
}

.ume-quick-actions__seg--book {
    background: var(--ume-red);
    flex: 1 1 auto;
    min-height: 170px;
}

.ume-quick-actions__hotlineRow {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    gap: 2px;
    flex: 1 1 auto;
}

.ume-quick-actions__hotlineText {
    writing-mode: vertical-rl;
    -webkit-writing-mode: vertical-rl;
    text-align: center;
    line-height: 1.2;
}

.ume-quick-actions__hotlineTitle {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    font-family: 'BHNsAOTFKanteiryuStd', sans-serif;
}

.ume-quick-actions__hotlineJp {
    font-size: 10px;
    letter-spacing: 0.12em;
}

.ume-quick-actions__hotlineNum {
    writing-mode: vertical-rl;
    -webkit-writing-mode: vertical-rl;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.1em;
    line-height: 1.2;
    text-align: center;
}

.ume-quick-actions__bookRow {
    writing-mode: vertical-rl;
    -webkit-writing-mode: vertical-rl;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    flex: 1 1 auto;
    font-weight: 800;
    line-height: 1.15;
    text-align: center;
}

.ume-quick-actions__bookJp {
    font-size: 14px;
    letter-spacing: 0.18em;
    text-orientation: upright;
}

.ume-quick-actions__bookVn {
    font-family: 'BHNsAOTFKanteiryuStd', sans-serif;
    font-size: 16px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-orientation: mixed;
    max-width: 12em;
}

.ume-quick-actions__ico {
    font-size: 20px;
    line-height: 1;
    opacity: 0.95;
}

.home-story {
    position: relative;
    width: 100%;
    color: #fff;
    margin: 15px 0;
}

.home-story__layout {
    display: flex;
    align-items: stretch;
    min-height: clamp(360px, 52vw, 520px);
}

.home-story__main {
    flex: 1 1 70%;
    max-width: 70%;
    box-sizing: border-box;
    padding: clamp(28px, 5vw, 56px) clamp(52px, 4vw, 44px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: justify;
    gap: clamp(14px, 2.2vw, 22px);
    background: url(../images/home-story-main.png) right center no-repeat;
    background-size: 100% 100%;
    position: relative;
}

.home-story__main::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(-90deg, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.08) 38%, rgba(0, 0, 0, 0.06) 62%, rgba(0, 0, 0, 0.52) 100%);
    pointer-events: none;
    z-index: 0;
}

.home-story__lead {
    margin: 0;
    font-size: clamp(14px, 1.35vw, 17px);
    font-weight: 400;
    line-height: 1.55;
    max-width: 31em;
    color: #fff;
    width: 100%;
}

.home-story__title {
    margin: 0;
    font-family: 'BHNsAOTFKanteiryuStd', sans-serif;
    font-size: clamp(22px, 2.6vw, 34px);
    font-weight: 800;
    letter-spacing: 0.06em;
    line-height: 1.15;
    text-transform: uppercase;
    text-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
}

.home-story__body {
    margin: 0;
    font-size: clamp(14px, 1.45vw, 18px);
    font-weight: 400;
    line-height: 1.75;
    max-width: 29em;
    color: #fff;
}

.home-story__more {
    margin-top: 250px;
    font-family: 'BHNsAOTFKanteiryuStd', sans-serif;
    font-size: clamp(15px, 1.4vw, 17px);
    font-weight: 800;
    letter-spacing: 0.12em;
    color: #fff;
    text-decoration: none;
    -webkit-text-stroke: 6px rgba(233, 85, 40, 1);
    text-shadow: -1px -1px 0 #e95528, 2px -1px 0 #e95528, -1px 2px 0 #e95528, 1px 1px 0 #e95528, 0 8px 22px rgba(0, 0, 0, 0.5);
    paint-order: stroke fill;
    transition: color 160ms ease, text-shadow 160ms ease;
    padding: 15px 20px;
}

.home-story__more:hover,
.home-story__more:focus-visible {
    color: #fff7e8;
    text-shadow:
        0 0 18px rgba(255, 160, 90, 1),
        0 0 32px rgba(233, 85, 40, 0.75),
        0 2px 12px rgba(0, 0, 0, 0.6);
    background: var(--ume-orange);
}

.home-story__jp {
    flex: 0 0 40%;
    min-width: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(8px, 1.2vw, 14px);
    padding: 24px clamp(10px, 1.8vw, 18px) 24px 6px;
    background: url(../images/home-story-jp.png) center center no-repeat;
    background-size: cover;
    position: relative;
}

.home-story__jp::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.08) 38%, rgba(0, 0, 0, 0.06) 62%, rgba(0, 0, 0, 0.52) 100%);
    pointer-events: none;
    z-index: 0;
}

.home-story__jpCols {
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: flex-end;
    gap: clamp(6px, 1vw, 5px);
    margin-bottom: 50px;
}

.home-story__jpCol {
    display: block;
    writing-mode: vertical-rl;
    -webkit-writing-mode: vertical-rl;
    text-orientation: mixed;
    font-weight: 500;
    letter-spacing: 0.18em;
    line-height: 1.45;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
    font-size: 18px;
}

.home-story__jpTitle {
    margin: 0;
    writing-mode: vertical-rl;
    -webkit-writing-mode: vertical-rl;
    text-orientation: mixed;
    font-family: 'BHNsAOTFKanteiryuStd', sans-serif;
    font-size: clamp(26px, 2.8vw, 40px);
    font-weight: 900;
    letter-spacing: 0.12em;
    line-height: 1.15;
    color: #fff;
    text-shadow:
        -1px -1px 0 #0a0a0a,
        1px -1px 0 #0a0a0a,
        -1px 1px 0 #0a0a0a,
        1px 1px 0 #0a0a0a,
        0 8px 22px rgba(0, 0, 0, 0.5);
    padding-right: 15%;
}

.home-trio {
    width: 100%;
    margin: 15px 0 0;
}

.home-trio__grid {
    display: flex;
    align-items: stretch;
    width: 100%;
    min-height: clamp(300px, 36vw, 750px);
}

.home-trio__photo {
    position: relative;
    flex: 1 1 33.333%;
    min-width: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: clamp(16px, 2.2vw, 26px) clamp(10px, 1.6vw, 18px);
    color: #fff;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    overflow: hidden;
}

.home-trio__photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.42) 0%,
        rgba(0, 0, 0, 0.08) 38%,
        rgba(0, 0, 0, 0.06) 62%,
        rgba(0, 0, 0, 0.52) 100%
    );
    pointer-events: none;
    z-index: 0;
}

.home-trio__photo > * {
    position: relative;
    z-index: 1;
}

.home-trio__photo--space {
    background-image: url(../images/home-trio-space.png);
}

.home-trio__photo--events {
    background-image: url(../images/home-trio-event.png);
}

.home-trio__photo:hover,
.home-trio__photo:focus-within {
    color: #fff;
}

.home-trio__photo:hover::after,
.home-trio__photo:focus-within::after {
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0.12) 40%,
        rgba(0, 0, 0, 0.1) 60%,
        rgba(0, 0, 0, 0.58) 100%
    );
}

.home-trio__photoHead {
    align-self: stretch;
    text-align: center;
    font-family: 'BHNsAOTFKanteiryuStd', sans-serif;
    font-size: clamp(17px, 1.65vw, 22px);
    font-weight: 900;
    letter-spacing: 0.08em;
    line-height: 1.25;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.55);
    font-size: 48px;
}

.home-trio__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 20px;
    color: #fff;
    text-decoration: none;
    font-family: 'BHNsAOTFKanteiryuStd', sans-serif;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.06em;
    line-height: 1.2;
    -webkit-text-stroke: 6px rgba(233, 85, 40, 1);
    paint-order: stroke fill;
    transition: color 160ms ease, text-shadow 160ms ease;
}

.home-trio__photo:hover .home-trio__cta,
.home-trio__photo:focus-within .home-trio__cta,
.home-trio__cta:hover,
.home-trio__cta:focus-visible {
    color: #fff7e8;
    text-shadow: 0 0 18px rgba(255, 160, 90, 1), 0 0 32px rgba(233, 85, 40, 0.75), 0 2px 12px rgba(0, 0, 0, 0.6);
    background: var(--ume-orange);
}

.home-trio__brand {
    flex: 1 1 13.333%;
    min-width: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: clamp(14px, 2vw, 24px);
    padding: clamp(18px, 2.5vw, 28px) clamp(12px, 2vw, 20px);
    color: var(--ume-ink);
}

.home-trio__logo {
    width: clamp(72px, 8vw, 108px);
    height: auto;
    display: block;
    object-fit: contain;
}

.home-trio__brandLines {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    gap: clamp(10px, 1.6vw, 18px);
}

.home-trio__brandSub {
    margin: 0;
    writing-mode: vertical-rl;
    -webkit-writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.14em;
    line-height: 1.55;
    color: #1a1a1a;
}

.home-trio__brandMain {
    margin: 0;
    writing-mode: vertical-rl;
    -webkit-writing-mode: vertical-rl;
    text-orientation: mixed;
    font-family: 'BHNsAOTFKanteiryuStd', sans-serif;
    font-weight: 900;
    letter-spacing: 0.1em;
    line-height: 1.2;
    color: var(--ume-red);
    font-size: 62px;
}

/* About page: same home-trio layout, 40% | ~20% | 40% */
.home-trio--about {
    width: 100%;
    margin: clamp(20px, 3vw, 40px) 0 0;
}

.home-trio--about .home-trio__grid {
    min-height: clamp(320px, 40vw, 520px);
}

.home-trio--about .home-trio__photo {
    flex: 1 1 40%;
}

.home-trio--about .home-trio__brand {
    flex: 0 1 20%;
    min-width: min(148px, 24%);
}

.home-trio__photo--aboutLeft {
    background-image: url(../images/about-trio-left.png);
    background-position: 0% center;
}

.home-trio__photo--aboutRight {
    background-image: url(../images/about-trio-right.png);
    background-position: 100% center;
}

.home-trio__photo--aboutLabelOnly {
    padding-top: clamp(18px, 2.8vw, 30px);
}

.home-trio--about .home-trio__brandMain {
    font-size: clamp(26px, 3.6vw, 48px);
}

.home-trio--about .home-trio__brandSub {
    font-size: clamp(12px, 1.25vw, 15px);
    letter-spacing: 0.12em;
}

.home-trio--about .home-trio__brandLines {
    gap: clamp(8px, 1.2vw, 14px);
}

/* ---------- UME Menu (overlay bar) ---------- */

.ume-menu {
    position: absolute;
    inset: 0;
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 180ms ease, visibility 180ms ease;
}

@media (min-width: 521px) {
    .is-sticky .ume-menu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
}

.ume-menu.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.ume-menu__bar {
    position: relative;
    margin: 0;
    padding: 12px 40px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 18px;
    background: #000;
}

.ume-menu__brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.ume-menu__brand img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    display: block;
}

.ume-menu__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    overflow: auto;
    scrollbar-width: none;
}

.ume-menu__list::-webkit-scrollbar { display: none; }

.ume-menu__item {
    position: relative;
    padding: 0 10px;
}

.ume-menu__link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
    font-family: 'BHNsAOTFKanteiryuStd', sans-serif;
    font-size: 18px;
    letter-spacing: 0.6px;
    white-space: nowrap;
    text-transform: uppercase;
    text-shadow: 0 10px 22px rgba(0, 0, 0, 0.45);
    padding: 10px 2px;
}

.ume-menu__item.active .ume-menu__link,
.ume-menu__link:hover {
    color: #ffffff;
    -webkit-text-stroke: 6px rgba(233, 85, 40, 1);
    paint-order: stroke fill;
}

.ume-menu__close {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    border: 2px solid #fff;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 521px) {
    .is-sticky .ume-menu__close {
        display: none;
    }
}

.ume-menu__closeIcon {
    font-size: 26px;
    line-height: 1;
    margin-top: -2px;
}

.ume-menu-open .ume-header { opacity: 0; visibility: hidden; pointer-events: none; }

@media (max-width: 860px) {
    .ume-menu__bar {
        grid-template-columns: auto 1fr auto;
        padding: 12px 12px;
    }

    .ume-menu__brand img {
        width: 46px;
        height: 46px;
    }

    .ume-menu__link {
        font-size: 16px;
    }
}

/* ---------- Footer ---------- */
.ume-footer {
    width: 100%;
    box-sizing: border-box;
    margin-top: 15px;
    background-color: #ebe4d8;
    background-image: url(../images/footer-bg.png);
    background-repeat: repeat-x;
    background-position: center top;
    background-size: auto 100%;
    min-height: 92px;
}

.ume-footer__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px 40px;
    padding: 22px 50px 22px;
    box-sizing: border-box;
}

.ume-footer__left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    min-width: 0;
}

.ume-footer__right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    text-align: center;
    min-width: 0;
    margin-left: auto;
}

.ume-footer__logo {
    display: block;
    height: clamp(40px, 5vw, 54px);
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.ume-footer__copy {
    margin: 0;
    font-size: clamp(13px, 1.15vw, 15px);
    font-weight: 600;
    line-height: 1.35;
    color: var(--ume-brown);
    -webkit-text-stroke: 5px #fff;
    paint-order: stroke fill;
}

.ume-footer__line {
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    margin: 0;
    text-decoration: none;
    color: inherit;
}

.ume-footer__line--hotline:hover .ume-footer__txt,
.ume-footer__line--hotline:focus-visible .ume-footer__txt {
    color: var(--ume-red);
}

.ume-footer__ico {
    flex-shrink: 0;
    color: var(--ume-brown);
    font-size: 21px;
    line-height: 1;
    -webkit-text-stroke: 2px #fff;
}

.ume-footer__txt {
    font-size: clamp(13px, 1.2vw, 16px);
    font-weight: 600;
    line-height: 1.4;
    color: var(--ume-brown);
    -webkit-text-stroke: 5px #fff;
    paint-order: stroke fill;
}

.ume-footer__txt--lg {
    font-size: clamp(18px, 2vw, 26px);
    font-weight: 800;
    letter-spacing: 0.02em;
}

.ume-footer__line--address {
    align-items: flex-start;
    max-width: min(420px, 100%);
}

.ume-footer__line--address .ume-footer__ico {
    top: 0;
    position: relative;
}

/* ---------- About page: intro panel ---------- */
#about .home-slider--pageHero {
    width: 100vw;
    max-width: none;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
}

#about .home-slider--pageHero .home-slider__viewport {
    position: relative;
    height: 100%;
    overflow: hidden;
}

#about .home-slider--pageHero .home-slider__item {
    position: absolute;
    inset: 0;
}

#about .home-slider--pageHero .home-slider__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.page-title {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: end;
    justify-content: center;
    box-sizing: border-box;
    padding: clamp(20px, 4vw, 50px) clamp(16px, 3vw, 32px);
    pointer-events: none;
}

.page-title__heading {
    font-family: 'BHNsAOTFKanteiryuStd', sans-serif;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(6px, 1.2vw, 14px);
    text-align: center;
    color: #fff;
    font-weight: 400;
    line-height: 1.12;
}

.page-title__jp {
    font-size: clamp(22px, 3.4vw, 36px);
    font-weight: 400;
    letter-spacing: 0.14em;
    text-shadow: 0 2px 26px rgba(0, 0, 0, 0.5);
}

.page-title__vn {
    font-size: clamp(30px, 5.8vw, 46px);
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-shadow: 0 2px 32px rgba(0, 0, 0, 0.55);
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
}

.about-content__wrap {
    box-sizing: border-box;
    background-size: cover;
    width: 100%;
    margin: 0 auto;
    padding: clamp(32px, 6vw, 32px) clamp(16px, 4vw, 32px);
    align-self: center;
}

.about-content__panel {
    text-align: center;
    padding: clamp(28px, 5vw, 32px) clamp(22px, 4.5vw, 28px);
    max-width: min(720px, 100%);
    color: #1a1a1a;
    margin: 30px auto;
}

.about-content__jpBrush {
    margin: 0 0 14px;
    font-family: 'BHNsAOTFKanteiryuStd', sans-serif;
    font-size: clamp(26px, 4vw, 36px);
    font-weight: 400;
    line-height: 1.2;
    color: #d12a2e;
    letter-spacing: 0.04em;
}

.about-content__rule {
    width: min(320px, 100%);
    height: 0;
    margin: 16px auto 16px;
    border: 0;
    border-bottom: 2px dashed #000;
}

.about-content__brand {
    margin: 0 0 clamp(22px, 3.5vw, 32px);
    font-family: 'BHNsAOTFKanteiryuStd', sans-serif;
    font-size: clamp(22px, 3.2vw, 30px);
    font-weight: 900;
    letter-spacing: 0.08em;
    line-height: 1.15;
    text-transform: uppercase;
    color: #d12a2e;
}

.about-content__copy {
    margin: 0;
    text-align: center;
}

.about-content__copy p {
    margin: 0 0 1.15em;
    font-size: clamp(14px, 1.35vw, 17px);
    line-height: 1.7;
    max-width: 42em;
    margin-left: auto;
    margin-right: auto;
}

.about-content__copy p:last-child {
    margin-bottom: 0;
}

.about-content__copy--vn strong {
    font-weight: 700;
    letter-spacing: 0.02em;
}

.about-content__split {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    width: 100%;
    overflow: hidden;
    border-radius: 2px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.about-content__splitPhoto {
    flex: 1 1 65%;
    min-width: 0;
    min-height: clamp(280px, 38vw, 680px);
    background: url(../images/about-tezukuri-banner.png) 100% center no-repeat;
    background-size: cover;
}

.about-content__splitRail {
    flex: 0 0 clamp(92px, 26%, 320px);
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    padding: clamp(14px, 2.2vw, 26px) clamp(10px, 1.6vw, 20px);
}

.about-content__splitRailInner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: clamp(8px, 1.4vw, 16px);
    max-height: 100%;
}

.about-content__splitLead {
    margin: 0;
    writing-mode: vertical-rl;
    -webkit-writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: clamp(11px, 2.05vw, 20px);
    font-weight: 500;
    letter-spacing: 0.18em;
    line-height: 1.75;
    color: var(--ume-orange);
}

.about-content__splitTitle {
    margin: 0;
    writing-mode: vertical-rl;
    -webkit-writing-mode: vertical-rl;
    text-orientation: mixed;
    font-family: 'BHNsAOTFKanteiryuStd', sans-serif;
    font-size: clamp(26px, 6vw, 70px);
    font-weight: 400;
    letter-spacing: 0.12em;
    line-height: 1.25;
    color: var(--ume-orange);
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.2);
}

/* ---------- About page: homemade sauces ---------- */
.about-sauce {
    margin-top: clamp(28px, 4.5vw, 48px);
    padding: clamp(36px, 6vw, 42px) clamp(16px, 4vw, 28px);
    box-sizing: border-box;
    background: url(../images/about-sauce-bg.png) center center no-repeat;
    background-size: cover;
    border-radius: 4px;
}

.about-sauce__inner {
    max-width: min(960px, 100%);
    margin: 0 auto;
}

.about-sauce__panel {
    text-align: center;
    padding: clamp(28px, 5vw, 48px) clamp(22px, 4vw, 40px);
    margin: 0 auto clamp(28px, 4vw, 40px);
    max-width: min(720px, 100%);
    background: url(../images/about-content-panel-bg.png) center center no-repeat;
    color: #1a1a1a;
}

.about-sauce__jpTitle {
    margin: 0 0 12px;
    font-family: 'BHNsAOTFKanteiryuStd', sans-serif;
    font-size: clamp(22px, 3.2vw, 32px);
    font-weight: 900;
    line-height: 1.25;
    color: #d12a2e;
    letter-spacing: 0.04em;
}

.about-sauce__rule--dash {
    width: min(300px, 88%);
    height: 0;
    margin: 0 auto 14px;
    border: 0;
    border-bottom: 2px dashed #000;
}

.about-sauce__vnTitle {
    margin: 0 0 clamp(16px, 2.2vw, 24px);
    font-family: 'BHNsAOTFKanteiryuStd', sans-serif;
    font-size: clamp(20px, 2.8vw, 28px);
    font-weight: 900;
    letter-spacing: 0.08em;
    line-height: 1.15;
    text-transform: uppercase;
    color: #d12a2e;
}

.about-sauce__text {
    margin: 0;
    font-size: clamp(14px, 1.35vw, 17px);
    line-height: 1.75;
    max-width: 40em;
    margin-left: auto;
    margin-right: auto;
}

.about-sauce__text--ja {
    margin-top: 0;
}

.about-sauce__rule--solid {
    width: min(240px, 72%);
    height: 0;
    margin: clamp(18px, 2.5vw, 26px) auto;
    border: 0;
    border-bottom: 1px solid #9e9e9e;
}

.about-sauce__cards {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(14px, 2vw, 22px);
}

.about-sauce__cardsRow {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: clamp(14px, 3.2vw, 50px);
    width: 100%;
    max-width: 920px;
}

.about-sauce__card {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: clamp(12px, 2vw, 20px);
    flex: 1 1 240px;
    max-width: 300px;
    min-width: 0;
    box-sizing: border-box;
    padding: 14px 16px 14px 20px;
    background: url(../images/sauce-item-bg.png) center center no-repeat;
    position: relative;
}

.about-sauce__cardText {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}

.about-sauce__cardJp {
    font-size: clamp(12px, 1.1vw, 14px);
    font-weight: 500;
    line-height: 1.35;
    color: #1a1a1a;
}

.about-sauce__cardVn {
    font-family: 'BHNsAOTFKanteiryuStd', sans-serif;
    font-size: clamp(14px, 1.25vw, 16px);
    font-weight: 700;
    line-height: 1.25;
    color: #d12a2e;
}

.about-sauce__cardIcon {
    flex: 0 0 auto;
    width: clamp(72px, 11vw, 92px);
    height: clamp(72px, 11vw, 92px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-sauce__cardIcon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    position: absolute;
}
/* ---------- Location page: intro panel ---------- */
.location-content {
    padding: clamp(36px, 6vw, 42px) clamp(16px, 4vw, 28px);
    box-sizing: border-box;
    background: url(../images/location-bg.png) center center no-repeat;
    background-size: cover;
    min-height: clamp(400px, 48vw, 560px);
    align-items: center;
    display: flex;
}

.location-content__inner {
    max-width: min(960px, 100%);
    margin: 0 auto;
}

/* ---------- Location page: gallery carousel ---------- */
.location-slider {
    margin: 0;
}

.location-split {
    display: flex;
    align-items: stretch;
    min-height: clamp(360px, 48vw, 560px);
}

.location-split__gallery {
    flex: 1 1 50%;
    min-width: 0;
}

.location-split__panel {
    flex: 1 1 50%;
    min-width: 0;
    display: flex;
    align-items: stretch;
    background: url(../images/location-panel-bg.png) center center no-repeat;
    background-size: cover;
    min-height: clamp(400px, 48vw, 560px);
}

.location-slider__viewport {
    position: relative;
    overflow: hidden;
    height: 100%;
    box-shadow: none;
}

.location-slider .location-slider__owl {
    position: relative;
    height: 100%;
}

.location-split__gallery .owl-stage-outer,
.location-split__gallery .owl-stage,
.location-split__gallery .owl-item,
.location-split__gallery .location-slider__slide {
    height: 100%;
}

.location-slider__slide,
.location-slider__slide img {
    height: 100%;
}

.location-slider__slide img {
    display: block;
    width: 100%;
    min-height: clamp(360px, 48vw, 560px);
    object-fit: cover;
}

.location-slider .location-slider__owl .owl-nav {
    position: absolute;
    inset: 0;
    margin: 25px 0;
    display: flex;
    align-items: end;
    justify-content: space-between;
    padding: 0 clamp(6px, 2vw, 18px);
    pointer-events: none;
    z-index: 2;
}

.location-slider .location-slider__owl .owl-nav .owl-prev,
.location-slider .location-slider__owl .owl-nav .owl-next {
    pointer-events: auto;
    box-sizing: border-box;
    width: clamp(40px, 9vw, 64px);
    height: clamp(40px, 9vw, 64px);
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 50%;
    font-size: 0;
    line-height: 0;
    color: transparent;
    cursor: pointer;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: opacity 160ms ease, transform 160ms ease;
}

.location-slider .location-slider__owl .owl-nav .owl-prev {
    background-image: url(../images/slider-arrow-left.png);
}

.location-slider .location-slider__owl .owl-nav .owl-next {
    background-image: url(../images/slider-arrow-right.png);
}

.location-slider .location-slider__owl .owl-nav .owl-prev:hover,
.location-slider .location-slider__owl .owl-nav .owl-next:hover,
.location-slider .location-slider__owl .owl-nav .owl-prev:focus-visible,
.location-slider .location-slider__owl .owl-nav .owl-next:focus-visible {
    background-color: transparent;
    opacity: 0.88;
    transform: scale(1.04);
}

.location-slider .location-slider__owl .owl-nav .disabled {
    opacity: 0.35;
    cursor: default;
    transform: none;
}

/* ---------- Location page: branch + map widget ---------- */
.location-widget {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 100%;
    align-content: center;
}

.location-widget__main {
    flex: 1 1 auto;
    min-width: 0;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: clamp(14px, 2.4vw, 24px);
    padding: clamp(20px, 3.5vw, 40px) clamp(16px, 3vw, 28px);
    box-sizing: border-box;
}

.location-widget__picker {
    position: relative;
    z-index: 2;
    text-align: center;
}

.location-widget__trigger {
    box-sizing: border-box;
    width: auto;
    max-width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0 auto;
    padding: 0;
    border: 0;
    background: transparent;
    color: #fff;
    font-family: 'BHNsAOTFKanteiryuStd', sans-serif;
    font-size: clamp(16px, 2vw, 26px);
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.2;
    text-align: center;
    cursor: pointer;
    -webkit-text-stroke: 6px rgba(233, 85, 40, 1);
    paint-order: stroke fill;
    transition: color 160ms ease, text-shadow 160ms ease;
}

.location-widget__trigger:hover,
.location-widget__trigger:focus-visible,
.location-widget.is-open .location-widget__trigger {
    color: #fff7e8;
    text-shadow: 0 0 18px rgba(255, 160, 90, 1), 0 0 32px rgba(233, 85, 40, 0.75), 0 2px 12px rgba(0, 0, 0, 0.6);
}

.location-widget__trigger:focus-visible {
    outline: 2px solid var(--ume-orange);
    outline-offset: 4px;
}

.location-widget__label {
    flex: 0 1 auto;
    min-width: 0;
}

.location-widget__chev {
    flex: 0 0 auto;
    font-size: 14px;
    color: var(--ume-orange);
    -webkit-text-stroke: 0;
    paint-order: normal;
    text-shadow: none;
    transition: transform 180ms ease;
}

.location-widget.is-open .location-widget__chev {
    transform: rotate(180deg);
}

.location-widget__list {
    list-style: none;
    margin: clamp(8px, 1.2vw, 12px) auto 0;
    padding: 0;
    max-width: min(100%, 420px);
    background: var(--ume-orange);
    border: 2px solid #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    position: absolute;
    left: 0;
    right: 0;
}

.location-widget__list[hidden] {
    display: none;
}

.location-widget__option {
    box-sizing: border-box;
    width: 100%;
    display: block;
    margin: 0;
    padding: clamp(10px, 1.6vw, 14px) clamp(12px, 2vw, 18px);
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    background: transparent;
    color: #fff;
    font-family: 'BHNsAOTFKanteiryuStd', sans-serif;
    font-size: clamp(12px, 1.35vw, 15px);
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.25;
    text-align: left;
    cursor: pointer;
    transition: background-color 160ms ease;
}

.location-widget__option:last-child {
    border-bottom: 0;
}

.location-widget__option:hover,
.location-widget__option:focus-visible {
    background: rgba(255, 255, 255, 0.12);
}

.location-widget__option.is-active {
    background: rgba(0, 0, 0, 0.08);
}

.location-widget__mapArea {
    position: relative;
    flex: 0 1 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(12px, 2vw, 18px);
}

.location-widget__placeholder {
    box-sizing: border-box;
    width: 461px;
    height: 300px;
    margin: 0 auto;
    background: url(../images/map-bg.png) no-repeat;
    background-size: 100%;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.location-widget__placeholder[hidden] {
    display: none;
}

.location-widget__mapFrame {
    box-sizing: border-box;
    width: 500px;
    height: 326px;
    margin: 0 auto;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    background: url(../images/map-bg.png) no-repeat;
    background-size: 100%;
    padding: 10px;
}

.location-widget__mapFrame[hidden] {
    display: none;
}

.location-widget__iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.location-widget__caption {
    margin: 0;
    padding: 0;
    background: transparent;
    font-family: 'BHNsYuseiMagic', sans-serif;
    font-size: clamp(16px, 2vw, 26px);
    font-weight: 800;
    letter-spacing: 0.06em;
    color: #fff;
    text-align: center;
    -webkit-text-stroke: 6px rgba(233, 85, 40, 1);
    paint-order: stroke fill;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* ---------- Location page: map (legacy) ---------- */
.location-map {
    box-sizing: border-box;
    padding: clamp(32px, 5vw, 36px) clamp(16px, 4vw, 28px);
}

.location-map__inner {
    max-width: min(750px, 100%);
    margin: 0 auto;
    text-align: center;
}

.location-map__title {
    margin: 0 0 clamp(14px, 2.2vw, 22px);
    font-family: 'BHNsAOTFKanteiryuStd', sans-serif;
    font-size: clamp(16px, 2.2vw, 22px);
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1.35;
    color: #8f3a2e;
    display: none;
}

.location-map__titleSep {
    margin: 0 0.2em;
    font-weight: 400;
    opacity: 0.85;
}

.location-map__frame {
    box-sizing: border-box;
    max-width: 100%;
    margin: 0 auto;
    border: 2px solid var(--ume-orange);
    border-radius: 2px;
    overflow: hidden;
    background: #e5e0d8;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
}

.location-map__ratio {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: min(52vh, 520px);
    margin: 0 auto;
    background: #ddd8cf;
}

.location-map__iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.location-map__address {
    margin: clamp(12px, 2vw, 18px) 0 0;
    font-size: clamp(13px, 1.25vw, 15px);
    line-height: 1.55;
    color: #3d3d3d;
    display: none;
}

.location-map__link {
    display: inline-block;
    margin-top: 10px;
    font-size: clamp(13px, 1.2vw, 15px);
    font-weight: 600;
    color: var(--ume-orange);
    text-decoration: underline;
    text-underline-offset: 3px;
    display: none;
}

.location-map__link:hover,
.location-map__link:focus-visible {
    color: #c94a1f;
}

.location-map__ratio img {
    width: 100%;
}
/* ---------- Promo page: intro panel ---------- */
.promo-content {
    padding: clamp(28px, 5vw, 44px) clamp(12px, 3vw, 24px) 0;
    box-sizing: border-box;
}

.promo-content__grid {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: clamp(28px, 4vw, 48px);
    max-width: 1120px;
    margin: 0 auto;
}

.promo-content__col--news {
    flex: 1 1 min(100%, 520px);
    min-width: 0;
}

.promo-content__col--follow {
    flex: 0 1 clamp(280px, 42%, 520px);
    min-width: 0;
    margin-left: auto;
}

#promo .promo-content__slider {
    display: none;
    flex: 1 1 100%;
    width: 100%;
    margin: clamp(20px, 3vw, 32px) 0;
}

@media (max-width: 991.98px) {
    #promo .promo-content__slider {
        display: block;
    }
}

.promo-content__blockHead {
    text-align: center;
    margin-bottom: clamp(18px, 3vw, 26px);
}

.promo-content__blockTitle {
    margin: 0 0 10px;
    font-family: 'BHNsAOTFKanteiryuStd', sans-serif;
    font-size: clamp(28px, 4.2vw, 38px);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--ume-red);
    line-height: 1.15;
}

.promo-content__rule {
    height: 0;
    border: 0;
    border-bottom: 2px dashed #111;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.promo-news {
    list-style: none;
    margin: 0;
    padding: 0;
}

.promo-news__item {
    display: flex;
    flex-wrap: nowrap;
    gap: clamp(14px, 2.4vw, 22px);
    padding: clamp(16px, 2.5vw, 22px) 0;
    border-bottom: 2px dashed #111;
    align-items: flex-start;
}

.promo-news__item:first-child {
    padding-top: 0;
}

.promo-news__item--last {
    border-bottom: 0;
    padding-bottom: clamp(20px, 3vw, 28px);
}

.promo-news__thumb {
    flex: 0 0 clamp(120px, 28vw, 200px);
    max-width: 200px;
    border: 2px solid var(--ume-red);
    box-sizing: border-box;
    overflow: hidden;
    line-height: 0;
    align-self: flex-start;
}

.promo-news__thumb img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 4 / 3;
}

.promo-news__body {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
}

.promo-news__title {
    margin: 0;
    font-size: clamp(15px, 1.55vw, 18px);
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    line-height: 1.25;
}

.promo-news__title a {
    font-family: 'BHNsAOTFKanteiryuStd', sans-serif;
    color: var(--ume-red);
    text-decoration: none;
}

.promo-news__title a:hover,
.promo-news__title a:focus-visible {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.promo-news__excerpt {
    margin: 0;
    font-size: clamp(13px, 1.2vw, 15px);
    line-height: 1.55;
    color: #111;
}

.promo-news__more {
    font-family: 'BHNsAOTFKanteiryuStd', sans-serif;
    align-self: flex-end;
    margin-top: auto;
    padding: 4px 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #111;
    text-decoration: none;
}

.promo-news__more:hover,
.promo-news__more:focus-visible {
    color: #fff;
    background-color: var(--ume-orange);
}

/* Promo page: tin tức chi tiết (modal) */
body.promo-modal-open {
    overflow: hidden;
}

.promo-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(14px, 4vw, 28px);
    box-sizing: border-box;
    background: url(../images/about-img.jpeg) center center no-repeat;
    background-size: cover;
}

.promo-modal[hidden] {
    display: none !important;
}

.promo-modal__backdrop {
    position: absolute;
    inset: 0;
}

.promo-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(540px, 100%);
    max-height: min(90vh, 720px);
    display: flex;
    flex-direction: column;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
    background: #fcf8ee;
    overflow: auto;
    box-sizing: border-box;
    padding: 15px;
}

.promo-modal__media {
    position: relative;
    flex: 0 0 auto;
    line-height: 0;
    padding: 10px;
}

.promo-modal__cover {
    width: 100%;
    height: auto;
    max-height: min(42vh, 220px);
    display: block;
    object-fit: cover;
    aspect-ratio: 16 / 10;
}

.promo-modal__close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    transition: opacity 0.15s ease, transform 0.15s ease;
}

.promo-modal__close img {
    width: 100%;
    height: 100%;
    display: block;
}

.promo-modal__close:hover,
.promo-modal__close:focus-visible {
    opacity: 0.88;
    transform: scale(1.04);
}
    
.promo-modal__body {
    flex: 1 1 auto;
    padding: clamp(18px, 4vw, 26px) clamp(16px, 4vw, 24px) clamp(22px, 4vw, 28px);
    text-align: center;
    background: #fcf8ee;
}

.promo-modal__title {
    margin: 0 0 14px;
    font-family: 'BHNsAOTFKanteiryuStd', sans-serif;
    font-size: clamp(17px, 4.2vw, 22px);
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.25;
    color: var(--ume-red);
}

.promo-modal__rule {
    height: 0;
    border: 0;
    border-bottom: 2px dashed rgba(17, 17, 17, 0.35);
    margin: 0 auto 16px;
    max-width: 100%;
}

.promo-modal__text {
    margin: 0 0 12px;
    font-size: clamp(13px, 2.8vw, 15px);
    line-height: 1.65;
    color: #111;
}

.promo-modal__text--ja {
    margin-bottom: 0;
    font-size: clamp(12px, 2.5vw, 14px);
    line-height: 1.7;
}

.promo-content__pager {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.promo-content__page {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    box-sizing: border-box;
    border: 2px solid var(--ume-red);
    font-family: 'BHNsYuseiMagic', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--ume-red);
    text-decoration: none;
    line-height: 1;
    background: #fff;
}

.promo-content__page--current {
    background: var(--ume-red);
    color: #fff;
    cursor: default;
}

.promo-content__page:not(.promo-content__page--current):hover,
.promo-content__page:not(.promo-content__page--current):focus-visible {
    background: rgba(188, 12, 29, 0.08);
}

.promo-content__fanline {
    margin: 0 0 clamp(14px, 2vw, 18px);
    padding: 12px 14px;
    text-align: center;
    font-size: clamp(13px, 1.15vw, 18px);
    font-weight: 600;
    color: #111;
    background: #e5e0d6;
    border-radius: 2px;
    border: 1px solid;
}

.promo-content__fanwrap {
    display: block;
    line-height: 0;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.promo-content__fanimg {
    width: 100%;
    height: auto;
    display: block;
}

.about-content__header {
    position: relative;
}

.about-content__backBtn {
    display: inline-block;
    font-size: clamp(13px, 1.2vw, 15px);
    font-weight: 600;
    color: #111;
    position: absolute;
    top: 0;
    left: 0;
    width: 32px;
    height: 32px;
    z-index: 2;
}

.about-content__brand {
    margin-bottom: 10px !important;
}

.about-content__backBtn:hover,
.about-content__backBtn:focus-visible {
    opacity: 0.88;
    transform: scale(1.04);
}

.about-content__backBtn img {
    width: 100%;
    height: 100%;
    display: block;
}

/* ---------- Membership page: intro panel ---------- */
.membership-content {
    margin: 0;
    padding: clamp(24px, 4vw, 48px) clamp(18px, 3vw, 40px);
    background: url(../images/membership-bg.png) center center / cover no-repeat;
    border-radius: 2px;
    box-sizing: border-box;
}

.membership-content__inner {
    max-width: 750px;
    margin: 0 auto;
}

.membership-content__hero {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: clamp(18px, 2.5vw, 28px);
    max-width: calc(100% - 160px);
    margin: 25px auto;
}

.membership-content__title {
    margin: 0 0 6px;
    font-family: 'BHNsAOTFKanteiryuStd', sans-serif;
    font-size: clamp(22px, 2.8vw, 32px);
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--ume-red);
    line-height: 1.15;
}

.membership-content__subtitle {
    margin-top: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--ume-ink);
}

.membership-content__qr {
    display: flex;
    flex: 0 0 auto;
    line-height: 0;
    gap: 25px;
    text-align: center;
}

.membership-content__qr img {
    display: block;
    width: clamp(100px, 22vw, 110px);
    height: auto;
    aspect-ratio: 1;
}

.membership-content__card {
    background: url(../images/about-content-panel-bg.png) center center no-repeat;
    overflow: hidden;
}

.membership-content__tabInput {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 0;
    height: 0;
}

.membership-content__tabBar {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.membership-content__tab {
    margin: 0;
    padding: 14px 8px;
    text-align: center;
    font-family: 'BHNsAOTFKanteiryuStd', sans-serif;
    font-size: clamp(11px, 1.35vw, 15px);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    border: solid var(--ume-red);
    border-width: 2px;
    box-sizing: border-box;
    transition: background 0.2s ease, color 0.2s ease;
}

.membership-content__tab--benefits {
    background: var(--ume-red);
    color: #fff;
    border-bottom-width: 0;
}

.membership-content__tab--policy {
    color: var(--ume-red);
    border-bottom-width: 2px;
}

#membershipTabPolicy:checked ~ .membership-content__tabBar .membership-content__tab--benefits {
    background: transparent;
    color: var(--ume-red);
    border-bottom-width: 2px;
}

#membershipTabPolicy:checked ~ .membership-content__tabBar .membership-content__tab--policy {
    background: var(--ume-red);
    color: #fff;
    border-bottom-width: 0;
}

.membership-content__sheet {
    display: none;
    padding: clamp(20px, 3vw, 32px) clamp(16px, 2.5vw, 28px) clamp(22px, 3vw, 36px);
    border-top: 1px solid rgba(188, 12, 29, 0.15);
}

#membershipTabBenefits:checked ~ .membership-content__sheet--benefits,
#membershipTabPolicy:checked ~ .membership-content__sheet--policy {
    display: block;
}

.membership-content__benefits {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: clamp(18px, 2.5vw, 26px);
}

.membership-content__benefitRow {
    display: grid;
    grid-template-columns: minmax(120px, 200px) 1fr;
    gap: 16px 24px;
    align-items: start;
}

.membership-content__benefitIconCol {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
}

.membership-content__ico {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ume-red);
}

.membership-content__benefitLabel {
    font-family: 'BHNsAOTFKanteiryuStd', sans-serif;
    font-size: clamp(12px, 1.15vw, 14px);
    font-weight: 600;
    color: var(--ume-ink);
    line-height: 1.35;
    max-width: 180px;
}

.membership-content__bullets {
    margin: 0;
    padding: 4px 0 0;
    list-style: none;
    font-size: clamp(13px, 1.2vw, 15px);
    line-height: 1.55;
    color: var(--ume-ink);
}

.membership-content__bullets li {
    position: relative;
    padding-left: 1.1em;
    margin-bottom: 0.45em;
}

.membership-content__bullets li:last-child {
    margin-bottom: 0;
}

.membership-content__bullets li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    background: var(--ume-red);
}

.membership-content__bullets--policy {
    padding-top: 0;
}

.membership-content__how {
    margin-top: clamp(22px, 3vw, 34px);
    text-align: center;
}

.membership-content__howTitle {
    margin: 0 0 clamp(16px, 2vw, 22px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'BHNsAOTFKanteiryuStd', sans-serif;
    font-size: clamp(14px, 1.5vw, 16px);
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--ume-orange);
    text-align: left;
}

.membership-content__howIco {
    display: block;
    color: var(--ume-orange);
}

.membership-content__howGrid {
    margin: 0 0 clamp(14px, 2vw, 20px);
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(10px, 4vw, 20px);
}

.membership-content__howItem {
    flex: 0 1 160px;
    max-width: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.membership-content__howGrid .membership-content__howItem:last-child {
    min-width: 190px;
    max-width: 190px;
}

.membership-content__howPin {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    font-size: 28px;
    color: var(--ume-orange);
}

.membership-content__howSocial {
    display: block;
    line-height: 0;
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.15s ease, opacity 0.15s ease;
}

.membership-content__howSocial:hover,
.membership-content__howSocial:focus-visible {
    transform: scale(1.06);
    opacity: 0.92;
}

.membership-content__howTxt {
    font-size: clamp(12px, 1.15vw, 14px);
    font-weight: 600;
    line-height: 1.4;
    color: var(--ume-ink);
}

.membership-content__note {
    margin: 0 auto;
    max-width: 640px;
    font-size: clamp(11px, 1.05vw, 13px);
    font-weight: 600;
    line-height: 1.5;
    color: var(--ume-orange);
}

/* ---------- Menu page: content ---------- */
#menu .page-title {
    padding: clamp(20px, 8vw, 120px) clamp(16px, 3vw, 32px);
}

/* ---------- Menu page: menu book carousel ---------- */
.menu-content {
    margin: 0;
    padding: 40px 0;
    padding-bottom: 0;
    box-sizing: border-box;
}

.menu-content__viewport {
    position: relative;
    margin: 0 130px;
}

.menu-content .menu-content__owl {
    position: relative;
}

.menu-content__slide {
    box-sizing: border-box;
}

.menu-content__slide img {
    display: block;
    width: 100%;
    height: clamp(280px, 52vw, 720px);
    object-fit: contain;
}

.menu-content .menu-content__owl .owl-nav {
    position: absolute;
    inset: 0;
    margin: 20px 0;
    display: flex;
    align-items: end;
    justify-content: space-between;
    padding: 0 clamp(4px, 1.5vw, 14px);
    pointer-events: none;
    z-index: 2;
}

.menu-content .menu-content__owl .owl-nav .owl-prev,
.menu-content .menu-content__owl .owl-nav .owl-next {
    position: relative;
    pointer-events: auto;
    box-sizing: border-box;
    width: clamp(40px, 9vw, 72px);
    height: clamp(40px, 9vw, 72px);
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 50%;
    font-size: 0;
    line-height: 0;
    color: transparent;
    cursor: pointer;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: opacity 160ms ease, transform 160ms ease;
}

.menu-content .menu-content__owl .owl-nav .owl-prev {
    background-image: url(../images/slider-arrow-left-2.png);
    left: -15px;
}

.menu-content .menu-content__owl .owl-nav .owl-next {
    background-image: url(../images/slider-arrow-right-2.png);
    right: -15px;
}

.menu-content .menu-content__owl .owl-nav .owl-prev:hover,
.menu-content .menu-content__owl .owl-nav .owl-next:hover,
.menu-content .menu-content__owl .owl-nav .owl-prev:focus-visible,
.menu-content .menu-content__owl .owl-nav .owl-next:focus-visible {
    background-color: transparent;
    opacity: 0.88;
    transform: scale(1.04);
}

.menu-content .menu-content__owl .owl-nav .disabled {
    opacity: 0.35;
    cursor: default;
    transform: none;
}

/* ---------- Booking page: content ---------- */
#booking .page-title {
    padding: clamp(20px, 8vw, 100px) clamp(16px, 3vw, 32px);
}

.booking-content {
    margin: 0;
    padding: 40px 0;
    padding-bottom: 0;
    box-sizing: border-box;
}

.booking-content__title {
    text-align: center;
    font-family: 'BHNsAOTFKanteiryuStd', sans-serif;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--ume-red);
    margin: 50px 0;
}

.booking-content__titleText {
    font-family: 'BHNsAOTFKanteiryuStd', sans-serif;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--ume-red);
}

.booking-content__subtitle {
    margin-top: 8px;
    font-family: 'BHNsAOTFKanteiryuStd', sans-serif;
    font-size: 32px;
    color: var(--ume-red);
    letter-spacing: 0.12em;
}

.booking-content__form {
    position: relative;
    overflow: hidden;
    padding: clamp(28px, 10vw, 56px) clamp(16px, 10vw, 40px);
    box-sizing: border-box;
    background-color: #2a1810;
}

.booking-content__formMarquee {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.booking-content__formMarqueeTrack {
    display: flex;
    width: max-content;
    height: 100%;
    animation: bookingFormMarquee 50s linear infinite;
    will-change: transform;
}

.booking-content__formMarqueeTrack img {
    height: 100%;
    width: auto;
    flex-shrink: 0;
    display: block;
    object-fit: cover;
}

@keyframes bookingFormMarquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .booking-content__formMarqueeTrack {
        animation: none;
    }
}

.booking-content__formInner {
    position: relative;
    z-index: 1;
    max-width: 540px;
    margin: 0 auto;
    padding: clamp(28px, 4vw, 28px) clamp(22px, 4vw, 40px) clamp(32px, 5vw, 28px);
    box-sizing: border-box;
    background: #fff8eb;
    border: 2px solid var(--ume-orange);
    box-shadow: var(--ume-shadow);
    transition: opacity 0.3s ease;
}

body.booking-success-open .booking-content__formInner {
    pointer-events: none;
}

.booking-form__head {
    text-align: center;
    margin-bottom: clamp(24px, 4vw, 26px);
}

.booking-form__jp {
    margin: 0 0 14px;
    font-family: 'BHNsAOTFKanteiryuStd', sans-serif;
    font-size: clamp(15px, 2.4vw, 21px);
    line-height: 1.5;
    color: var(--ume-red);
    font-weight: 600;
}

.booking-form__rule {
    height: 0;
    margin: 0 auto 14px;
    max-width: 420px;
    border: 0;
    border-top: 1px dashed rgba(0, 0, 0, 0.28);
}

.booking-form__lead {
    margin: 0;
    font-size: clamp(14px, 2.2vw, 16px);
    color: var(--ume-ink);
    line-height: 1.45;
}

.booking-form__grid {
    display: grid;
    grid-template-columns: repeat(10, minmax(0, 1fr));
    gap: 22px 28px;
    margin-bottom: 8px;
}

.booking-form__grid > .booking-field:nth-child(1) {
    grid-column: span 6;
}

.booking-form__grid > .booking-field:nth-child(2) {
    grid-column: span 4;
}

.booking-form__grid > .booking-field:nth-child(3) {
    grid-column: span 6;
}

.booking-form__grid > .booking-field:nth-child(4) {
    grid-column: span 4;
}

.booking-form__grid > .booking-field:nth-child(5) {
    grid-column: span 6;
}

.booking-form__grid > .booking-field:nth-child(6) {
    grid-column: span 4;
}

.booking-field {
    min-width: 0;
    position: relative;
}

.booking-field--full {
    margin-top: 14px;
}

.booking-field__label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    color: var(--ume-ink);
    font-weight: 400;
}

.booking-field__input {
    font-family: 'BHNsYuseiMagic', sans-serif;
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 8px 0 10px;
    border: 0;
    border-bottom: 1px solid #1a1a1a;
    border-radius: 0;
    background: transparent;
    font-size: 15px;
    font-weight: 700;
    color: var(--ume-ink);
    outline: none;
    transition: border-color 0.15s ease;
}

.booking-field__input::placeholder {
    font-weight: 400;
    color: rgba(17, 17, 17, 0.45);
}

.booking-field__input:focus {
    border-bottom-color: var(--ume-orange);
}

.booking-field__input--date {
    font-weight: 700;
    padding-right: 28px;
    min-height: 38px;
    appearance: none;
    -webkit-appearance: none;
}

.booking-field__input--date::-webkit-calendar-picker-indicator {
    opacity: 0;
    position: absolute;
    right: 0;
    width: 36px;
    height: 100%;
    cursor: pointer;
}

.booking-field__controlWrap {
    position: relative;
    border-bottom: 1px solid #1a1a1a;
}

.booking-field__controlWrap::after {
    content: '';
    position: absolute;
    right: 4px;
    bottom: 12px;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 7px solid var(--ume-orange);
    pointer-events: none;
}

.booking-field__controlWrap--date::after {
    bottom: 14px;
}

.booking-field__select {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 8px 28px 10px 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    font-family: 'BHNsYuseiMagic', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--ume-ink);
    outline: none;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.booking-field__select:focus {
    color: var(--ume-ink);
}

.booking-field--select .booking-field__controlWrap:focus-within {
    border-bottom-color: var(--ume-orange);
}

.booking-field__controlWrap--date .booking-field__input {
    border-bottom: 0;
    padding-right: 32px;
}

.booking-field__controlWrap--date:focus-within {
    border-bottom-color: var(--ume-orange);
}

.booking-form__actions {
    margin-top: clamp(28px, 4vw, 40px);
    text-align: center;
}

.booking-form__submit {
    display: inline-block;
    margin: 0;
    padding: 10px 15px;
    border: 0;
    background: none;
    cursor: pointer;
    font-family: 'BHNsAOTFKanteiryuStd', sans-serif;
    font-size: clamp(18px, 2.8vw, 22px);
    font-weight: 900;
    letter-spacing: 0.08em;
    color: var(--ume-red);
    text-transform: uppercase;
    transition: opacity 0.15s ease, transform 0.15s ease;
}

.booking-form__submit:hover,
.booking-form__submit:focus-visible {
    opacity: 0.88;
    outline: none;
    color: #fff;
    background: var(--ume-red);
}

.booking-form__submit:active {
    transform: translateY(1px);
}

/* ---------- Booking confirmation modal ---------- */

body.booking-modal-open {
    overflow: hidden;
}

.booking-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 16px;
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s ease, visibility 0.22s ease;
}

.booking-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.booking-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(20, 12, 8, 0.55);
    cursor: pointer;
}

.booking-modal__wrap {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 480px;
    max-height: min(92vh, 720px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.booking-modal__panel {
    position: relative;
    margin: 0;
    padding: clamp(26px, 4vw, 24px) clamp(22px, 5vw, 22px) clamp(28px, 5vw, 26px);
    box-sizing: border-box;
    background: #fff8eb;
    border: 3px solid var(--ume-orange);
    box-shadow: var(--ume-shadow);
}

.booking-modal__back {
    position: absolute;
    top: 24px;
    left: 20px;
    width: 36px;
    height: 36px;
    margin: 0;
    padding: 0;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity 0.15s ease, transform 0.15s ease;
    background: none;
}

.booking-modal__back img {
    width: 36px;
    height: 36px;
    display: block;
    object-fit: contain;
}

.booking-modal__back:hover,
.booking-modal__back:focus-visible {
    opacity: 0.92;
    outline: none;
}

.booking-modal__back:active {
    transform: scale(0.96);
}

.booking-modal__header {
    text-align: center;
    margin-bottom: 22px;
}

.booking-modal__header h2 {
    margin: 0 0 14px;
    font-family: 'BHNsAOTFKanteiryuStd', sans-serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--ume-red);
}

.booking-modal__header .booking-modal__rule {
    height: 0;
    margin: 0 auto 14px;
    max-width: 320px;
    border: 0;
    border-top: 2px dashed rgba(0, 0, 0, 1);
}

.booking-modal__body {
    margin-top: 8px;
}

.booking-modal__block {
    margin-bottom: 18px;
}

.booking-modal__cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 20px;
    margin-bottom: 18px;
}

.booking-modal__block--half {
    margin-bottom: 0;
}

.booking-modal__lbl {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    color: var(--ume-ink);
    font-weight: 400;
}

.booking-modal__val {
    margin: 0;
    padding-bottom: 8px;
    font-family: 'BHNsAOTFKanteiryuStd', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--ume-red);
    border-bottom: 2px solid var(--ume-red);
    line-height: 1.35;
    word-break: break-word;
}

.booking-modal__policy {
    margin-top: 22px;
    margin-bottom: 8px;
}

.booking-modal__policyTitle {
    margin: 0 0 10px;
    font-family: 'BHNsAOTFKanteiryuStd', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--ume-orange);
}

.booking-modal__policyText {
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
    color: var(--ume-ink);
}

.booking-modal__actions {
    margin-top: 26px;
    text-align: center;
}

.booking-modal__confirm {
    margin: 0;
    padding: 10px 15px;
    border: 0;
    background: none;
    cursor: pointer;
    font-family: 'BHNsAOTFKanteiryuStd', sans-serif;
    font-size: clamp(20px, 4vw, 24px);
    font-weight: 900;
    letter-spacing: 0.06em;
    color: var(--ume-red);
    text-transform: uppercase;
    transition: opacity 0.15s ease;
}

.booking-modal__confirm:hover,
.booking-modal__confirm:focus-visible {
    opacity: 0.88;
    outline: none;
    color: #fff;
    background: var(--ume-red);
}

@media (max-width: 480px) {
    .booking-modal__cols {
        grid-template-columns: 1fr 1fr;
    }
}

/* ---------- Booking success modal ---------- */

.booking-modal--success {
    z-index: 1210;
}

.booking-modal--success .booking-modal__backdrop {
    background: rgba(0, 0, 0, 0.68);
}

.booking-modal__wrap--success {
    max-width: min(92vw, 440px);
    overflow: visible;
}

.booking-success {
    position: relative;
    width: 100%;
    line-height: 0;
}

.booking-success__shape {
    display: block;
    width: 100%;
    height: auto;
}

.booking-success__content {
    position: absolute;
    top: 23%;
    left: 0;
    right: 0;
    margin: auto;
    width: 65%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    outline: none;
    line-height: normal;
    box-sizing: border-box;
}

.booking-success__title {
    margin: 0 0 10px;
    font-family: 'BHNsAOTFKanteiryuStd', sans-serif;
    font-size: clamp(26px, 3.6vw, 32px);
    font-weight: 900;
    letter-spacing: 0.04em;
    line-height: 1.3;
    text-transform: uppercase;
    color: #ffffff;
}

.booking-success__rule {
    width: 100%;
    height: 0;
    margin: 0 0 14px;
    border: 0;
    border-top: 1px dashed rgba(255, 255, 255, 0.9);
}

.booking-success__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: #ffffff;
    box-sizing: border-box;
}

.booking-success__check {
    display: block;
    flex-shrink: 0;
}

.booking-success__text {
    margin: 0;
    font-size: clamp(13px, 2.8vw, 16px);
    line-height: 1.55;
    color: #ffffff;
    font-weight: 400;
}

.booking-success__line {
    display: block;
}

@media (max-width: 480px) {
    .booking-modal__wrap--success {
        max-width: min(88vw, 360px);
    }
}