:root {
    --paper: #fbfaf6;
    --paper-deep: #f2eee5;
    --white: #ffffff;
    --ink: #24211d;
    --muted: #665f55;
    --line: #ded4c3;
    --wood: #8d6040;
    --wood-dark: #61442f;
    --leaf: #586b48;
    --red: #9f4d3f;
    --shadow: 0 18px 46px rgba(64, 48, 34, 0.12);
    --font-heading: 'Zen Maru Gothic', sans-serif;
    --font-body: 'Noto Sans JP', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 76px;
}

body {
    min-width: 320px;
    background:
        linear-gradient(90deg, rgba(141, 96, 64, 0.035) 1px, transparent 1px),
        linear-gradient(180deg, rgba(141, 96, 64, 0.035) 1px, transparent 1px),
        var(--paper);
    background-size: 34px 34px;
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.9;
    letter-spacing: 0;
    overflow-x: hidden;
}

img,
iframe {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.35;
}

.container {
    width: min(100% - 2rem, 1120px);
    margin: 0 auto;
}

.narrow {
    width: min(100% - 2rem, 820px);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 50;
    width: 100%;
    border-bottom: 1px solid rgba(222, 212, 195, 0.8);
    background: rgba(251, 250, 246, 0.94);
    backdrop-filter: blur(12px);
}

.header-inner {
    width: min(100% - 2rem, 1180px);
    min-height: 72px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.logo {
    display: inline-flex;
    width: min(48vw, 228px);
    align-items: center;
}

.logo img {
    width: 100%;
    height: auto;
}

.desktop-nav {
    display: none;
}

.desktop-nav ul {
    display: flex;
    align-items: center;
    gap: 1.15rem;
}

.desktop-nav a {
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 700;
}

.desktop-nav a:hover {
    color: var(--wood-dark);
}

.nav-map {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 1rem;
    border-radius: 999px;
    background: var(--wood-dark);
    color: var(--white) !important;
}

.nav-reserve {
    color: var(--red) !important;
}

.menu-toggle {
    display: block;
    position: relative;
    z-index: 61;
    width: 32px;
    height: 24px;
    flex: 0 0 32px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.menu-toggle span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--ink);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle span:nth-child(1) {
    top: 1px;
}

.menu-toggle span:nth-child(2) {
    top: 11px;
}

.menu-toggle span:nth-child(3) {
    bottom: 1px;
}

.menu-toggle.active span:nth-child(1) {
    top: 11px;
    transform: rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    bottom: 11px;
    transform: rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 60;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 1.5rem 2rem;
    background: var(--paper);
    transform: translateX(100%);
    transition: transform 0.28s ease;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu ul {
    display: grid;
    gap: 1rem;
    text-align: center;
}

.mobile-menu a {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
}

.hero {
    position: relative;
    min-height: 92svh;
    padding-top: 72px;
    display: grid;
    align-items: end;
    overflow: hidden;
    background: var(--ink);
}

.hero-image,
.hero-shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-image {
    object-fit: cover;
    object-position: center;
}

.hero-shade {
    background:
        linear-gradient(90deg, rgba(28, 23, 17, 0.74), rgba(28, 23, 17, 0.28) 58%, rgba(28, 23, 17, 0.2)),
        linear-gradient(0deg, rgba(28, 23, 17, 0.62), transparent 54%);
}

.hero-content {
    position: relative;
    z-index: 1;
    width: min(100% - 2rem, 980px);
    margin: 0 auto;
    padding: 14svh 0 8svh;
    color: var(--white);
}

.hero-kicker {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    font-weight: 700;
}

.hero h1 {
    max-width: 100%;
    font-size: clamp(2.75rem, 7vw, 5.4rem);
    line-height: 1.05;
}

.desktop-title {
    display: none;
}

.mobile-title {
    display: block;
}

.mobile-title span {
    display: inline-block;
    white-space: nowrap;
}

.hero-copy {
    max-width: 620px;
    margin-top: 1.5rem;
    font-size: clamp(1.1rem, 3vw, 1.55rem);
    font-weight: 700;
    line-height: 1.9;
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 1.4rem;
}

.hero-proof span {
    padding: 0.25rem 0.7rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    font-size: 0.92rem;
    font-weight: 700;
}

.hero-actions,
.center-actions,
.access-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    align-items: center;
}

.hero-actions {
    margin-top: 2rem;
}

.btn {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.45rem;
    border-radius: 999px;
    font-weight: 700;
    line-height: 1.35;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-map {
    background: var(--red);
    color: var(--white);
    box-shadow: 0 14px 34px rgba(65, 24, 18, 0.24);
}

.btn-reserve-primary {
    background: var(--white);
    color: var(--wood-dark);
    box-shadow: 0 16px 38px rgba(65, 24, 18, 0.22);
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.76);
    color: var(--white);
}

.btn-outline-dark {
    border: 1px solid var(--wood);
    color: var(--wood-dark);
    background: rgba(255, 255, 255, 0.54);
}

.btn-reservation {
    border: 1px solid rgba(141, 96, 64, 0.42);
    background: rgba(255, 255, 255, 0.78);
    color: var(--wood-dark);
    box-shadow: 0 12px 30px rgba(64, 48, 34, 0.09);
}

.quick-facts {
    border-bottom: 1px solid var(--line);
    background: var(--white);
}

.fact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
}

