*, *::before, *::after { box-sizing: border-box; }
body { margin: 0; background: #fff; font-family: 'Noto Sans JP', sans-serif; }

/* ===== PAGE HERO ===== */
.page-hero { position: relative; width: 100%; aspect-ratio: 1920 / 480; overflow: hidden; }
.page-hero__bg { position: absolute; inset: 0; pointer-events: none; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.page-hero__overlay { position: absolute; inset: 0; background: rgba(0,0,0,.35); }
.page-hero__text { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; color: #fff; text-align: center; }
.page-hero__title { margin: 0; font-family: 'Noto Sans JP', sans-serif; font-weight: 700; font-size: 64px; line-height: 1.7; color: #fff; white-space: nowrap; }
.page-hero__subtitle { margin: 0; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 40px; line-height: 1.7; letter-spacing: 2px; color: #fff; white-space: nowrap; }
@media (max-width: 767px) {
    .page-hero { aspect-ratio: 16 / 9; }
    .page-hero__title { font-size: 36px; }
    .page-hero__subtitle { font-size: 22px; letter-spacing: 1px; }
}

/* ===== NAV ===== */
.nav {width: 100%;background: #fff;padding: 40px 0 112px;}
.nav__list { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 80px; list-style: none; margin: 0; padding: 0; }
.nav__item { flex: 0 0 auto; }
.nav__link,
.nav__link:hover,
.nav__link:focus,
.nav__link:visited,
.nav__link:active { display: flex; flex-direction: column; align-items: center; padding-bottom: 4px; text-decoration: none; }
.nav__ja { font-family: "Noto Sans JP", sans-serif; font-weight: 700; font-size: 32px; line-height: 1.7; color: #e4e4e4; transition: color .25s ease; }
.nav__en { position: relative; font-family: "Montserrat", sans-serif; font-weight: 700; font-size: 20px; line-height: 1.7; letter-spacing: 1px; color: #e4e4e4; transition: color .25s ease; }
.nav__en::after { content: attr(data-text); position: absolute; inset: 0; background: linear-gradient(to right, #772583, #a04aac); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; opacity: 0; transition: opacity .25s ease; }
.nav__link:hover .nav__ja { color: #231f20; }
.nav__link:hover .nav__en::after { opacity: 1; }
.nav__link--active .nav__ja { color: #231f20; }
.nav__link--active .nav__en::after { opacity: 1; }
@media (max-width: 768px) {
    .nav { padding: 20px 0; }
    .nav__list { gap: 20px; }
    .nav__ja { font-size: 18px; }
    .nav__en { font-size: 11px; }
}

/* ===== BREAKFAST ===== */
.breakfast { display: flex; align-items: stretch; width: 100%; max-width: 1920px; margin: 0 auto; }
.breakfast__text {position: relative;flex: 0 0 50%;min-width: 0;padding: 64px 56px 64px 21.8vw;box-sizing: border-box;overflow: hidden;box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);}
.breakfast__bg { position: absolute; inset: 0; pointer-events: none; }
.breakfast__bg img {width: 100%;height: 100%;object-fit: cover;display: block;}
.breakfast__overlay { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.3); }
.breakfast__content {position: relative;display: flex;flex-direction: column;gap: 16px;width: 100%;max-width: 485px;color: #fff;}
.breakfast__heading { display: flex; flex-direction: column; padding-bottom: 8px; }
.breakfast__title { margin: 0; font-family: 'Noto Sans JP', sans-serif; font-weight: 700; font-size: 32px; line-height: 1.7; color: #fff; }
.breakfast__subtitle { margin: 0; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 20px; line-height: 1.7; letter-spacing: 1px; color: #fff; }
.breakfast__description { margin: 0; font-family: 'Noto Sans JP', sans-serif; font-weight: 700; font-size: 20px; line-height: 1.7; color: #fff; }
.breakfast__hours {display: flex;align-items: center;flex-wrap: wrap;gap: 16px;width: fit-content;min-height: 100px;padding: 32px;box-sizing: border-box;background: #e4e4e4;color: #211104;font-weight: 700;font-size: 20px;line-height: 1.7;}
.breakfast__hours-label { font-family: 'Noto Sans JP', sans-serif; }
.breakfast__hours-time { font-family: 'Montserrat', sans-serif; letter-spacing: 1px; }
.breakfast__image { flex: 0 0 50%; position: relative; align-self: stretch; }
.breakfast__image .meal__image-frame { position: absolute; inset: 0; aspect-ratio: auto; overflow: hidden; user-select: none; -webkit-user-select: none; }
.breakfast__image .meal__track { display: flex; height: 100%; will-change: transform; }
.breakfast__image .meal__slide { flex: 0 0 100%; min-width: 0; height: 100%; }
.breakfast__image .meal__slide img {width: 100%;height: 100%;object-fit: cover;display: block;pointer-events: none;-webkit-user-drag: none;}
.breakfast__image .meal__dots { position: absolute; right: 42px; bottom: -16px; transform: translateY(100%); display: flex; justify-content: flex-end; gap: 10px; padding: 0; z-index: 2; }
@media (max-width: 1500px) {
    .breakfast__text { padding: 48px 48px 48px 8vw; }
    .breakfast__title { font-size: 28px; }
    .breakfast__subtitle, .breakfast__description, .breakfast__hours { font-size: 18px; }
}
@media (max-width: 1200px) {
    .breakfast__text { padding: 40px; }
    .breakfast__title { font-size: 26px; }
    .breakfast__subtitle, .breakfast__description, .breakfast__hours { font-size: 16px; }
    .breakfast__hours { min-height: 0; padding: 20px; }
}
@media (max-width: 767px) {
    .breakfast { flex-direction: column; }
    .breakfast__text, .breakfast__image { flex: none; width: 100%; }
    .breakfast__text { padding: 32px 20px; }
    .breakfast__title { font-size: 24px; }
    .breakfast__subtitle { font-size: 16px; }
    .breakfast__description { font-size: 14px; }
    .breakfast__hours { max-width: 100%; font-size: 14px; gap: 8px; }
    .breakfast__image { aspect-ratio: 16 / 9; }
    .breakfast__image .meal__dots { right: 20px; bottom: -12px; }
}

/* ===== LUNCH & DINNER ===== */
.meal { width: 100%; max-width: 1920px; margin: 0 auto; }
.meal__row {display: flex;align-items: stretch;width: 100%;margin-top: 40px;}
.meal__row + .meal__row { margin-top: 80px; }
.meal__row--reverse { flex-direction: row-reverse; }
.meal__text { flex: 0 0 50%; min-width: 0; padding: 0 56px 0 21.8vw; box-sizing: border-box; display: flex; flex-direction: column; gap: 16px; }
.meal__row--reverse .meal__text { padding: 0 21.8vw 0 56px; }
.meal__heading { display: flex; flex-direction: column; padding-bottom: 8px; }
.meal__title { margin: 0; font-family: 'Noto Sans JP', sans-serif; font-weight: 700; font-size: 32px; line-height: 1.7; color: #772583; }
.meal__subtitle { margin: 0; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 20px; line-height: 1.7; letter-spacing: 1px; color: #772583; }
.meal__description { margin: 0; font-family: 'Noto Sans JP', sans-serif; font-weight: 700; font-size: 20px; line-height: 1.7; color: #211104; }
.meal__hours { display: flex; flex-direction: column; gap: 0; padding: 32px; box-sizing: border-box; background: #e4e4e4; color: #211104; font-weight: 700; font-size: 20px; line-height: 1.7; align-self: flex-start; max-width: 100%; }
.meal__hours-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; min-width: 0; }
.meal__hours-label { font-family: 'Noto Sans JP', sans-serif; }
.meal__hours-time { font-family: 'Montserrat', sans-serif; letter-spacing: 1px; }
.meal__hours-labels, .meal__hours-times { display: flex; flex-direction: column; }
.meal__hours-labels { text-align: right; }
.meal__gallery {margin-top: 46px;width: 100%;max-width: 460px;aspect-ratio: 460 / 320;overflow: hidden;}
.meal__gallery img { width: 100%; height: 100%; object-fit: cover; display: block; }
.meal__image { flex: 0 0 50%; position: relative; align-self: flex-start; overflow: hidden; }
.meal__image-frame { position: relative; aspect-ratio: 960 / 480; overflow: hidden; user-select: none; -webkit-user-select: none; }
.meal__track { display: flex; height: 100%; will-change: transform; }
.meal__slide { flex: 0 0 100%; min-width: 0; height: 100%; }
.meal__slide img { width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none; -webkit-user-drag: none; }
.meal__dots { display: flex; justify-content: flex-end; gap: 10px; padding: 16px 42px 0 0; }
.meal__dot { width: 10px; height: 10px; padding: 0; border: 0; border-radius: 50%; background: #c1c1c1; cursor: pointer; transition: background 0.25s ease; }
.meal__dot:hover { background: #a0a0a0; }
.meal__dot--active { background: #772583; }
@media (max-width: 1500px) {
    .meal__text { padding: 0 48px 0 8vw; }
    .meal__row--reverse .meal__text { padding: 0 8vw 0 48px; }
    .meal__title { font-size: 28px; }
    .meal__subtitle, .meal__description, .meal__hours { font-size: 18px; }
}
@media (max-width: 1200px) {
    .meal__text { padding: 0 40px; }
    .meal__row--reverse .meal__text { padding: 0 40px; }
    .meal__title { font-size: 26px; }
    .meal__subtitle, .meal__description, .meal__hours { font-size: 16px; }
    .meal__hours { padding: 20px; }
}
@media (max-width: 767px) {
    .meal__row, .meal__row--reverse { flex-direction: column; }
    .meal__row + .meal__row { margin-top: 48px; }
    .meal__text, .meal__image { flex: none; width: 100%; }
    .meal__row .meal__text, .meal__row--reverse .meal__text { padding: 24px 20px 0; order: 2; }
    .meal__image { order: 1; }
    .meal__title { font-size: 24px; }
    .meal__subtitle { font-size: 16px; }
    .meal__description { font-size: 14px; }
    .meal__hours { font-size: 14px; width: 100%; }
    .meal__gallery { max-width: 100%; }
    .meal__dots { padding: 12px 20px 0 0; }
}

/* ===== SECTION SPACING ===== */
.section-gap {padding: 80px 0;}
@media (max-width: 767px) {
    .section-gap { padding: 48px 0; }
}

/* ===== NOTES ===== */
.notes {width: 100%;max-width: 1080px;margin: 40px auto 0;padding: 0 40px;box-sizing: border-box;}
.notes__list { display: flex; flex-direction: column; font-family: 'Montserrat', 'Noto Sans JP', sans-serif; font-weight: 700; font-size: 20px; line-height: 1.7; letter-spacing: 1px; color: #000000; }
.notes__item { margin: 0; padding-left: 1em; text-indent: -1em; }
@media (max-width: 1200px) {
    .notes__list { font-size: 18px; }
}
@media (max-width: 767px) {
    .notes { padding: 0 20px; }
    .notes__list { font-size: 14px; letter-spacing: 0.5px; }
}

/* ===== FOOTER ===== */
.footer { width: 100%; background: #772583; padding: 56px 0; }
.footer__inner { max-width: 1080px; margin: 0 auto; padding: 0 40px; box-sizing: border-box; }
.footer__content { display: flex; flex-direction: column; gap: 40px; }
.footer__logo { display: block; width: 240px; height: auto; }
.footer__info { display: flex; flex-direction: column; font-family: 'Noto Sans JP', sans-serif; font-size: 16px; font-weight: 700; line-height: 1.7; color: #ffffff; }
.footer__info p { margin: 0; }
@media (max-width: 767px) {
    .footer { padding: 40px 0; }
    .footer__inner { padding: 0 20px; }
    .footer__content { width: 100%; gap: 24px; }
    .footer__logo { width: 180px; }
    .footer__info { font-size: 14px; }
}