.fact-grid p {
    min-height: 132px;
    padding: 1.25rem;
    background: var(--white);
}

.fact-grid strong,
.fact-grid span {
    display: block;
}

.fact-grid strong {
    color: var(--wood-dark);
    font-family: var(--font-heading);
    font-size: 1.12rem;
}

.fact-grid span {
    margin-top: 0.35rem;
    color: var(--muted);
    font-size: 0.95rem;
}

.section {
    padding: clamp(4rem, 10vw, 7.5rem) 0;
}

.section-white {
    background: rgba(255, 255, 255, 0.72);
}

.soft-section {
    background: linear-gradient(135deg, rgba(88, 107, 72, 0.1), rgba(255, 255, 255, 0.34));
}

.section-label {
    margin-bottom: 0.7rem;
    color: var(--leaf);
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
}

.section h2,
.section-heading h2,
.access-copy h2 {
    font-size: clamp(2rem, 6vw, 3.25rem);
}

.section-heading {
    width: min(100%, 820px);
    margin: 0 auto 2.2rem;
    text-align: center;
}

.section-heading p:last-child {
    margin-top: 1rem;
    color: var(--muted);
}

.menu-hero {
    width: min(100%, 980px);
    margin: 0 auto 1.6rem;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper-deep);
    box-shadow: var(--shadow);
    aspect-ratio: 4 / 3;
}

.menu-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.lead-text {
    margin-top: 2rem;
    display: grid;
    gap: 1rem;
    color: var(--muted);
    font-size: clamp(1.08rem, 2.6vw, 1.25rem);
}

.lead-text strong {
    color: var(--wood-dark);
}

.concept-note {
    margin-top: 2.2rem;
    padding: 1.4rem 1.5rem;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    font-weight: 700;
}

.menu-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.menu-item {
    position: relative;
    display: grid;
    gap: 1rem;
    padding: clamp(1.25rem, 4vw, 2rem);
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--shadow);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.menu-item:hover {
    transform: translateY(-3px);
    border-color: rgba(141, 96, 64, 0.44);
    box-shadow: 0 22px 54px rgba(64, 48, 34, 0.16);
}

.menu-item-featured {
    order: -1;
    grid-column: 1 / -1;
    border: 3px solid rgba(159, 77, 63, 0.58);
    background:
        linear-gradient(135deg, rgba(255, 247, 230, 0.98), rgba(242, 229, 205, 0.9)),
        var(--paper-deep);
    box-shadow: 0 24px 64px rgba(98, 55, 34, 0.2);
}

.menu-item-featured:hover {
    transform: translateY(-7px);
    border-color: var(--red);
    box-shadow: 0 30px 76px rgba(98, 55, 34, 0.28);
}

.recommend-badge {
    width: fit-content;
    padding: 0.22rem 0.78rem;
    border-radius: 999px;
    background: var(--red);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.5;
}

.menu-title-row {
    display: flex;
    gap: 1rem;
    align-items: baseline;
    justify-content: space-between;
}

.menu-title-row h3 {
    font-size: clamp(1.25rem, 3.6vw, 1.7rem);
}

.price {
    flex: 0 0 auto;
    color: var(--red);
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
}

.menu-item-featured .menu-title-row h3 {
    color: var(--wood-dark);
}

.menu-item-featured .price {
    color: var(--red);
    font-size: clamp(1.55rem, 4.4vw, 2rem);
}

.menu-item-featured .menu-message {
    color: var(--red);
    font-size: 1.08rem;
}

.menu-message {
    color: var(--wood-dark);
    font-weight: 700;
}

.menu-item ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.menu-item li {
    padding: 0.25rem 0.65rem;
    border: 1px solid rgba(141, 96, 64, 0.3);
    border-radius: 999px;
    background: var(--paper);
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 700;
}

.menu-note {
    max-width: 820px;
    margin: 1.6rem auto 0;
    color: var(--muted);
    text-align: center;
    font-size: 0.92rem;
}

.menu-photo-grid {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 1rem;
    width: min(100%, 980px);
    margin: 0 auto 1.6rem;
}

.menu-photo-grid figure {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper-deep);
    box-shadow: var(--shadow);
    aspect-ratio: 4 / 3;
}

.menu-photo-grid figure:nth-child(2) {
    aspect-ratio: 4 / 3;
}

.menu-photo-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-addons,
.daily-menu-note,
.first-choice {
    margin-top: 1.2rem;
    padding: clamp(1.2rem, 3vw, 1.6rem);
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: var(--shadow);
}

.menu-addons,
.daily-menu-note,
.first-choice {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: clamp(1rem, 3vw, 1.8rem);
    align-items: start;
}

.menu-addons h3,
.daily-menu-note h3,
.first-choice h3 {
    font-size: clamp(1.35rem, 3vw, 1.8rem);
}

.menu-addons dl {
    display: grid;
    gap: 0.75rem;
}

.menu-addons dl div {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(141, 96, 64, 0.2);
}

.menu-addons dt {
    color: var(--ink);
    font-weight: 700;
}

.menu-addons dd {
    flex: 0 0 auto;
    color: var(--red);
    font-family: var(--font-heading);
    font-weight: 700;
}

.daily-menu-copy {
    display: grid;
    gap: 0.75rem;
    color: var(--muted);
    line-height: 1.9;
}

.first-choice {
    background:
        linear-gradient(135deg, rgba(88, 107, 72, 0.1), rgba(255, 255, 255, 0.82)),
        var(--white);
}

.first-choice p:last-child {
    color: var(--muted);
    line-height: 1.9;
}

.lunch-reservation {
    padding: 0 0 clamp(4rem, 9vw, 6.5rem);
    background: var(--paper);
}

.lunch-reservation-box {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: clamp(1.6rem, 5vw, 4rem);
    align-items: start;
    padding: clamp(1.4rem, 4vw, 2rem);
    border: 1px solid var(--line);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(242, 238, 229, 0.78)),
        var(--white);
    box-shadow: 0 18px 46px rgba(64, 48, 34, 0.09);
}

.lunch-reservation-box h2 {
    font-size: clamp(1.7rem, 4.8vw, 2.45rem);
}

.lunch-reservation-text {
    display: grid;
    gap: 0.85rem;
    color: var(--muted);
    font-size: 1.04rem;
}

.reservation-note {
    font-size: 0.92rem;
}

.lunch-reservation-text .btn {
    width: fit-content;
    margin-top: 0.35rem;
}

.value-grid,
.split,
.access-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: clamp(2rem, 7vw, 5rem);
    align-items: start;
}

.value-list {
    display: grid;
    gap: 1rem;
}

.value-list p {
    display: grid;
    grid-template-columns: 5em 1fr;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--line);
}

.value-list strong {
    color: var(--wood-dark);
    font-family: var(--font-heading);
    font-size: 1.15rem;
}

.value-list span,
.text-block {
    color: var(--muted);
}

.text-block {
    display: grid;
    gap: 1rem;
    font-size: 1.08rem;
}

.hours-box {
    margin-top: 1rem;
    padding: 1.25rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
}

.hours-box h3 {
    margin-bottom: 0.35rem;
    color: var(--wood-dark);
}

.english-section {
    background:
        linear-gradient(135deg, rgba(36, 33, 29, 0.92), rgba(97, 68, 47, 0.88)),
        url("images/lunch-setmeal-main.jpg") center / cover;
    color: var(--white);
}

.english-section .section-label,
.english-section h2,
.english-section .text-block {
    color: var(--white);
}

.english-copy {
    color: rgba(255, 255, 255, 0.86);
}

.english-info {
    display: grid;
    gap: 0.75rem;
    margin-top: 0.6rem;
}

.english-info p {
    display: grid;
    grid-template-columns: 9.5em 1fr;
    gap: 0.8rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.english-info strong {
    color: var(--white);
}

.english-info span {
    color: rgba(255, 255, 255, 0.82);
}

.name-section {
    background:
        linear-gradient(rgba(251, 250, 246, 0.84), rgba(251, 250, 246, 0.9)),
        url("images/hero.png") center / cover;
}

.news-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
}

.news-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.news-card-image {
    background: var(--paper-deep);
}

/* 写真を切り抜かず、全体を表示する */
.news-card-image img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 32rem;
    object-fit: contain;
}

.news-card-content {
    display: grid;
    gap: 0.75rem;
    padding: 1.2rem;
}

.news-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    color: var(--leaf);
    font-size: 0.84rem;
    font-weight: 700;
}

.news-card-meta span {
    padding: 0.05rem 0.5rem;
    border-radius: 999px;
    background: rgba(88, 107, 72, 0.12);
}

.news-card-title {
    color: var(--wood-dark);
    font-size: 1.18rem;
}

.news-card-details {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.25rem 0.65rem;
    padding: 0.85rem;
    border-radius: 8px;
    background: var(--paper);
}

.news-card-details dt {
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 700;
}

.news-card-details dd {
    font-weight: 700;
}

.news-card-body {
    color: var(--muted);
    font-size: 0.94rem;
    /* 投稿本文の改行をそのまま表示する */
    white-space: pre-line;
}

/* トップページでは長い本文を6行までで省略（全文はお知らせ一覧で表示） */
.news-list-home .news-card-body {
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-empty {
    grid-column: 1 / -1;
    padding: 2rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    color: var(--muted);
    text-align: center;
}

.center-actions {
    justify-content: center;
    margin-top: 1.6rem;
}

.faq-list {
    margin-top: 1.6rem;
    display: grid;
    gap: 0.8rem;
}

.faq-list details {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.72);
}

.faq-list summary {
    cursor: pointer;
    padding: 1rem 1.15rem;
    color: var(--wood-dark);
    font-family: var(--font-heading);
    font-weight: 700;
}

.faq-list p {
    padding: 0 1.15rem 1.15rem;
    color: var(--muted);
}

.reservation-section {
    background: linear-gradient(135deg, rgba(242, 238, 229, 0.92), rgba(255, 255, 255, 0.66));
}

.reservation-box {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: clamp(2rem, 7vw, 5rem);
    align-items: start;
    padding-top: 2rem;
    border-top: 1px solid var(--line);
}

.reservation-text {
    display: grid;
    gap: 0.85rem;
    color: var(--muted);
    font-size: 1.05rem;
}

.dm-template {
    padding: 1rem;
    border: 1px solid rgba(141, 96, 64, 0.24);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--ink);
}

.dm-template p {
    margin: 0;
}

.en-text {
    font-size: 0.94em;
    color: inherit;
    opacity: 0.82;
}

.reservation-text .btn {
    width: fit-content;
    margin-top: 0.5rem;
}

.access-section {
    background: var(--white);
}

.access-copy p:not(.section-label) {
    margin-top: 1rem;
    color: var(--muted);
}

.access-actions {
    margin-top: 1.4rem;
}

.reserve-link {
    color: var(--muted);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 0.25em;
}

.shop-details {
    border-top: 1px solid var(--line);
}

.shop-details dl > div {
    display: grid;
    grid-template-columns: 6.5em 1fr;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
}

.shop-details dt {
    color: var(--wood-dark);
    font-weight: 700;
}

.shop-details dd {
    color: var(--muted);
}

.map-frame {
    height: min(62vw, 460px);
    min-height: 320px;
    margin-top: 2.5rem;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.footer {
    padding: 2.5rem 0;
    background: var(--ink);
    color: rgba(255, 255, 255, 0.78);
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem 1.4rem;
    align-items: center;
    justify-content: space-between;
}

.sub-page {
    padding-top: 72px;
}

.sub-hero {
    min-height: calc(100svh - 72px);
    display: grid;
    align-items: center;
}

.sub-hero h1 {
    font-size: clamp(2.4rem, 6vw, 4.5rem);
}

.sub-hero p:not(.section-label) {
    margin-top: 1rem;
    color: var(--muted);
    font-size: 1.08rem;
}

.sub-hero-image {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper-deep);
    box-shadow: var(--shadow);
    aspect-ratio: 4 / 3;
}

.sub-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mobile-sticky-cta {
    position: fixed;
    right: 0.75rem;
    bottom: 0.75rem;
    left: 0.75rem;
    z-index: 55;
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    padding: 0.45rem;
    border: 1px solid rgba(222, 212, 195, 0.8);
    border-radius: 999px;
    background: rgba(251, 250, 246, 0.94);
    box-shadow: 0 16px 42px rgba(36, 33, 29, 0.18);
    backdrop-filter: blur(10px);
}

.mobile-sticky-cta a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 700;
}

.mobile-sticky-cta a:first-child {
    background: var(--red);
    color: var(--white);
}

.mobile-sticky-cta a:last-child {
    background: var(--white);
    color: var(--wood-dark);
}

@media (min-width: 1041px) {
    .desktop-nav {
        display: block;
    }

    .menu-toggle {
        display: none;
    }

    .desktop-title {
        display: block;
    }

    .mobile-title {
        display: none;
    }
}

@media (max-width: 760px) {
    body {
        font-size: 15px;
    }

    .header-inner {
        min-height: 64px;
    }

    .hero {
        min-height: 94svh;
        padding-top: 64px;
    }

    .hero-shade {
        background:
            linear-gradient(0deg, rgba(28, 23, 17, 0.78), rgba(28, 23, 17, 0.24) 62%),
            linear-gradient(90deg, rgba(28, 23, 17, 0.58), rgba(28, 23, 17, 0.2));
    }

    .hero-content {
        padding-bottom: 7svh;
    }

    .hero h1 {
        max-width: none;
        font-size: clamp(1.9rem, 8vw, 2.35rem);
        line-height: 1.18;
        letter-spacing: 0;
    }

    .hero-copy {
        font-size: 1.08rem;
    }

    .hero-actions,
    .center-actions,
    .access-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .btn,
    .access-actions a {
        width: 100%;
    }

    .hero-proof {
        gap: 0.45rem;
    }

    .hero-proof span {
        font-size: 0.86rem;
    }

    .fact-grid,
    .menu-list,
    .lunch-reservation-box,
    .value-grid,
    .split,
    .reservation-box,
    .access-layout {
        grid-template-columns: 1fr;
    }

    .fact-grid p {
        min-height: auto;
    }

    .section-heading {
        text-align: left;
    }

    .section-heading p:last-child {
        font-size: 1.05rem;
        line-height: 1.95;
    }

    .menu-hero {
        margin-bottom: 1.25rem;
        aspect-ratio: 4 / 3;
    }

    .menu-item {
        gap: 1.15rem;
        padding: 1.55rem;
    }

    .menu-title-row {
        display: grid;
        gap: 0.25rem;
    }

    .menu-title-row h3 {
        font-size: 1.55rem;
    }

    .price {
        font-size: 1.65rem;
        line-height: 1.15;
    }

    .menu-message {
        font-size: 1.02rem;
        line-height: 1.75;
    }

    .menu-item li {
        padding: 0.32rem 0.72rem;
        font-size: 0.95rem;
    }

    .menu-item-featured {
        padding: 1.75rem 1.55rem;
    }

    .menu-item-featured .price {
        font-size: 2rem;
    }

    .menu-item-featured .menu-message {
        font-size: 1.08rem;
    }

    .menu-photo-grid,
    .menu-addons,
    .daily-menu-note,
    .first-choice {
        grid-template-columns: 1fr;
        margin-top: 1rem;
    }

    .menu-photo-grid {
        margin-bottom: 1.25rem;
    }

    .menu-photo-grid figure {
        aspect-ratio: 16 / 11;
    }

    .menu-addons dl div {
        align-items: flex-start;
    }

    .lunch-reservation {
        padding-bottom: 4rem;
    }

    .lunch-reservation-box {
        padding: 1.4rem;
    }

    .lunch-reservation-text {
        font-size: 1rem;
    }

    .lunch-reservation-text .btn {
        width: 100%;
    }

    .reservation-box {
        padding-top: 1.4rem;
    }

    .reservation-text {
        font-size: 1rem;
    }

    .reservation-text .btn {
        width: 100%;
    }

    .english-info p {
        grid-template-columns: 1fr;
        gap: 0.15rem;
    }

    .value-list p {
        grid-template-columns: 1fr;
        gap: 0.25rem;
    }

    .shop-details dl > div {
        grid-template-columns: 1fr;
        gap: 0.2rem;
    }

    .map-frame {
        height: 360px;
    }

    .footer-inner {
        display: grid;
    }

    .sub-page {
        padding-top: 64px;
    }

    .sub-hero {
        min-height: auto;
    }

    .footer {
        padding-bottom: 6rem;
    }

    .mobile-sticky-cta {
        display: grid;
    }
}

/* ===== 2026-07 改善追加分 ===== */
.btn-copy {
    display: inline-block;
    margin-top: 0.6rem;
    padding: 0.45rem 1.1rem;
    font: inherit;
    font-size: 0.85rem;
    border: 1px solid currentColor;
    border-radius: 999px;
    background: transparent;
    color: inherit;
    cursor: pointer;
}

.btn-copy:hover {
    opacity: 0.75;
}

.english-more {
    margin-top: 1.4rem;
}

.footer a {
    color: rgba(255, 255, 255, 0.85);
}

.footer-info p {
    margin: 0.25rem 0;
    line-height: 1.7;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem 1.2rem;
}

.footer-nav a {
    text-decoration: none;
}

.footer-nav a:hover {
    text-decoration: underline;
}

.footer-copy {
    width: 100%;
    margin-top: 0.6rem;
    font-size: 0.85rem;
    opacity: 0.7;
}
