/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Zen and Bed inspired color palette */
    --primary-color: #8B7355;      /* 生成り - Natural beige */
    --secondary-color: #2F4F4F;    /* 深緑 - Deep green */
    --accent-color: #D4AF37;       /* 金 - Gold */
    --dark-color: #1C1C1C;         /* 墨色 - Ink black */
    --light-color: #F8F6F1;        /* 和紙 - Washi paper */
    --white: #FFFFFF;               /* 白 - Pure white */
    --text-primary: #2C2C2C;       /* 墨色 - Text color */
    --text-secondary: #5A5A5A;     /* グレー - Secondary text */
    --border-color: #E8E4D9;       /* 薄い生成り - Light beige */
    --shadow: rgba(139, 115, 85, 0.08);
    --shadow-dark: rgba(139, 115, 85, 0.15);
    /* 本文の読みやすい行長（サイト全体のテキストカラム） */
    --prose-measure: 40rem;
    --gutter-x: clamp(1.1rem, 3.5vw, 2.4rem);
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --gradient-overlay: linear-gradient(rgba(44, 44, 44, 0.2), rgba(44, 44, 44, 0.4));
    --washi-texture: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><defs><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" stitchTiles="stitch"/><feColorMatrix type="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0.1 0"/></filter></defs><rect width="100" height="100" filter="url(%23noise)" opacity="0.1"/></svg>');
}

html {
    scroll-behavior: smooth;
    /* Anchor links account for the fixed navbar height */
    scroll-padding-top: 96px;
}

@media (max-width: 768px) {
    html {
        scroll-padding-top: 76px;
    }
}

body {
    font-family: 'Noto Serif JP', 'Inter', serif;
    line-height: 1.8;
    color: var(--text-primary);
    overflow-x: hidden;
    background: var(--light-color);
    background-image: var(--washi-texture);
    background-attachment: fixed;
}

.japanese {
    font-family: 'Noto Serif JP', serif;
}

.container {
    max-width: min(72rem, 100%);
    margin: 0 auto;
    padding: 0 var(--gutter-x, clamp(1.1rem, 3.5vw, 2.4rem));
}

/* ----------------------------------------------------------------
   サイト全体：本文 p の可読行長（ブロックを中央寄せ、本文は原則左揃え）
   .section-header 内の見出し、ヒーロー、カード・価格表等は下でリセット
   ---------------------------------------------------------------- */
section:not(.hero) .container p:not(.section-subtitle),
main .container p:not(.section-subtitle) {
    max-width: var(--prose-measure, 40rem);
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: start;
}

/* セクション小見出し等は従来どおり中央・独自の幅 */
section:not(.hero) .container p.section-subtitle,
main .container p.section-subtitle {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    width: auto;
}

/* 箇条書きブロック全体を本文カラム幅に揃える */
section:not(.hero) .container .guidelines-content {
    max-width: var(--prose-measure, 40rem);
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: start;
}

/* 上記より具体的に指定（カード・表内の p は幅いっぱい） */
section:not(.hero) .container .experience-card p,
section:not(.hero) .container .experience-card-link p,
section:not(.hero) .container .accommodation-card p,
section:not(.hero) .container .wine-card p,
section:not(.hero) .container .menu-card p,
section:not(.hero) .container .pricing-card p,
section:not(.hero) .container .menu-sections p,
section:not(.hero) .container .menu-item p,
section:not(.hero) .container .detail-card p,
section:not(.hero) .container .type-card p,
section:not(.hero) .container .info-item p,
section:not(.hero) .container .cta-content p,
section:not(.hero) .container .notice-content p,
footer .container p,
section:not(.hero) .container .pricing-content p,
table p,
th p,
td p,
section:not(.hero) .container p.cancellation-text,
body.location-terms-page main .location-terms-block__body p,
body.location-terms-page main .container p.location-terms-cta,
.location-pricing p.location-price-line,
.location-pricing p.location-price-line--add,
.location-pricing .location-price-stack p {
    max-width: none;
    width: auto;
    margin-left: 0;
    margin-right: 0;
    text-align: inherit;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(248, 246, 241, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.4s ease;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 2px 20px var(--shadow);
}

/* Desktop: center the logo on the whole navbar regardless of ig/lang on the right */
/* Breadcrumb */
.breadcrumb {
    background: var(--light-color);
    padding: 1rem 0;
    margin-top: 80px;
    border-bottom: 1px solid var(--border-color);
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.breadcrumb-nav a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
    color: var(--accent-color);
}

.breadcrumb-separator {
    color: var(--text-muted);
}

.breadcrumb-current {
    color: var(--text-primary);
    font-weight: 500;
}

/* Intro Section */
.intro {
    background: var(--white);
    padding: 4rem 0;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-primary);
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px var(--shadow);
    border: 1px solid var(--border-color);
}

/* Experience Featured */
.experience-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.experience-image-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px var(--shadow-dark);
}

.experience-featured-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.experience-featured:hover .experience-featured-image {
    transform: scale(1.02);
}

.experience-content {
    padding: 2rem;
}

.experience-content h3 {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    font-family: 'Noto Serif JP', serif;
    font-weight: 600;
}

.experience-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.experience-details {
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-label {
    font-weight: 500;
    color: var(--text-primary);
}

.detail-value {
    color: var(--text-secondary);
}

.detail-value.price {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.experience-features h4 {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-family: 'Noto Serif JP', serif;
    font-weight: 600;
}

.experience-features ul {
    list-style: none;
    padding: 0;
}

.experience-features li {
    padding: 0.5rem 0;
    color: var(--text-primary);
    position: relative;
    padding-left: 1.5rem;
}

.experience-features li::before {
    content: '•';
    color: var(--accent-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}


/* Content Section */
.content {
    background: var(--white);
    padding: 4rem 0;
}

.intro-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
}

.intro-card h2 {
    font-size: 2.2rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    font-family: 'Noto Serif JP', serif;
    font-weight: 600;
}

.intro-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-primary);
}

/* Two Column Layout */
.two-col {
    background: var(--light-color);
    padding: 4rem 0;
}

.two-col .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.two-col .text h2 {
    font-size: 2.2rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    font-family: 'Noto Serif JP', serif;
    font-weight: 600;
}

.two-col .text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.two-col .text h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin: 2rem 0 1rem 0;
    font-family: 'Noto Serif JP', serif;
    font-weight: 600;
}

.two-col .text ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.two-col .text li {
    padding: 0.5rem 0;
    color: var(--text-primary);
    position: relative;
    padding-left: 1.5rem;
}

.two-col .text li::before {
    content: '•';
    color: var(--accent-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.two-col .image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px var(--shadow-dark);
}

.two-col .image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.two-col .image:hover img {
    transform: scale(1.02);
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 4rem 0;
    text-align: center;
    color: var(--white);
}

.cta-block--centered .cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-block--centered .cta-content .btn {
    margin-top: 24px;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-family: 'Noto Serif JP', serif;
    font-weight: 600;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta .btn {
    font-size: 1.1rem;
    padding: 1rem 2rem;
}

/* Responsive Design for Experience Pages */
@media (max-width: 768px) {
    .breadcrumb {
        margin-top: 60px;
        padding: 0.75rem 0;
    }
    
    .breadcrumb-nav {
        font-size: 0.8rem;
    }
    
    .content {
        padding: 2rem 0;
    }
    
    .intro-card {
        padding: 2rem;
    }
    
    .intro-card h2 {
        font-size: 1.8rem;
    }
    
    .intro-card p {
        font-size: 1rem;
    }
    
    .two-col {
        padding: 2rem 0;
    }
    
    .two-col .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .two-col .text h2 {
        font-size: 1.8rem;
    }
    
    .two-col .image img {
        height: 300px;
    }
    
    .cta {
        padding: 2rem 0;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .experience-featured {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
    }
    
    .experience-content {
        padding: 1rem;
    }
    
    .experience-content h3 {
        font-size: 1.5rem;
    }
    
    .experience-details {
        padding: 1rem;
    }
    
    .detail-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
}

.nav-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    height: 80px;
    gap: 2rem;
}

@media (min-width: 1440px) {
    .nav-container {
        max-width: 1200px;
    }
}

.header-nav {
    display: grid;
    grid-template-columns: 1fr 200px 1fr;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
}

.nav-left, .nav-right {
    display: flex;
    gap: 32px;
    align-items: center;
    justify-content: center;
}

.nav-left {
    justify-content: flex-end;
}

.nav-right {
    justify-content: flex-start;
}

.nav-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 0 1rem;
}

.nav-center::before,
.nav-center::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: var(--border-color);
    opacity: 0.3;
}

.nav-center::before {
    left: 0;
}

.nav-center::after {
    right: 0;
}

.nav-center h1 {
    font-family: 'Noto Serif JP', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.1;
}

.nav-center p {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 300;
    color: var(--text-light);
    letter-spacing: 1.5px;
    margin: 0;
    margin-top: 2px;
}

.nav-center a {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: opacity 0.3s ease;
}

.nav-center a:hover {
    opacity: 0.8;
}

.nav-logo h2 {
    font-family: 'Noto Serif JP', serif;
    color: var(--dark-color);
    font-size: 1.6rem;
    margin-bottom: -5px;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.nav-logo span {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 300;
    letter-spacing: 0.1em;
}

.nav-menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    flex: 1;
    justify-content: center;
    white-space: nowrap;
    overflow-x: auto;
}

.nav-menu::-webkit-scrollbar {
    display: none;
}

.nav-menu {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: normal;
    padding: 12px 16px;
    border-radius: 20px;
    white-space: normal;
    line-height: 1.2;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    min-width: 80px;
    min-height: 40px;
    justify-content: center;
}

.nav-link:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

.nav-link:hover {
    color: var(--accent-color);
    background: rgba(212, 175, 55, 0.1);
}

.nav-link .nav-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
    transition: all 0.3s ease;
    image-rendering: auto;
    image-rendering: crisp-edges;
    image-rendering: -webkit-optimize-contrast;
}

.nav-link:hover .nav-icon {
    transform: scale(1.1);
    opacity: 0.8;
}

/* Ensure smooth animation for GIF files */
.nav-link .nav-icon[src*=".gif"] {
    image-rendering: auto;
    image-rendering: optimizeQuality;
    will-change: transform;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

.book-now {
    background: var(--accent-color);
    color: var(--white) !important;
    padding: 12px 24px;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 500;
    white-space: normal;
    line-height: 1.2;
    flex-shrink: 0;
    margin-left: auto;
    letter-spacing: normal;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: auto;
}

.book-now:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    background: #C19B2E;
}

.book-now::after {
    display: none;
}

/* CSS-only mobile navigation */
.nav-toggle {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    flex-shrink: 0;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* CSS-only hamburger animation */
.nav-toggle:checked + .hamburger .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.nav-toggle:checked + .hamburger .bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle:checked + .hamburger .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Language Switcher */
.lang-switcher {
    position: relative;
    z-index: 1001;
    flex-shrink: 0;
}

.ig-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: var(--dark-color);
    border: 1.5px solid var(--dark-color);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    box-shadow: 0 2px 8px rgba(28, 28, 28, 0.18);
    flex-shrink: 0;
    margin-right: 14px;
    -webkit-tap-highlight-color: transparent;
}

.ig-btn svg {
    width: 18px;
    height: 18px;
    display: block;
}

.ig-btn:hover {
    background: linear-gradient(135deg, #833AB4 0%, #FD1D1D 50%, #FCAF45 100%);
    border-color: transparent;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(253, 29, 29, 0.35);
}

.ig-btn:active {
    transform: translateY(0) scale(0.95);
    transition-duration: 0.08s;
}

@media (max-width: 768px) {
    .ig-btn {
        width: 34px;
        height: 34px;
        margin-right: 12px;
    }

    .ig-btn svg {
        width: 16px;
        height: 16px;
    }
}

.lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 16px 9px 18px;
    background: var(--dark-color);
    border: 1.5px solid var(--dark-color);
    border-radius: 999px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.6px;
    box-shadow: 0 2px 8px rgba(28, 28, 28, 0.18);
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    white-space: nowrap;
    -webkit-tap-highlight-color: transparent;
}

.lang-btn:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--dark-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.35);
}

.lang-btn:focus-visible {
    outline: 2px solid var(--accent-color);
    outline-offset: 3px;
}

.lang-arrow {
    transition: transform 0.2s ease;
    opacity: 0.9;
    width: 12px;
    height: 12px;
    flex-shrink: 0;
}

.lang-btn[aria-expanded="true"] .lang-arrow {
    transform: rotate(180deg);
}

.lang-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(44, 44, 44, 0.08);
    list-style: none;
    padding: 4px 0;
    min-width: 132px;
    z-index: 1100;
    overflow: hidden;
}

.lang-dropdown.open {
    display: block;
}

.lang-option {
    display: block;
    padding: 7px 16px;
    text-decoration: none;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.2px;
    transition: background 0.15s ease, color 0.15s ease;
}

.lang-option:hover {
    background: var(--light-color);
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    aspect-ratio: 20 / 9;
    max-height: 100vh;
    background: var(--gradient-overlay);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
    padding-bottom: 60px;
}

.hero .hero-content {
    text-align: center;
}

.hero .hero-title-sub {
    display: block;
    line-height: 1.75;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

/* Hero video: anchor to bottom so the cropped 20% comes off the top */
#hero-video.hero-image {
    object-position: center bottom;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-overlay);
    pointer-events: none;
    z-index: 1;
}

/* Hero video controls */
.hero-video-controls {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 2;
    display: flex;
    gap: 10px;
}

.hero-vc-btn {
    width: 44px;
    height: 44px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.45);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    transition: background 0.2s ease;
}

.hero-vc-btn:hover {
    background: rgba(0, 0, 0, 0.75);
}

.hero-vc-btn svg {
    width: 20px;
    height: 20px;
    display: block;
    fill: currentColor;
}

.hero-vc-btn .ic-play,
.hero-vc-btn .ic-mute {
    display: none;
}

.hero-vc-btn.is-paused .ic-pause,
.hero-vc-btn.is-muted .ic-sound {
    display: none;
}

.hero-vc-btn.is-paused .ic-play,
.hero-vc-btn.is-muted .ic-mute {
    display: block;
}

/* Sound button with text label for clarity */
.hero-vc-btn--labeled {
    width: auto;
    border-radius: 22px;
    padding: 0 16px;
    gap: 7px;
}

.hero-vc-label {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    white-space: nowrap;
    line-height: 1;
}

.hero-vc-btn .lbl-sound-off {
    display: none;
}

.hero-vc-btn.is-muted .lbl-sound-on {
    display: none;
}

.hero-vc-btn.is-muted .lbl-sound-off {
    display: inline;
}

/* Centered play/pause button */
.hero-vc-btn--center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    z-index: 2;
}

.hero-vc-btn--center svg {
    width: 30px;
    height: 30px;
}

/* Hero video controls — small screens */
@media (max-width: 480px) {
    .hero-video-controls {
        bottom: 14px;
        left: 14px;
        gap: 8px;
    }

    .hero-vc-btn {
        width: 40px;
        height: 40px;
    }

    .hero-vc-btn svg {
        width: 18px;
        height: 18px;
    }

    .hero-vc-btn--labeled {
        width: auto;
        padding: 0 13px;
    }

    .hero-vc-label {
        font-size: 0.78rem;
    }

    .hero-vc-btn--center {
        width: 58px;
        height: 58px;
    }

    .hero-vc-btn--center svg {
        width: 25px;
        height: 25px;
    }
}

/* Phoenix animation - disabled */
.hero::before {
    content: none;
}

/* 削除された要素のスタイルは不要 */

.btn {
    padding: 18px 36px;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    letter-spacing: 0.05em;
    font-family: 'Noto Serif JP', serif;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.4);
    background: #C19B2E;
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--dark-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.2rem;
    min-height: 50px;
}

.reservation-button-container {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem 0;
}

    .reservation-btn {
        font-size: 1.3rem;
        padding: 20px 50px;
        min-height: 55px;
        font-weight: 600;
        letter-spacing: 0.1em;
    }
    
    @media (max-width: 768px) {
        .reservation-button-container {
            margin-top: 2rem;
            padding: 1.5rem 0;
        }
        
        .reservation-btn {
            font-size: 1.1rem;
            padding: 18px 40px;
            min-height: 50px;
        }
    }

.scroll-indicator {
    display: none;
}

.scroll-arrow {
    display: none;
}

/* Sections */
section {
    padding: clamp(72px, 11vw, 120px) 0;
}

.section-header {
    text-align: center;
    margin-bottom: clamp(2.5rem, 6vw, 4.5rem);
}

.section-title {
    font-size: clamp(1.6rem, 4.4vw, 2.6rem);
    color: var(--dark-color);
    margin-bottom: 1.25rem;
    font-weight: 600;
    font-family: 'Noto Serif JP', serif;
    letter-spacing: 0.03em;
    line-height: 1.3;
}

.section-subtitle {
    font-size: clamp(0.96rem, 1.4vw, 1.1rem);
    color: var(--text-secondary);
    font-weight: 300;
    letter-spacing: 0.02em;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.85;
}


.image-placeholder {
    width: 450px;
    height: 350px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--white);
    box-shadow: 0 25px 50px var(--shadow);
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: var(--washi-texture);
    opacity: 0.1;
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.image-placeholder p {
    font-size: 1.2rem;
    font-weight: 500;
}

/* Experiences Section */
.experiences {
    background: var(--light-color);
    position: relative;
}

.experiences::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: var(--washi-texture);
    opacity: 0.02;
    pointer-events: none;
}

.experiences-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* 体験一覧：単体カード（例：滝行）を中央に配置 */
.experiences--featured-single .experiences-grid {
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
}

.experiences--featured-single .experience-card {
    width: min(62%, 760px);
    margin: 0 auto;
}

@media (max-width: 768px) {
    .experiences--featured-single .experience-card {
        width: 100%;
    }
}

.experience-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
    text-decoration: none;
    display: block;
}

.experience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: var(--washi-texture);
    opacity: 0.02;
    pointer-events: none;
    z-index: 1;
}

.experience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px var(--shadow-dark);
    border-color: var(--accent-color);
}

.card-image {
    width: 100%;
    height: 180px;
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
    border-radius: 16px 16px 0 0;
    aspect-ratio: 16/9;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.3s ease;
    border-radius: 16px 16px 0 0;
}

.experience-card:hover .card-image img {
    transform: scale(1.02);
}

/* 体験カード */
.experience-card .card-content {
    padding: 1.5rem;
    position: relative;
    z-index: 2;
    text-align: center;
}

.card-content h3 {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin: 0 0 0.75rem 0;
    font-family: 'Noto Serif JP', serif;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.experience-card .card-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.experience-card .card-button {
    background: var(--accent-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
}

/* トップページ（/index.html）の体験カードのみ：余白とボタン位置を統一 */
body.home-index #experiences .experiences-grid {
    align-items: stretch;
}

body.home-index #experiences .experience-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

body.home-index #experiences .experience-card .card-content {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}

body.home-index #experiences .experience-card .card-content h3 {
    margin-bottom: 0.55rem; /* タイトル→本文を詰める */
}

body.home-index #experiences .experience-card .card-content p {
    margin-bottom: 0.9rem; /* 本文→ボタンを軽く詰める */
}

body.home-index #experiences .experience-card .card-button {
    margin-top: auto; /* ボタンを下揃え */
}

/* Traditional Chinese top page (/zh-tw/index.html): align experience card buttons */
body.home-zh-tw #experiences .experiences-grid {
    align-items: stretch;
}

body.home-zh-tw #experiences .experience-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

body.home-zh-tw #experiences .experience-card .card-content {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}

body.home-zh-tw #experiences .experience-card .card-content p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    overflow: hidden;
    min-height: 4.8em; /* 3 lines at line-height: 1.6 */
}

body.home-zh-tw #experiences .experience-card .card-button {
    margin-top: auto; /* ボタンを下揃え */
}

/* Desktop: align "詳細を見る" buttons across all home-page experience cards.
   Body-class-agnostic so the unmarked /ja/ and /zh-cn/ top pages get it too. */
@media (min-width: 769px) {
    #experiences .experiences-grid {
        align-items: stretch;
    }

    #experiences .experience-card {
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    #experiences .experience-card .card-content {
        display: flex;
        flex-direction: column;
        flex: 1 1 auto;
    }

    #experiences .experience-card .card-button {
        margin-top: auto;
    }
}

.experience-card:hover .card-button {
    background: #C19B2E;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

/* Experience Card Link Styles */
.experience-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.experience-card-link:focus-visible {
    outline: 2px solid #d4a017;
    border-radius: 16px;
}

.experience-card-link:hover {
    opacity: 0.95;
    transition: 0.2s;
}

/* 体験一覧「武道体験」「文化体験」各4カード：高さ揃え・料金枠下揃え（#martial-arts / #cultural のみ） */
#martial-arts .experiences-grid,
#cultural .experiences-grid {
    align-items: stretch;
}

#martial-arts a.experience-card.experience-card-link,
#cultural a.experience-card.experience-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
}

#martial-arts .experience-card .card-image,
#cultural .experience-card .card-image {
    flex: 0 0 auto;
}

#martial-arts .experience-card .card-content,
#cultural .experience-card .card-content {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-height: 0;
    padding: 1.45rem 1.5rem 1.35rem;
    text-align: center;
}

#martial-arts .card-content h3,
#cultural .card-content h3 {
    margin: 0 0 0.7rem 0;
    flex: 0 0 auto;
}

#martial-arts .card-content p,
#cultural .card-content p {
    flex: 1 1 auto;
    margin: 0;
    min-height: 0;
    width: 100%;
    line-height: 1.66;
    font-size: 0.9rem;
    /* 本文と料金枠の間に最低限の空間（下揃え時も“呼吸感”を確保） */
    padding-bottom: 1.15rem;
}

#martial-arts .experience-details,
#cultural .experience-details {
    display: flex;
    flex-direction: column;
    flex: 0 0 auto;
    width: 100%;
    box-sizing: border-box;
    margin-top: auto;
    margin-bottom: 0;
    /* 枠内は武道/文化カード専用にコンパクト化（全ページ共通の .experience-details 上書き） */
    padding: 0.55rem 0.85rem 0.5rem;
    gap: 0.35rem;
    border-top: 1px solid rgba(139, 115, 85, 0.12);
}

#martial-arts .experience-details .detail-item,
#cultural .experience-details .detail-item {
    padding: 0.4rem 0;
}

/* Accommodations Section */
.accommodations {
    background: var(--light-color);
    position: relative;
    padding: 4rem 0;
}

.accommodation-info {
    background: var(--white);
    padding: 3rem 0;
    border-top: 1px solid var(--border-color);
}

.info-content {
    display: flex;
    justify-content: center;
    gap: 3rem;
    max-width: 960px;
    margin: 0 auto;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
    width: 2rem;
    text-align: center;
}

.info-text h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.info-text p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* 宿泊情報：チェックイン／アウトを2段表示（.accommodation-info のみ） */
.info-item--check-times {
    align-items: flex-start;
}

.info-item--check-times > i {
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.check-times {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 0.2rem 0 0 0;
    text-align: left;
}

.check-times p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.65;
    letter-spacing: 0.02em;
}

/* タイトル「チェックイン・チェックアウト」を1行化（幅は広め・字間微調整） */
.info-item--check-times .info-text h3 {
    font-size: 1.02rem;
    letter-spacing: 0.04em;
    line-height: 1.35;
    white-space: nowrap;
}

/* 宿泊について：本文を1行化（CJK・PC。英語は文量のため自然折返し） */
.info-item--stay-info .info-text p {
    font-size: 0.9rem;
    line-height: 1.55;
    letter-spacing: 0.02em;
}

:lang(ja) .accommodation-info .info-item--stay-info .info-text p,
:lang(zh-CN) .accommodation-info .info-item--stay-info .info-text p,
:lang(zh-TW) .accommodation-info .info-item--stay-info .info-text p {
    white-space: nowrap;
}

.accommodations::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: var(--washi-texture);
    opacity: 0.02;
    pointer-events: none;
}

.accommodations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.accommodation-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
    text-decoration: none;
    display: block;
}

.accommodation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: var(--washi-texture);
    opacity: 0.02;
    pointer-events: none;
    z-index: 1;
}

.accommodation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px var(--shadow-dark);
    border-color: var(--accent-color);
}

.card-image {
    width: 100%;
    height: 180px;
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
    border-radius: 16px 16px 0 0;
    aspect-ratio: 16/9;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.3s ease;
    border-radius: 16px 16px 0 0;
}

.accommodation-card:hover .card-image img {
    transform: scale(1.02);
}

.card-content {
    padding: 1.5rem;
    position: relative;
    z-index: 2;
    text-align: center;
}

.card-content h3 {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin: 0;
    font-family: 'Noto Serif JP', serif;
    font-weight: 600;
    letter-spacing: 0.05em;
}

/* 宿「宿泊」セクション：客室カード内「詳細を見る」下揃え（#accommodations の accommodation-card のみ） */
#accommodations.accommodations .accommodations-grid {
    align-items: stretch;
}

#accommodations.accommodations a.accommodation-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
    box-sizing: border-box;
}

#accommodations.accommodations .accommodation-card .card-image {
    flex: 0 0 auto;
}

#accommodations.accommodations .accommodation-card .card-content {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-height: 0;
    box-sizing: border-box;
}

#accommodations.accommodations .accommodation-card .card-content h3 {
    margin: 0 0 0.75rem 0;
    flex: 0 0 auto;
}

#accommodations.accommodations .accommodation-card .card-content p {
    flex: 1 1 auto;
    /* 説明文と「詳細を見る」の間に一定の呼吸感（下揃えの margin-top: auto は維持） */
    margin: 0 0 0.85rem 0;
    min-height: 0;
}

#accommodations.accommodations .accommodation-card .card-button {
    margin-top: auto;
    flex: 0 0 auto;
    width: 100%;
    padding: 0.6rem 1.15rem;
    min-height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

/* Contact Section */
.contact {
    background: var(--white);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: var(--washi-texture);
    opacity: 0.02;
    pointer-events: none;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    position: relative;
    z-index: 1;
}

.contact-info h3 {
    font-size: 2.2rem;
    color: var(--dark-color);
    margin-bottom: 2.5rem;
    font-family: 'Noto Serif JP', serif;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item i {
    font-size: 1.3rem;
    color: var(--accent-color);
    margin-top: 5px;
}

.contact-item h4 {
    color: var(--dark-color);
    margin-bottom: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.contact-item p {
    color: var(--text-primary);
    line-height: 1.8;
    font-size: 1.05rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: var(--accent-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.social-links a:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    background: #C19B2E;
}

.contact-form {
    background: var(--light-color);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 20px 50px var(--shadow);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: var(--washi-texture);
    opacity: 0.03;
    pointer-events: none;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background: var(--white);
    color: var(--text-primary);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}



.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.full-width {
    width: 100%;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 4rem 0 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: var(--washi-texture);
    opacity: 0.05;
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.footer-section h3 {
    font-family: 'Noto Serif JP', serif;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.footer-section h4 {
    color: var(--accent-color);
    margin-bottom: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.footer-section p {
    line-height: 1.6;
    color: #ccc;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #ccc;
}

/* Experience Menu Columns */
.experience-menu-columns {
    display: flex;
    gap: 2rem;
}

.experience-column {
    flex: 1;
}

.experience-column ul {
    list-style: none;
}

.experience-column ul li {
    margin-bottom: 0.5rem;
}

.experience-column ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.experience-column ul li a:hover {
    color: var(--accent-color);
}

/* Responsive adjustments for experience columns and footer */
@media (max-width: 768px) {
    .experience-menu-columns {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* CSS-only scroll animations */
.experience-card,
.room-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.experience-card:nth-child(1) { animation-delay: 0.1s; }
.experience-card:nth-child(2) { animation-delay: 0.2s; }
.experience-card:nth-child(3) { animation-delay: 0.3s; }
.experience-card:nth-child(4) { animation-delay: 0.4s; }
.experience-card:nth-child(5) { animation-delay: 0.5s; }
.experience-card:nth-child(6) { animation-delay: 0.6s; }
.experience-card:nth-child(7) { animation-delay: 0.7s; }
.experience-card:nth-child(8) { animation-delay: 0.8s; }

.room-card:nth-child(1) { animation-delay: 0.2s; }
.room-card:nth-child(2) { animation-delay: 0.4s; }
.room-card:nth-child(3) { animation-delay: 0.6s; }


/* @keyframes bounce - removed as scroll-arrow is hidden */

/* @keyframes phoenixFloat - removed as hero::before is disabled */

/* Philosophy Section - Ryokan Style */
.philosophy {
    background: linear-gradient(135deg, #FEFEFE 0%, #F8F6F1 100%);
    position: relative;
    padding: 40px 0 120px;
    overflow: hidden;
}

/* EN top page: make philosophy section more compact */
body.home-en .philosophy {
    padding-top: 92px;
    padding-bottom: 92px;
}

body.home-en .philosophy-content {
    gap: 64px;
}

body.home-en .catchphrase-container {
    gap: 18px;
}

body.home-en .catchphrase-line {
    line-height: 1.28;
}

body.home-en .main-text-content {
    padding: 44px 42px;
}

body.home-en .main-text-content p {
    line-height: 2.0;
    margin-bottom: 20px;
}

body.home-en .main-text-content p:first-child {
    margin-bottom: 26px;
    line-height: 1.6;
}

/* Traditional Chinese top page: philosophy catchphrase hierarchy & readability */
body.home-zh-tw .philosophy {
    padding-top: 110px;
    padding-bottom: 110px;
}

body.home-zh-tw .philosophy-content {
    gap: 72px;
}

body.home-zh-tw .catchphrase-section {
    padding-block: 0.75rem;
}

body.home-zh-tw .catchphrase-container {
    gap: 1.4em;
    max-width: 100%;
    align-items: stretch;
    justify-content: center;
    padding: 1.1rem 0.75rem 1.35rem;
}

/* TC catchphrase: one phrase = one line, unified size, emphasis via spacing only (no size variation) */
body.home-zh-tw .philosophy .catchphrase-line {
    font-size: 2.05rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    line-height: 1.78;
    margin: 0;
    text-align: center;
    white-space: nowrap;
    word-break: keep-all;
    line-break: strict;
}

body.home-zh-tw .main-text-content {
    padding: 56px 48px;
}

/* Simplified Chinese top page: keep each catchphrase phrase on one line.
   /zh-cn/index.html has no body class, so target via html[lang]. */
html[lang="zh-CN"] .catchphrase-section {
    padding-block: 0.75rem;
}

html[lang="zh-CN"] .catchphrase-container {
    gap: 1.4em;
    max-width: 100%;
    align-items: stretch;
    justify-content: center;
    padding: 1.1rem 0.75rem 1.35rem;
}

html[lang="zh-CN"] .philosophy .catchphrase-line {
    font-size: 2.05rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    line-height: 1.78;
    margin: 0;
    text-align: center;
    white-space: nowrap;
    word-break: keep-all;
    line-break: strict;
}

body.home-zh-tw .main-text-content p {
    text-align: left;
    line-height: 2.15;
    letter-spacing: 0.06em;
    margin-bottom: 1.35em;
    text-justify: none;
}

body.home-zh-tw .main-text-content p:first-child {
    line-height: 1.9;
    margin-bottom: 1.5em;
    text-align: left;
}

body.home-zh-tw .main-text-content p:last-child {
    margin-bottom: 0;
    font-style: normal;
    color: #3d3d3d;
    font-weight: 400;
}

/* Traditional Chinese homepage: section titles — breathing room, readable subtitles, spacing to cards */
body.home-zh-tw .section-header {
    margin-bottom: 7.75rem;
}

body.home-zh-tw .section-title {
    font-size: 3.18rem;
    letter-spacing: 0.085em;
    margin-bottom: 2.35rem;
}

body.home-zh-tw .section-subtitle {
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    line-height: 1.72;
}

/* EN top page: align experience card buttons */
body.home-en #experiences .experiences-grid {
    align-items: stretch;
}

body.home-en #experiences .experience-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

body.home-en #experiences .experience-card .card-content {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}

body.home-en #experiences .experience-card .card-button {
    margin-top: auto;
}

.philosophy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><filter id="inkWash"><feGaussianBlur stdDeviation="1"/><feColorMatrix type="matrix" values="0.1 0.1 0.1 0 0 0.1 0.1 0.1 0 0 0.1 0.1 0.1 0 0 0 0 0 0.03 0"/></filter></defs><g filter="url(%23inkWash)"><circle cx="50" cy="50" r="30" fill="%238B7355" opacity="0.1"/><circle cx="150" cy="150" r="40" fill="%232F4F4F" opacity="0.08"/><path d="M0,100 Q50,80 100,100 T200,100" stroke="%23D4AF37" stroke-width="0.5" fill="none" opacity="0.1"/></g></svg>');
    background-size: 200px 200px;
    opacity: 0.6;
    pointer-events: none;
}

.philosophy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Left Side - Catchphrase */
.catchphrase-section {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    position: relative;
}

.catchphrase-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    position: relative;
}

.catchphrase-line {
    font-family: 'Noto Serif JP', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: #2C2C2C;
    writing-mode: horizontal-tb;
    text-orientation: initial;
    letter-spacing: 0.2em;
    line-height: 1.6;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.4s ease;
    cursor: default;
    text-align: center;
    /* 筆文字風のスタイリング */
    font-variant: small-caps;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.catchphrase-line::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 60px;
    background: linear-gradient(180deg, #D4AF37, #8B7355);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 2px;
}

.catchphrase-line:hover::before {
    opacity: 1;
}

.catchphrase-line:hover {
    color: #8B7355;
    transform: translateX(8px);
    text-shadow: 0 4px 12px rgba(139, 115, 85, 0.3);
}

/* Right Side - Main Text */
.main-text-section {
    display: flex;
    align-items: center;
    height: 100%;
}

.main-text-content {
    background: rgba(255, 255, 255, 0.9);
    padding: 60px 50px;
    border-radius: 24px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(139, 115, 85, 0.15);
    position: relative;
    backdrop-filter: blur(15px);
    max-width: 100%;
}

.main-text-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><filter id="paperTexture"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" result="noise"/><feColorMatrix in="noise" type="saturate" values="0"/></filter></defs><rect width="100" height="100" fill="white" filter="url(%23paperTexture)" opacity="0.2"/></svg>');
    background-size: 100px 100px;
    border-radius: 24px;
    pointer-events: none;
}

.main-text-content p {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.15rem;
    line-height: 2.4;
    color: #2C2C2C;
    margin-bottom: 28px;
    position: relative;
    z-index: 2;
    text-align: justify;
    letter-spacing: 0.08em;
}

.main-text-content p:first-child {
    font-size: 1.4rem;
    font-weight: 600;
    color: #8B7355;
    margin-bottom: 35px;
    text-align: left;
    line-height: 1.8;
}

.main-text-content p:last-child {
    margin-bottom: 0;
    font-style: italic;
    color: #5A5A5A;
    font-weight: 400;
}

/* Decorative Elements */
.philosophy::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

/* Responsive Design for Philosophy Section */
@media (max-width: 1024px) {
    .philosophy-content {
        gap: 60px;
        padding: 0 30px;
    }
    
    .catchphrase-line {
        font-size: 2rem;
    }
    
    .main-text-content {
        padding: 50px 40px;
    }
    
    .main-text-content p {
        font-size: 1.1rem;
    }
    
    .main-text-content p:first-child {
        font-size: 1.3rem;
    }

    body.home-zh-tw .philosophy .catchphrase-line,
    html[lang="zh-CN"] .philosophy .catchphrase-line {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .philosophy {
        padding: 32px 0 100px;
    }
    
    .philosophy-content {
        grid-template-columns: 1fr;
        gap: 60px;
        padding: 0 20px;
    }
    
    .catchphrase-container {
        gap: 25px;
    }
    
    .catchphrase-line {
        font-size: 1.8rem;
    }

    body.home-zh-tw .philosophy .catchphrase-line,
    html[lang="zh-CN"] .philosophy .catchphrase-line {
        font-size: 1.55rem;
    }
    
    .main-text-content {
        padding: 40px 30px;
    }
    
    .main-text-content p {
        font-size: 1.05rem;
        line-height: 2.2;
    }
    
    .main-text-content p:first-child {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .nav-center h1 {
        font-size: 20px;
    }
    
    .nav-center p {
        font-size: 10px;
    }
    
    .nav-left, .nav-right {
        gap: 20px;
    }
    
    .philosophy {
        padding: 24px 0 80px;
    }
    
    .philosophy-content {
        padding: 0 15px;
    }
    
    .catchphrase-line {
        font-size: 1.6rem;
    }

    body.home-zh-tw .philosophy .catchphrase-line {
        font-size: 1.28rem;
    }
    
    .main-text-content {
        padding: 30px 25px;
    }
}

/* Fixed Action Buttons */
.fixed-buttons {
    position: fixed;
    bottom: max(30px, calc(20px + env(safe-area-inset-bottom)));
    right: max(20px, calc(16px + env(safe-area-inset-right)));
    z-index: 3000;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-end;
}

.main-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* EN pages: fixed vertical buttons — spacing + size so text never overflows */
html[lang="en"] .fixed-buttons {
    gap: 16px;
}

html[lang="en"] .main-buttons {
    gap: 14px;
}

html[lang="en"] .vertical-btn {
    width: 50px;
    height: 230px;
}

html[lang="en"] .vertical-btn .btn-text {
    letter-spacing: 0.1em;
    line-height: 1.1;
    padding: 14px 0;
}

.vertical-btn {
    width: 44px;
    height: 132px;
    background: linear-gradient(135deg, #2C2C2C, #1A1A1A);
    border: 1px solid rgba(212, 175, 55, 0.32); /* gold hairline */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
                box-shadow 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
                border-color 0.35s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(28, 28, 28, 0.22),
                0 1px 3px rgba(28, 28, 28, 0.12),
                inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.vertical-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
    opacity: 0;
    transition: opacity 0.35s ease;
}

.vertical-btn:hover::before {
    opacity: 1;
}

.btn-text {
    color: #FFFFFF;
    font-family: 'Noto Serif JP', serif;
    font-size: 13px;
    font-weight: 500;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    white-space: nowrap;
    word-break: keep-all;
    line-height: 1.15;
    letter-spacing: 0.14em;
    position: relative;
    z-index: 2;
}

.vertical-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(28, 28, 28, 0.30),
                0 2px 6px rgba(28, 28, 28, 0.14),
                inset 0 1px 0 rgba(255, 255, 255, 0.06);
    border-color: rgba(212, 175, 55, 0.65); /* gold accent on hover */
}

.vertical-btn:active {
    transform: translateY(-1px);
    transition-duration: 0.12s;
}

.accommodation-btn {
    background: linear-gradient(160deg, #355757 0%, #1F3838 100%); /* 深緑 — brand secondary */
}

.experience-btn {
    background: linear-gradient(160deg, #5A4A39 0%, #2E2419 100%); /* 渋い土色 — derived from brand primary */
}

/* Redundant with the navbar language switcher — hidden visually, markup retained */
.language-buttons {
    display: none;
}

/* Desktop header: center the logo on the navbar regardless of right-side ig/lang widgets */
@media (min-width: 1200px) {
    .nav-container {
        position: relative;
    }

    .header-nav {
        flex: 1;
        max-width: none;
        grid-template-columns: 1fr 1fr;
        gap: 0;
    }

    .nav-center {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        z-index: 2;
        margin: 0;
    }

    .nav-left,
    .nav-right {
        gap: 18px;
    }

    .nav-left {
        padding-right: 130px;
    }

    .nav-right {
        padding-left: 130px;
        padding-right: 30px;
    }

    .nav-container > .ig-btn,
    .nav-container > .lang-switcher {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 3;
    }

    .nav-container > .lang-switcher {
        right: 20px;
    }

    .nav-container > .ig-btn {
        right: 110px;
        margin-right: 0;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 1.5rem;
        overflow-x: auto;
    }
    
    .nav-link {
        padding: 10px 12px;
        font-size: 0.85rem;
        min-width: 70px;
    }
    
    .nav-link .nav-icon {
        width: 24px;
        height: 24px;
    }
    
    .book-now {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}

@media (max-width: 900px) {
    .nav-menu {
        gap: 1rem;
        overflow-x: auto;
    }
    
    .nav-link {
        padding: 8px 10px;
        font-size: 0.8rem;
        min-width: 60px;
    }
    
    .nav-link .nav-icon {
        width: 22px;
        height: 22px;
    }
    
    .book-now {
        padding: 7px 14px;
        font-size: 0.8rem;
    }
}

@media (max-width: 960px) {
    .header-nav {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }
    
    .nav-left, .nav-right {
        justify-content: center;
        gap: 20px;
    }
    
    .nav-center {
        order: -1;
        margin-bottom: 1rem;
    }
    
    .nav-center::before,
    .nav-center::after {
        display: none;
    }
    
    .nav-link .nav-icon {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 768px) {
    .header-nav {
        position: fixed;
        top: 80px;
        right: -100%;
        left: auto;
        width: min(75%, 320px);
        max-height: calc(100vh - 80px);
        display: flex;
        flex-direction: column;
        grid-template-columns: none;
        background: var(--light-color);
        text-align: left;
        transition: right 0.3s ease;
        box-shadow: -6px 10px 27px var(--shadow);
        padding: 1rem 0;
        z-index: 1000;
        backdrop-filter: blur(20px);
        overflow-y: auto;
        gap: 0;
        margin: 0;
    }

    .navbar:has(.nav-toggle:checked) .header-nav {
        right: 0;
    }

    .header-nav .nav-left,
    .header-nav .nav-right {
        flex-direction: column;
        gap: 0;
        width: 100%;
        align-items: stretch;
        justify-content: flex-start;
    }

    .header-nav .nav-center {
        display: none;
    }

    .nav-container {
        justify-content: flex-end;
        gap: 0.75rem;
    }

    .lang-dropdown {
        right: 0;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: var(--light-color);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px var(--shadow);
        padding: 2rem 0;
        z-index: 1000;
        backdrop-filter: blur(20px);
        overflow-x: visible;
    }

    .nav-toggle:checked ~ .nav-menu {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    /* Close menu when clicking nav links */
    .header-nav .nav-link {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 1rem;
        padding: 1.25rem 1.75rem;
        border-bottom: 1px solid var(--border-color);
        margin: 0;
        border-radius: 0;
        min-width: auto;
        width: 100%;
        justify-content: flex-start;
        text-align: left;
    }

    .header-nav .nav-link .nav-icon {
        width: 24px;
        height: 24px;
        flex: 0 0 24px;
        object-position: left center;
    }

    .header-nav .nav-link:last-child {
        border-bottom: none;
    }

    .header-nav .nav-link:hover {
        background: rgba(212, 175, 55, 0.1);
        color: var(--accent-color);
    }

    .hero {
        /* Mobile/tablet: use the video's native 16:9 so the full frame shows,
           and clear the 81px fixed navbar so it isn't covered */
        aspect-ratio: 16 / 9;
        margin-top: 81px;
        padding-bottom: 40px;
    }

    .hero-image {
        width: 100%;
        height: 100%;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }


    .section-title {
        font-size: 2.2rem;
    }

    body.home-zh-tw .section-title {
        font-size: 2.36rem;
        margin-bottom: 2rem;
    }

    body.home-zh-tw .section-header {
        margin-bottom: 6.75rem;
    }

    body.home-zh-tw .section-subtitle {
        line-height: 1.7;
        padding: 0 0.35rem;
    }

    .experiences-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.85rem;
    }

    #experiences .experience-card .card-content {
        padding: 1rem 0.85rem 1.1rem;
    }

    #experiences .experience-card .card-content h3 {
        font-size: 1.05rem;
        margin-bottom: 0.45rem;
    }

    #experiences .experience-card .card-content p {
        font-size: 0.82rem;
        line-height: 1.55;
        margin-bottom: 0.85rem;
    }

    #experiences .experience-card .card-button {
        font-size: 0.78rem;
        padding: 0.45rem 0.75rem;
    }

    .accommodations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    #accommodations.accommodations .accommodation-card .card-button {
        border-radius: 14px;
    }

    .info-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .info-item {
        justify-content: center;
    }

    .image-placeholder {
        width: 100%;
        max-width: 350px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding-bottom: 30px;
    }
    
    .hero-image {
        width: 100%;
        height: 100%;
    }

    .section-title {
        font-size: 1.5rem;
    }

    body.home-zh-tw .section-title {
        font-size: 1.62rem;
        margin-bottom: 1.65rem;
    }

    body.home-zh-tw .section-header {
        margin-bottom: 5.5rem;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .accommodations-grid {
        grid-template-columns: 1fr;
    }

    /* Fixed buttons responsive */
    .fixed-buttons {
        bottom: max(20px, calc(14px + env(safe-area-inset-bottom)));
        right: max(14px, calc(12px + env(safe-area-inset-right)));
        gap: 14px;
    }

    .vertical-btn {
        width: 38px;
        height: 110px;
        border-radius: 10px;
    }

    /* EN pages: keep mobile vertical buttons tall enough for long labels */
    html[lang="en"] .vertical-btn {
        width: 44px;
        height: 200px;
    }

    html[lang="en"] .vertical-btn .btn-text {
        letter-spacing: 0.08em;
        padding: 10px 0;
    }

    .btn-text {
        font-size: 12px;
        letter-spacing: 0.12em;
    }

    .lang-btn {
        font-size: 13px;
        padding: 8px 14px 8px 16px;
        gap: 6px;
    }

    .lang-arrow {
        width: 11px;
        height: 11px;
    }

    .lang-dropdown {
        min-width: 140px;
    }

    .lang-option {
        font-size: 13px;
        padding: 9px 16px;
    }

    /* 極窄：チェックイン系タイトルは改行可 */
    .info-item--check-times .info-text h3 {
        white-space: normal;
    }

    :lang(ja) .accommodation-info .info-item--stay-info .info-text p,
    :lang(zh-CN) .accommodation-info .info-item--stay-info .info-text p,
    :lang(zh-TW) .accommodation-info .info-item--stay-info .info-text p {
        white-space: normal;
    }
}

/* Experience Page Specific Styles */
.experience-nav {
    background: var(--light-color);
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-color);
}

.experience-nav .nav-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.experience-nav .nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-family: 'Noto Serif JP', serif;
    position: relative;
}

.experience-nav .nav-link:hover {
    background: var(--accent-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.experience-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.experience-nav .nav-link:hover::after {
    width: 100%;
}

.experience-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    text-decoration: none;
    display: block;
}

.experience-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px var(--shadow-dark);
}

.card-image {
    width: 100%;
    height: 180px;
    aspect-ratio: 16/9;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 16px 16px 0 0;
    transition: transform 0.3s ease;
}

.experience-card:hover .card-image img {
    transform: scale(1.02);
}

.card-content {
    padding: 1.5rem;
}

.card-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.75rem;
    font-family: 'Noto Serif JP', serif;
}

.card-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.experience-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.detail-label {
    color: var(--text-secondary);
    font-weight: 500;
}

.detail-value {
    color: var(--text-primary);
    font-weight: 600;
}

.detail-value.price {
    color: var(--accent-color);
    font-weight: 700;
}

.experience-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tag {
    background: var(--light-color);
    color: var(--text-secondary);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.benefits {
    background: var(--light-color);
    position: relative;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-item {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 8px 25px var(--shadow);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px var(--shadow-dark);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.benefit-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.75rem;
    font-family: 'Noto Serif JP', serif;
}

.benefit-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.9rem;
}

.reservation {
    background: var(--white);
    position: relative;
}

.reservation-content {
    max-width: 1200px;
    margin: 0 auto;
}

.reservation-info h3,
.reservation-form h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 2rem;
    font-family: 'Noto Serif JP', serif;
}

/* Reservation Layout */
.reservation-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: start;
}

.reservation-cards .info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-item {
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.info-icon {
        font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.info-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-family: 'Noto Serif JP', serif;
}

.info-item p {
    color: var(--text-primary);
    font-size: 0.9rem;
    line-height: 1.5;
    text-align: center;
}

/* 体験一覧（/ja/experiences/）：括弧注記を2行目に見せる */
.info-item p .info-main {
    display: block;
}

.info-item p .info-note {
    display: block;
    margin-top: 0.22em;
    line-height: 1.35;
    color: var(--text-secondary);
    white-space: nowrap;
}

.notice-box {
    background: #fef3cd;
    border: 1px solid #fde68a;
    border-radius: 12px;
    padding: 1.5rem;
}

.notice-box h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #92400e;
    margin-bottom: 1rem;
    font-family: 'Noto Serif JP', serif;
}

.notice-box ul {
    list-style: none;
    padding: 0;
}

.notice-box li {
    color: #92400e;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.reservation-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px var(--shadow);
    border: 1px solid var(--border-color);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-family: 'Noto Serif JP', serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Responsive adjustments for reservation layout */
@media (max-width: 1023px) {
    .reservation-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Responsive adjustments for experience page */
@media (max-width: 768px) {
    .experiences:not(#experiences) .experiences-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .experience-nav .nav-links {
        gap: 1.5rem;
        flex-wrap: wrap;
    }
    
    .experience-nav .nav-link {
        font-size: 1rem;
        padding: 0.6rem 1.2rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .reservation-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .experience-nav .nav-links {
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }
    
    .experience-nav .nav-link {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
        width: 200px;
        text-align: center;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .card-content {
        padding: 1rem;
    }
    
    .reservation-form {
        padding: 1.5rem;
    }
}

/* Samurai Featured Section */
.samurai-featured {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px var(--shadow-dark);
    border: 1px solid var(--border-color);
}

/* Make the featured samurai card behave like other clickable cards */
.samurai-featured-link {
    display: block;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.samurai-featured-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px var(--shadow-dark);
    border-color: var(--accent-color);
}

.samurai-featured-link:focus-visible {
    outline: 2px solid #d4a017;
    outline-offset: 4px;
    border-radius: 20px;
}

.samurai-image-container {
    text-align: center;
    padding: 2rem;
    background: var(--light-color);
}

.samurai-featured-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px var(--shadow);
    transition: transform 0.3s ease;
}

.samurai-featured-image:hover {
    transform: scale(1.02);
}

.samurai-content {
    padding: 2.5rem;
}

.samurai-content h3 {
        font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-family: 'Noto Serif JP', serif;
    text-align: center;
}

.samurai-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1rem;
    text-align: center;
}

.samurai-content .experience-details {
    margin-bottom: 1.5rem;
    text-align: center;
}

.samurai-content .experience-details .detail-item {
    justify-content: center;
    text-align: center;
}

.samurai-content .experience-tags {
    margin-bottom: 2rem;
    justify-content: center;
}

.samurai-content .btn {
    display: block;
    margin: 0 auto;
    max-width: 200px;
}

/* Responsive adjustments for samurai section */
@media (max-width: 768px) {
    .samurai-image-container {
        padding: 1.5rem;
    }
    
    .samurai-content {
        padding: 2rem;
    }
    
    .samurai-content h3 {
        font-size: 1.3rem;
    }
    
    .samurai-content p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .samurai-image-container {
        padding: 1rem;
    }
    
    .samurai-content {
        padding: 1.5rem;
    }
    
    .samurai-content h3 {
        font-size: 1.2rem;
    }
    
    .samurai-content p {
        font-size: 0.9rem;
    }
    
    .samurai-content .btn {
        max-width: 100%;
    }
}

/* Room Page Styles */
.room-overview {
    background: var(--white);
    position: relative;
}

.room-content {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.room-description {
    max-width: 800px;
    text-align: center;
    padding: 2rem 0;
}

.room-image {
    text-align: center;
}

.room-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 15px 40px var(--shadow-dark);
}

.room-description h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    font-family: 'Noto Serif JP', serif;
}

.room-description p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.room-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--light-color);
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.feature-item i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.room-details {
    background: var(--light-color);
    position: relative;
}

.details-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 960px;
    margin: 0 auto;
}

.detail-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px var(--shadow-dark);
}

.detail-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.detail-icon i {
        font-size: 1.5rem;
    color: var(--white);
}

.detail-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    font-family: 'Noto Serif JP', serif;
}

.detail-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.detail-card li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}

.detail-card li:last-child {
    border-bottom: none;
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem 1rem;
    list-style: none;
    padding: 0;
    text-align: left;
}

.equipment-grid li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
}


@media (max-width: 768px) {
    .equipment-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
}

.amenity-sections {
    text-align: left;
}

.amenity-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
    margin: 1.5rem 0 1rem 0;
    font-family: 'Noto Serif JP', serif;
    letter-spacing: 0.05em;
}

.amenity-subtitle:first-child {
    margin-top: 0;
}

.room-gallery {
    background: var(--white);
    position: relative;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px var(--shadow-dark);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: var(--white);
    padding: 2rem 1.5rem 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h4 {
    font-size: 1.2rem;
    font-weight: 600;
    font-family: 'Noto Serif JP', serif;
}

.room-pricing {
    background: var(--light-color);
    position: relative;
}

.pricing-content {
    max-width: 600px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px var(--shadow-dark);
    text-align: center;
}

.pricing-card h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 2rem;
    font-family: 'Noto Serif JP', serif;
}

.price-details {
    margin-bottom: 2rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.price-item:last-child {
    border-bottom: none;
}

.price-label {
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 500;
}

.price-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

.price-note {
    margin-bottom: 2rem;
}

.price-note p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

/* Responsive adjustments for room pages */
@media (max-width: 768px) {
    .room-content {
        padding: 0 1rem;
    }
    
    .room-description {
        max-width: 100%;
        text-align: left;
    }
    
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .room-features {
        grid-template-columns: 1fr;
    }
    
    .pricing-card {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .room-content {
        padding: 0 0.5rem;
    }
    
    .room-description {
        text-align: left;
    }
    
    .detail-card {
        padding: 1.5rem;
    }
    
    .gallery-item img {
        height: 250px;
    }
    
    .pricing-card {
        padding: 1.5rem;
    }
    
    .pricing-card h3 {
        font-size: 1.5rem;
    }
    
    .price-value {
        font-size: 1.3rem;
    }
}

/* Restaurant Section Styles */
.restaurant {
    background: var(--white);
    position: relative;
    padding: 6rem 0;
}

.restaurant::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 115, 85, 0.05) 0%, rgba(47, 79, 79, 0.05) 100%);
    pointer-events: none;
}

.restaurant-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.restaurant-image {
    text-align: center;
    width: 100%;
}

/* Homepage restaurant image: clickable without layout change */
.restaurant-image-link {
    display: block;
    cursor: pointer;
}

.restaurant-image-link img {
    display: block;
}

.restaurant-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 15px 40px var(--shadow-dark);
    transition: transform 0.3s ease;
}

.restaurant-image img:hover {
    transform: scale(1.02);
}

.restaurant-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.restaurant-description h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    font-family: 'Noto Serif JP', serif;
}

.restaurant-description p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.restaurant-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin: 2rem 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.restaurant-features .feature-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.65rem 0.5rem;
    background: var(--light-color);
    border-radius: 8px;
    font-size: 0.88rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.restaurant-features .feature-item:hover {
    background: var(--accent-color);
    color: var(--white);
    transform: translateY(-2px);
}

.restaurant-features .feature-item i {
    color: var(--accent-color);
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.restaurant-features .feature-item:hover i {
    color: var(--white);
}

.restaurant .btn {
    margin-top: 1.5rem;
}

/* Traditional Chinese homepage: restaurant “道地會席料理” block — full vertical axis centered */
body.home-zh-tw #restaurant .restaurant-description {
    text-align: center;
}

body.home-zh-tw #restaurant .restaurant-description h3 {
    text-align: center;
}

body.home-zh-tw #restaurant .restaurant-description p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

body.home-zh-tw #restaurant .restaurant-features {
    justify-items: stretch;
    row-gap: 1rem;
    column-gap: 1rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

body.home-zh-tw #restaurant .restaurant-features .feature-item {
    justify-content: center;
    text-align: center;
}

body.home-zh-tw #restaurant .restaurant-description > .btn.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 1.75rem;
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive adjustments for restaurant section */
@media (max-width: 768px) {
    .restaurant {
        padding: 4rem 0;
    }
    
    .restaurant-content {
        gap: 2rem;
    }
    
    .restaurant-image img {
        height: 400px;
    }
    
    .restaurant-features {
        grid-template-columns: repeat(2, 1fr);
        max-width: 400px;
    }
    
    .restaurant-description h3 {
        font-size: 1.5rem;
    }
    
    .restaurant-description p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .restaurant {
        padding: 3rem 0;
    }
    
    .restaurant-content {
        gap: 1.5rem;
    }
    
    .restaurant-image img {
        height: 300px;
    }
    
    .restaurant-features {
        grid-template-columns: 1fr;
        max-width: 300px;
    }
    
    .restaurant-description h3 {
        font-size: 1.3rem;
    }
    
    .restaurant-description p {
        font-size: 0.9rem;
    }
    
    .restaurant-features .feature-item {
        padding: 0.6rem;
        font-size: 0.85rem;
    }
}

/* Restaurant Page Styles */
.restaurant-overview {
    background: var(--white);
    position: relative;
    padding: 6rem 0;
}

.restaurant-overview .restaurant-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.restaurant-overview .restaurant-image {
    text-align: center;
}

.restaurant-overview .restaurant-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 15px 40px var(--shadow-dark);
    transition: transform 0.3s ease;
}

.restaurant-overview .restaurant-image img:hover {
    transform: scale(1.02);
}

.restaurant-overview .restaurant-description h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    font-family: 'Noto Serif JP', serif;
}

.restaurant-overview .restaurant-description p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.restaurant-overview .restaurant-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.restaurant-overview .restaurant-features .feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--light-color);
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.restaurant-overview .restaurant-features .feature-item:hover {
    background: var(--accent-color);
    color: var(--white);
    transform: translateY(-2px);
}

.restaurant-overview .restaurant-features .feature-item i {
    color: var(--accent-color);
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.restaurant-overview .restaurant-features .feature-item:hover i {
    color: var(--white);
}

/* Menu Section */
.menu-section {
    background: var(--light-color);
    position: relative;
    padding: 6rem 0;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.menu-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow);
    transition: all 0.3s ease;
}

.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px var(--shadow-dark);
}

.menu-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.menu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.menu-card:hover .menu-image img {
    transform: scale(1.05);
}

.menu-content {
    padding: 1.5rem;
}

.menu-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-family: 'Noto Serif JP', serif;
}

.menu-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.menu-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: right;
}

/* Special Menu Section */
.special-menu {
    background: var(--white);
    position: relative;
    padding: 6rem 0;
}

.special-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.special-image {
    text-align: center;
}

.special-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 15px 40px var(--shadow-dark);
    transition: transform 0.3s ease;
}

.special-image img:hover {
    transform: scale(1.02);
}

.special-description h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    font-family: 'Noto Serif JP', serif;
}

.special-description p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.special-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.special-features .feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
    background: var(--light-color);
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.special-features .feature-item:hover {
    background: var(--accent-color);
    color: var(--white);
    transform: translateY(-2px);
}

.special-features .feature-item i {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.special-features .feature-item:hover i {
    color: var(--white);
}

.special-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin: 1.5rem 0;
}

/* Wine Section */
.wine-section {
    background: var(--light-color);
    position: relative;
    padding: 6rem 0;
}

.wine-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.wine-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.wine-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px var(--shadow-dark);
}

.wine-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.wine-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.wine-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-family: 'Noto Serif JP', serif;
}

.wine-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Responsive adjustments for restaurant page */
@media (max-width: 768px) {
    .restaurant-overview .restaurant-content,
    .special-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .wine-grid {
        grid-template-columns: 1fr;
    }
    
    .special-features {
        grid-template-columns: 1fr;
    }
    
    .restaurant-overview .restaurant-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .restaurant-overview .restaurant-content,
    .special-content {
        gap: 1.5rem;
    }
    
    .menu-content,
    .wine-card {
        padding: 1rem;
    }
    
    .special-features .feature-item {
        padding: 0.8rem;
    }
}

/* Location Section Styles */
.location {
    background: var(--light-color);
    position: relative;
    padding: 6rem 0;
}

.location::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 115, 85, 0.05) 0%, rgba(47, 79, 79, 0.05) 100%);
    pointer-events: none;
}

.location-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.location-image {
    text-align: center;
    width: 100%;
}

.location-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 15px 40px var(--shadow-dark);
    transition: transform 0.3s ease;
}

.location-image img:hover {
    transform: scale(1.02);
}

.location-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.location-description h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    font-family: 'Noto Serif JP', serif;
}

.location-description p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.location-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin: 2rem 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.location-features .feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--white);
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px var(--shadow);
}

.location-features .feature-item:hover {
    background: var(--accent-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow-dark);
}

.location-features .feature-item i {
    color: var(--accent-color);
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.location-features .feature-item:hover i {
    color: var(--white);
}

.location .btn {
    margin-top: 1.5rem;
}

/* Responsive adjustments for location section */
@media (max-width: 768px) {
    .location {
        padding: 4rem 0;
    }
    
    .location-content {
        gap: 2rem;
    }
    
    .location-image img {
        height: 400px;
    }
    
    .location-features {
        grid-template-columns: repeat(2, 1fr);
        max-width: 400px;
    }
    
    .location-description h3 {
        font-size: 1.5rem;
    }
    
    .location-description p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .location {
        padding: 3rem 0;
    }
    
    .location-content {
        gap: 1.5rem;
    }
    
    .location-image img {
        height: 300px;
    }
    
    .location-features {
        grid-template-columns: 1fr;
        max-width: 300px;
    }
    
    .location-description h3 {
        font-size: 1.3rem;
    }
    
    .location-description p {
        font-size: 0.9rem;
    }
    
    .location-features .feature-item {
        padding: 0.6rem;
        font-size: 0.85rem;
    }
}

/* Photography Page Styles */
.photography-overview {
    background: var(--white);
    position: relative;
    padding: 6rem 0;
}

.photography-overview .photography-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.photography-overview .photography-image {
    text-align: center;
}

.photography-overview .photography-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 15px 40px var(--shadow-dark);
    transition: transform 0.3s ease;
}

.photography-overview .photography-image img:hover {
    transform: scale(1.02);
}

.photography-overview .photography-description h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    font-family: 'Noto Serif JP', serif;
}

.photography-overview .photography-description p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.photography-overview .photography-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.photography-overview .photography-features .feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--light-color);
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.photography-overview .photography-features .feature-item:hover {
    background: var(--accent-color);
    color: var(--white);
    transform: translateY(-2px);
}

.photography-overview .photography-features .feature-item i {
    color: var(--accent-color);
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.photography-overview .photography-features .feature-item:hover i {
    color: var(--white);
}

/* Photography Types Section */
.photography-types {
    background: var(--light-color);
    position: relative;
    padding: 6rem 0;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.type-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow);
    transition: all 0.3s ease;
}

.type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px var(--shadow-dark);
}

.type-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.type-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.type-card:hover .type-image img {
    transform: scale(1.05);
}

.type-content {
    padding: 1.5rem;
}

.type-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-family: 'Noto Serif JP', serif;
}

.type-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.type-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: right;
}

/* Facilities Section */
.facilities {
    background: var(--white);
    position: relative;
    padding: 6rem 0;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.facility-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.facility-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px var(--shadow-dark);
}

.facility-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.facility-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.facility-card:hover .facility-image img {
    transform: scale(1.05);
}

.facility-content {
    padding: 1.5rem;
}

.facility-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-family: 'Noto Serif JP', serif;
}

.facility-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.facility-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-tag {
    background: var(--accent-color);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Photography Pricing Section */
.photography-pricing {
    background: var(--light-color);
    position: relative;
    padding: 6rem 0;
}

.pricing-content {
    max-width: 600px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px var(--shadow-dark);
    text-align: center;
}

.pricing-card h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 2rem;
    font-family: 'Noto Serif JP', serif;
}

.price-details {
    margin-bottom: 2rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.price-item:last-child {
    border-bottom: none;
}

.price-label {
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 500;
}

.price-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

.price-note {
    margin-bottom: 2rem;
}

.price-note p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

/* Guidelines Section */
.guidelines {
    background: var(--white);
    position: relative;
    padding: 6rem 0;
}

.guidelines-content {
    max-width: 800px;
    margin: 0 auto;
}

.guidelines-list {
    display: grid;
    gap: 2rem;
}

.guideline-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--light-color);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.guideline-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow);
}

.guideline-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.guideline-icon i {
    font-size: 1.2rem;
    color: var(--white);
}

.guideline-text h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-family: 'Noto Serif JP', serif;
}

.guideline-text p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Responsive adjustments for photography page */
@media (max-width: 768px) {
    .photography-overview .photography-content,
    .types-grid,
    .facilities-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .photography-overview .photography-features {
        grid-template-columns: 1fr;
    }
    
    .pricing-card {
        padding: 2rem;
    }
    
    .guideline-item {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .photography-overview .photography-content,
    .types-grid,
    .facilities-grid {
        gap: 1.5rem;
    }
    
    .type-content,
    .facility-content {
        padding: 1rem;
    }
    
    .pricing-card {
        padding: 1.5rem;
    }
    
    .pricing-card h3 {
        font-size: 1.5rem;
    }
    
    .price-value {
        font-size: 1.3rem;
    }
}


/* Partnership Services Section Styles */
.partnership {
    background: var(--light-color);
    position: relative;
    padding: 6rem 0;
}

.partnership::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 115, 85, 0.05) 0%, rgba(47, 79, 79, 0.05) 100%);
    pointer-events: none;
}

.partnership-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.partnership-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.partnership-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px var(--shadow-dark);
}

.partnership-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.partnership-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.partnership-card:hover .partnership-image img {
    transform: scale(1.05);
}

.partnership-content {
    padding: 1.5rem;
}

.partnership-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-family: "Noto Serif JP", serif;
}

.partnership-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.partnership-content .btn {
    width: 100%;
    text-align: center;
}

/* Responsive adjustments for partnership section */
@media (max-width: 768px) {
    .partnership {
        padding: 4rem 0;
    }
    
    .partnership-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .partnership-content {
        padding: 1.2rem;
    }
    
    .partnership-content h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .partnership {
        padding: 3rem 0;
    }
    
    .partnership-grid {
        gap: 1rem;
    }
    
    .partnership-content {
        padding: 1rem;
    }
    
    .partnership-content h3 {
        font-size: 1.1rem;
    }
    
    .partnership-content p {
        font-size: 0.85rem;
    }
}

/* Access Section Styles */
.access {
    background: var(--white);
    position: relative;
    padding: 6rem 0;
}

.access::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 115, 85, 0.05) 0%, rgba(47, 79, 79, 0.05) 100%);
    pointer-events: none;
}

.access-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.access-info h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 2rem;
    font-family: 'Noto Serif JP', serif;
}

.access-details {
    margin-bottom: 2rem;
}

.access-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--light-color);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.access-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow);
}

.access-icon {
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.access-icon i {
    font-size: 1.1rem;
    color: var(--white);
}

.access-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-family: 'Noto Serif JP', serif;
}

.access-text p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.9rem;
    margin: 0;
}

.access-buttons {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 1rem;
    flex-wrap: wrap;
    width: 100%;
}

/* アクセス案内／Googleマップで開く — サイズ・角丸・余白を統一し左右バランスを取る */
.access .access-buttons .btn,
.access .map-button.btn-primary {
    flex: 0 1 auto;
    display: inline-flex;
    align-items: center;
    width: min(100%, 280px);
    max-width: 280px;
    min-height: 3.125rem;
    padding: 0.875rem 1.5rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    box-sizing: border-box;
    text-align: center;
    justify-content: center;
}

.access-map {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.access-map > .map-button {
    align-self: center;
}

.map-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px var(--shadow-dark);
    margin-bottom: 1.5rem;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 16px;
}

/* Responsive adjustments for access section */
@media (max-width: 768px) {
    .access {
        padding: 4rem 0;
    }
    
    .access-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .access-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .access .access-buttons .btn,
    .access .map-button.btn-primary {
        width: min(100%, 280px);
    }
    
    .access-info h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .access {
        padding: 3rem 0;
    }
    
    .access-content {
        gap: 1.5rem;
    }
    
    .access-item {
        padding: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .access-icon {
        width: 35px;
        height: 35px;
    }
    
    .access-icon i {
        font-size: 1rem;
    }
    
    .access-info h3 {
        font-size: 1.3rem;
    }
    
    .access-text h4 {
        font-size: 1rem;
    }
    
    .access-text p {
        font-size: 0.85rem;
    }
}

/* Restaurant Page Specific Styles */
.restaurant-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.restaurant-hero .hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.restaurant-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
    z-index: 2;
}

.restaurant-hero .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 20px;
}

.restaurant-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-family: 'Noto Serif JP', serif;
}

.restaurant-hero .hero-lead {
    font-size: 1.2rem;
    line-height: 1.8;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.menu-sections {
    padding: 6rem 0;
    background: #F8F6F1;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><defs><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" stitchTiles="stitch"/><feColorMatrix type="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0.1 0"/></filter></defs><rect width="100" height="100" filter="url(%23noise)" opacity="0.1"/></svg>');
    background-attachment: fixed;
}

/* 「メニュー」メイン見出し（.menu-sections 直下の h2 ※従来 .menu-section h2 だけでは当たらない） */
.menu-sections .container > h2 {
    font-family: "Noto Serif JP", serif;
    font-size: clamp(2.4rem, 4.2vw, 3.4rem);
    font-weight: 600;
    color: var(--dark-color);
    text-align: center;
    letter-spacing: 0.08em;
    line-height: 1.35;
    margin: 0 auto 2.25rem;
    max-width: 100%;
}

@media (max-width: 600px) {
    .menu-sections .container > h2 {
        font-size: clamp(1.85rem, 5.2vw, 2.5rem);
        margin-bottom: 1.5rem;
        letter-spacing: 0.06em;
    }
}

.menu-section {
    margin-bottom: 4rem;
    padding: 3rem 0;
    border-bottom: 1px solid var(--border-color);
}

.menu-section:last-child {
    border-bottom: none;
}

.menu-section h2 {
    font-size: 3.2rem;
    font-weight: 700;
    color: #2C2C2C;
    margin-top: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    font-family: 'Noto Serif JP', serif;
}

.menu-sections .menu-description {
    text-align: center;
    font-size: 1.2rem;
    color: #5A5A5A;
    margin-bottom: 3rem;
    font-style: italic;
}

.menu-item {
    background: #FFFFFF;
    border: 1px solid #D4AF37;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: relative;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.menu-item h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-family: 'Noto Serif JP', serif;
}

.menu-item h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2C2C2C;
    margin-bottom: 1rem;
    font-family: 'Noto Serif JP', serif;
    display: inline-block;
}

.menu-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: 1.5rem;
    position: absolute;
    top: 2rem;
    right: 2rem;
    text-align: right;
    line-height: 1.2;
}

.menu-price .tax-included {
    font-size: 1rem;
    font-weight: 400;
    color: #888;
    margin-left: 0.3rem;
}

.menu-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.menu-note {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-style: italic;
    margin-top: 1rem;
}

.menu-category {
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.menu-category h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #2C2C2C;
    margin-bottom: 2rem;
    text-align: left;
    font-family: 'Noto Serif JP', serif;
    border-bottom: 2px solid #D4AF37;
    padding-bottom: 0.5rem;
    display: inline-block;
}

.menu-item h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-family: 'Noto Serif JP', serif;
}

.menu-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.menu-price-tax {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.menu-details {
    text-align: left;
    max-width: 500px;
    margin-top: 1rem;
}

.menu-details p {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: #2C2C2C;
    font-size: 1rem;
}

.menu-details p:first-child {
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Menu card with image: text on the left, image on the right (desktop).
   Stacks on mobile with the image as a banner on top.
   Price flows under the heading (no absolute positioning) to avoid overlap. */
.menu-item--with-image {
    display: flex;
    gap: 1.75rem;
    align-items: flex-start;
}

.menu-item--with-image .menu-item__body {
    flex: 1 1 auto;
    min-width: 0;
    text-align: left;
    position: static;
}

.menu-item--with-image .menu-item__media {
    margin: 0;
    flex: 0 0 38%;
    max-width: 320px;
    aspect-ratio: 3 / 2;
    border-radius: 10px;
    overflow: hidden;
    background: #f7f5ee;
}

.menu-item--with-image .menu-item__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Override the .menu-item absolute price positioning so the price flows
   in-line under the heading and never overlaps the title or image. */
.menu-item--with-image .menu-price {
    position: static;
    top: auto;
    right: auto;
    text-align: left;
    margin-bottom: 1.25rem;
}

.menu-item--with-image h4 {
    margin-top: 0;
    margin-bottom: 0.75rem;
    padding-right: 0;
}

.menu-item--with-image .menu-details {
    margin-top: 0;
}

@media (max-width: 768px) {
    .menu-item--with-image {
        /* DOM order is body → media; reverse to keep the image as a banner
           on top of the text on mobile, matching the original breakfast card. */
        flex-direction: column-reverse;
        gap: 1.25rem;
    }

    .menu-item--with-image .menu-item__media {
        flex: 0 0 auto;
        max-width: 100%;
        aspect-ratio: 16 / 10;
    }

    .menu-item--with-image .menu-price {
        margin-bottom: 1rem;
    }
}

/* Responsive Menu Styles */
@media (max-width: 768px) {
    .menu-category h3 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
    
    .menu-item {
        padding: 1.5rem;
    }
    
    .menu-item h4 {
        font-size: 1.3rem;
        margin-right: 120px;
    }
    
    .menu-price {
        font-size: 1.4rem;
        position: static;
        margin-bottom: 1rem;
        text-align: right;
    }
    
    .menu-price .tax-included {
        font-size: 0.9rem;
        color: #888;
    }
    
    .menu-details {
        max-width: 100%;
    }
    
    .menu-note {
        font-size: 0.8rem;
    }
    
    .gallery-section h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .gallery-section p {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

.gallery-section {
    padding: 6rem 0;
    background: var(--white);
}

.gallery-section h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #2C2C2C;
    margin-bottom: 2rem;
    text-align: center;
    font-family: 'Noto Serif JP', serif;
}

/* リード文を省略した場合（見出しのみ）：下マージンを畳み、section の余白に任せる */
.gallery-section .container > h2:last-child {
    margin-bottom: 0;
}

.gallery-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* 料亭：アレルギー案内（.allergy-notice は各言語 /restaurant で共通） */
.allergy-notice .notice-content {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.allergy-notice .notice-content h3 {
    font-family: "Noto Serif JP", serif;
    font-size: clamp(1.3rem, 2.2vw, 1.7rem);
    font-weight: 600;
    color: var(--dark-color);
    letter-spacing: 0.06em;
    line-height: 1.45;
    text-align: center;
    margin: 0 0 1.35rem;
}

.allergy-notice .notice-content p {
    text-align: center;
    margin: 0;
}

@media (max-width: 600px) {
    .allergy-notice .notice-content h3 {
        font-size: 1.25rem;
        margin-bottom: 1.1rem;
    }
}

.photo-gallery {
    padding: 6rem 0;
    background: var(--light-color);
}

.photo-gallery h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 3rem;
    text-align: center;
    font-family: 'Noto Serif JP', serif;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    text-align: center;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-dark);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.gallery-caption {
    padding: 1rem;
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 500;
}

.important-notes {
    padding: 4rem 0;
    background: var(--white);
}

.important-notes h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
    font-family: 'Noto Serif JP', serif;
}

.notes-content {
    max-width: 800px;
    margin: 0 auto;
}

.notes-list {
    list-style: none;
    padding: 0;
}

.notes-list li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 1.1rem;
    color: var(--text-primary);
    position: relative;
    padding-left: 2rem;
}

.notes-list li:before {
    content: "•";
    color: var(--accent-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 1rem;
}

.notes-list li:last-child {
    border-bottom: none;
}

.access-contact {
    padding: 6rem 0;
    background: var(--light-color);
}

.access-contact h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 3rem;
    text-align: center;
    font-family: 'Noto Serif JP', serif;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.company-info h3,
.facility-info h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    font-family: 'Noto Serif JP', serif;
}

.address-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.facility-list {
    list-style: none;
    padding: 0;
}

.facility-list li {
    padding: 0.8rem 0;
    font-size: 1.1rem;
    color: var(--text-primary);
    position: relative;
    padding-left: 2rem;
}

.facility-list li:before {
    content: "✓";
    color: var(--accent-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0.8rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .restaurant-hero h1 {
        font-size: 2.5rem;
    }
    
    .restaurant-hero .hero-lead {
        font-size: 1rem;
    }
    
    .menu-section h2 {
        font-size: 2.5rem;
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .photo-gallery h2,
    .important-notes h2,
    .access-contact h2 {
        font-size: 2rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .restaurant-hero {
        height: 60vh;
        min-height: 400px;
    }
    
    .restaurant-hero h1 {
        font-size: 2rem;
    }
    
    .menu-section h2 {
        font-size: 2.2rem;
        margin-top: 1.2rem;
        margin-bottom: 1.2rem;
    }
    
    .photo-gallery h2,
    .important-notes h2,
    .access-contact h2 {
        font-size: 1.8rem;
    }
    
    .menu-item h3 {
        font-size: 1.5rem;
    }
    
    .menu-price {
        font-size: 1.2rem;
    }
}

/* Initial Load Overlay Styles */
.initial-load-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #000;
    z-index: 10000;
    opacity: 1;
    transition: opacity 2s ease-in-out;
    pointer-events: auto;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.initial-load-overlay.hidden {
    display: none;
}

.overlay-content {
    text-align: center;
    max-width: 90%;
}

.overlay-text {
    font-family: 'Noto Serif JP', serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: #f5f5f5;
    line-height: 1.6;
    letter-spacing: 0.1em;
    margin: 0;
    opacity: 0;
    transform: scale(0.95) translateY(0);
    transition: opacity 1.5s ease-in-out, transform 1.5s ease-in-out;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .initial-load-overlay {
        transition: none;
        opacity: 0;
        display: none;
    }

    .overlay-text {
        transition: none;
        opacity: 0;
    }

    /* Calm down hovers / parallax for users who request reduced motion */
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }

    .hero {
        background-attachment: scroll;
    }
}

/* Responsive adjustments for overlay text */
@media (max-width: 768px) {
    .overlay-text {
        font-size: 2rem;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .overlay-text {
        font-size: 1.5rem;
        line-height: 1.4;
        letter-spacing: 0.05em;
    }
}

/* Plan Selection Styles */
.plan-selection {
    margin-bottom: 2rem;
}

.plan-tabs {
    display: flex;
    background: var(--light-color);
    border-radius: 12px;
    padding: 4px;
    gap: 4px;
    margin-bottom: 1.5rem;
}

.plan-tab {
    flex: 1;
    padding: 12px 16px;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-align: center;
    position: relative;
    outline: none;
}

.plan-tab:hover {
    background: rgba(255, 255, 255, 0.7);
    color: var(--text-primary);
}

.plan-tab.active {
    background: var(--white);
    color: var(--accent-color);
    box-shadow: 0 2px 8px var(--shadow);
    font-weight: 600;
}

.plan-tab:focus {
    box-shadow: 0 0 0 2px var(--accent-color);
}

.plan-content {
    margin-bottom: 1.5rem;
}

.plan-description {
    margin-top: 1rem;
    text-align: left;
}

.plan-description p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

/* Responsive adjustments for plan selection */
@media (max-width: 768px) {
    .plan-tabs {
        flex-wrap: wrap;
        gap: 2px;
    }
    
    .plan-tab {
        flex: 1 1 calc(50% - 1px);
        padding: 10px 12px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .plan-tabs {
        flex-direction: column;
        gap: 2px;
    }
    
    .plan-tab {
        flex: none;
        padding: 12px 16px;
        font-size: 0.9rem;
    }
}

/* 迎賓館ヒーロー画像スタイル */
.hero-image-section {
    margin: 2rem 0;
    width: 100%;
}

.hero-image-section .hero-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(139, 115, 85, 0.15);
    object-fit: cover;
    display: block;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .hero-image-section {
        margin: 1.5rem 0;
    }
    
    .hero-image-section .hero-image {
        border-radius: 8px;
        box-shadow: 0 6px 20px rgba(139, 115, 85, 0.12);
    }
}

@media (max-width: 480px) {
    .hero-image-section {
        margin: 1rem 0;
    }
    
    .hero-image-section .hero-image {
        border-radius: 6px;
        box-shadow: 0 4px 15px rgba(139, 115, 85, 0.1);
    }
}

/* Image Placeholder Styles */
.image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px dashed #dee2e6;
    border-radius: 8px;
    min-height: 200px;
    color: #6c757d;
    text-align: center;
    padding: 2rem;
}

.image-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #adb5bd;
}

.image-placeholder p {
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
}

/* Responsive adjustments for image placeholders */
@media (max-width: 768px) {
    .image-placeholder {
        min-height: 150px;
        padding: 1.5rem;
    }
    
    .image-placeholder i {
        font-size: 2.5rem;
    }
    
    .image-placeholder p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .image-placeholder {
        min-height: 120px;
        padding: 1rem;
    }
    
    .image-placeholder i {
        font-size: 2rem;
    }
    
    .image-placeholder p {
        font-size: 0.9rem;
    }
}

/* アクセス案内ページ（/ja/access/）— 可読性・余白・上質感 */
#access-guide.photography-gallery-intro {
    padding-top: 7rem;
    padding-bottom: 4.5rem;
}

#access-guide .section-header {
    margin-bottom: clamp(2.5rem, 5vw, 3.25rem);
}

#access-guide .section-title {
    margin-bottom: 1.25rem;
}

#access-guide .section-subtitle {
    line-height: 1.9;
    letter-spacing: 0.08em;
    word-break: normal;
    line-break: strict;
    overflow-wrap: normal;
    text-wrap: pretty;
}

.access-guide-hero {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0.5rem;
}

.access-guide-caption {
    text-align: center;
    max-width: 40rem;
    margin: 1.75rem auto 2.75rem;
    color: var(--text-secondary);
    line-height: 1.95;
    letter-spacing: 0.04em;
    font-size: 1.02rem;
    word-break: normal;
    line-break: strict;
    overflow-wrap: normal;
    text-wrap: pretty;
}

#access-guide .gallery-intro-content {
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
    padding-top: 0.5rem;
}

#access-guide .gallery-intro-content .gallery-description {
    line-height: 1.95;
    letter-spacing: 0.04em;
    margin: 0 0 1.4rem;
    color: var(--text-primary);
    font-size: 1.02rem;
    font-weight: 400;
    word-break: normal;
    line-break: strict;
    overflow-wrap: normal;
    text-wrap: pretty;
}

#access-guide .gallery-intro-content .gallery-description:last-of-type {
    margin-bottom: 0;
}

#access-guide .gallery-intro-content .access-contact-cta {
    display: block;
    margin-top: 0.35rem;
}

/* アクセス案内：車・電車・飛行機カード */
#access-travel-info.access,
section#access-travel-info.access {
    position: relative;
    z-index: 1;
    padding-top: 4.5rem;
    padding-bottom: 4.75rem;
}

#access-travel-info .section-header {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2.35rem;
    max-width: 42rem;
}

#access-travel-info .section-header .section-title {
    margin-bottom: 1.15rem;
}

#access-travel-info .section-header .section-subtitle {
    line-height: 1.9;
    letter-spacing: 0.08em;
    max-width: 36rem;
    word-break: normal;
    line-break: strict;
    overflow-wrap: normal;
    text-wrap: pretty;
}

#access-travel-info .access-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 100%;
    gap: clamp(1.25rem, 3.2vw, 1.65rem);
    margin: 0 auto;
    padding: 0;
}

#access-travel-info .access-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0; /* 汎用 .access-item の gap と icon の margin を二重にしない */
    width: 100%;
    max-width: 48rem;
    margin: 0 auto;
    padding: 1.7rem clamp(1.25rem, 3.5vw, 2rem) 1.9rem;
    text-align: center;
    align-self: center;
    box-sizing: border-box;
    background: var(--light-color);
    border: 1px solid rgba(139, 115, 85, 0.1);
    border-radius: 20px;
    box-shadow: 0 6px 32px rgba(47, 79, 79, 0.06);
    margin-bottom: 0;
    transition: box-shadow 0.35s ease, transform 0.35s ease, border-color 0.3s ease;
}

#access-travel-info .access-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(47, 79, 79, 0.1);
    border-color: rgba(139, 115, 85, 0.16);
}

#access-travel-info .access-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin: 0 auto 0.95rem;
    border-radius: 50%;
    flex-shrink: 0;
}

#access-travel-info .access-icon i {
    font-size: 1.15rem;
}

#access-travel-info .access-text {
    text-align: center;
    width: 100%;
    max-width: 40rem;
    margin: 0 auto;
    padding: 0 0.15rem;
}

#access-travel-info .access-text h4 {
    text-align: center;
    font-family: 'Noto Serif JP', serif;
    font-size: 1.22rem;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0.07em;
    color: var(--dark-color);
    margin: 0 0 0.65rem 0;
    word-break: normal;
    line-break: strict;
    overflow-wrap: normal;
}

/* 路線1行=1ブロック。br 廃止時は .access-body 内の p が対象 */
#access-travel-info .access-text .access-body {
    max-width: 40rem;
    margin: 0 auto;
    padding: 0;
}

#access-travel-info .access-text .access-body p {
    text-align: center;
    margin: 0 0 0.42em;
    padding: 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.95;
    letter-spacing: 0.045em;
    word-break: normal;
    line-break: strict;
    overflow-wrap: normal;
}

#access-travel-info .access-text .access-body p:last-child {
    margin-bottom: 0;
}

#access-travel-info .access-text .access-body p.access-line--note {
    margin-top: 0.55em;
    margin-bottom: 0;
}

/* サブタイトル・本文の禁則付きフレーズ（「す。」「分」単独改行の防止） */
#access-guide .section-subtitle .access-phrase-nowrap,
#access-travel-info .section-header .section-subtitle .access-phrase-nowrap,
#access-map-section .section-header .section-subtitle .access-phrase-nowrap {
    white-space: nowrap;
}

#access-travel-info .access-text .access-body--merged p {
    white-space: normal;
    word-break: keep-all;
    overflow-wrap: normal;
    line-break: strict;
}

#access-travel-info .access-text .access-body--merged p .access-phrase-nowrap {
    white-space: nowrap;
    display: inline;
}

#access-travel-info .access-text .access-body--merged p .access-line--note {
    display: block;
    margin-top: 0.55em;
    margin-bottom: 0;
}

@media (max-width: 360px) {
    #access-guide .section-subtitle .access-phrase-nowrap,
    #access-travel-info .section-header .section-subtitle .access-phrase-nowrap,
    #access-map-section .section-header .section-subtitle .access-phrase-nowrap,
    #access-travel-info .access-text .access-body--merged p .access-phrase-nowrap {
        white-space: normal;
    }
}

#access-travel-info .access-item:last-child {
    margin-bottom: 0;
}

/* 地図ブロック前後の息抜き */
#access-map-section .section-header {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2.75rem;
    max-width: 42rem;
}

#access-map-section .map-container {
    margin-bottom: 1.9rem;
}

#access-map-section .section-header .section-subtitle {
    line-height: 1.88;
    letter-spacing: 0.07em;
    word-break: normal;
    line-break: strict;
    overflow-wrap: normal;
    text-wrap: pretty;
}

/* アクセスページ画像（259.jpg）— アクセス案内セクション直下 */
#access-travel-info .access-photo--travel {
    max-width: 52rem;
    margin-left: auto;
    margin-right: auto;
    margin-top: 1.25rem;
    margin-bottom: 2.1rem;
    text-align: center;
}

#access-travel-info .access-photo--travel img {
    display: block;
    width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    border-radius: 18px;
    box-shadow: 0 10px 32px rgba(47, 79, 79, 0.08);
    object-fit: contain;
}

@media (max-width: 640px) {
    #access-guide.photography-gallery-intro {
        padding-top: 6.25rem;
        padding-bottom: 3.5rem;
    }

    .access-guide-caption {
        margin: 1.4rem auto 2.1rem;
        line-height: 1.9;
    }

    #access-travel-info.access,
    section#access-travel-info.access {
        padding-top: 3.4rem;
        padding-bottom: 3.6rem;
    }

    #access-travel-info .section-header {
        margin-bottom: 1.9rem;
    }

    #access-travel-info .access-details {
        gap: 1.1rem;
    }

    #access-travel-info .access-item {
        padding: 1.5rem 1.25rem 1.7rem;
    }

    #access-travel-info .access-text h4 {
        font-size: 1.12rem;
        margin-bottom: 0.6rem;
    }

    #access-travel-info .access-text .access-body p {
        font-size: 0.9rem;
        line-height: 1.95;
    }

    #access-travel-info .access-icon {
        width: 42px;
        height: 42px;
        margin-bottom: 0.8rem;
    }

    #access-travel-info .access-photo--travel {
        margin-top: 1.05rem;
        margin-bottom: 1.7rem;
        max-width: 100%;
    }
}

/* 施設紹介 (/ja/about/ など) */
.about-page-main {
    padding-top: 7rem;
    padding-bottom: 5rem;
    background: linear-gradient(180deg, var(--white) 0%, var(--light-color) 45%, var(--white) 100%);
}

.about-page-main .container--narrow {
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.about-page-title {
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.12em;
    color: var(--dark-color);
    margin-bottom: 3rem;
}

.about-lead-block {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    margin-bottom: 4.5rem;
    line-height: 1.9;
    letter-spacing: 0.05em;
}

.about-lead-block p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-primary);
    margin-bottom: 24px;
}

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

.about-map-section {
    padding-top: 0.5rem;
    padding-bottom: 3.5rem;
}

.about-map-figure {
    margin: 0;
    display: flex;
    justify-content: center;
}

.about-map-image {
    width: min(100%, 900px);
    height: auto;
    display: block;
    border-radius: 16px;
    border: 1px solid rgba(139, 115, 85, 0.12);
    box-shadow: 0 12px 40px rgba(139, 115, 85, 0.06);
}

.facility-showcase {
    padding-top: 2rem;
}

.facility-block {
    padding: 3rem 2.5rem;
    margin-bottom: 2.5rem;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid rgba(139, 115, 85, 0.12);
    box-shadow: 0 12px 40px rgba(139, 115, 85, 0.06);
}

.facility-block:last-child {
    margin-bottom: 0;
}

.facility-block__title {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.45rem;
    font-weight: 700;
    text-align: center;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    letter-spacing: 0.06em;
}

.facility-block__text {
    font-size: 1.02rem;
    line-height: 2;
    color: var(--text-primary);
    margin: 0;
    text-align: justify;
    text-justify: inter-ideograph;
}

.activity-report-section {
    margin-top: 5rem;
    padding-top: 4rem;
    border-top: 1px solid var(--border-color);
}

.about-section-heading {
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(1.65rem, 3vw, 2.1rem);
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.1em;
    color: var(--dark-color);
    margin-bottom: 3rem;
}

.activity-year {
    margin-bottom: 3rem;
    padding: 2rem 2rem 2.25rem;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
}

.activity-year:last-child {
    margin-bottom: 0;
}

.activity-year h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.activity-year p {
    font-size: 1rem;
    line-height: 1.95;
    color: var(--text-secondary);
    margin: 0;
}

.activity-year__list {
    margin: 0;
    padding-left: 1.35rem;
    font-size: 1rem;
    line-height: 1.95;
    color: var(--text-secondary);
}

.activity-year__list li + li {
    margin-top: 0.65rem;
}

@media (max-width: 768px) {
    .about-page-main {
        padding-top: 6rem;
        padding-bottom: 3.5rem;
    }

    .facility-block {
        padding: 2rem 1.5rem;
    }

    .about-lead-block p {
        font-size: 1rem;
        text-align: left;
    }

    .facility-block__text {
        text-align: left;
    }
}

/* ============================================================
   施設紹介 — Meihodo "About" page redesign.
   Scoped under body.about-meihodo-page so the shared
   .about-page-* rules above keep serving the location-terms
   page untouched. Purely additive / higher-specificity.
   ============================================================ */

body.about-meihodo-page .about-page-main {
    padding-top: 0;
    position: relative;
    background: linear-gradient(180deg, var(--white) 0%, var(--light-color) 42%, var(--white) 100%);
}

/* --- Hero banner --- */
body.about-meihodo-page .about-page-main::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 27rem;
    background:
        linear-gradient(180deg, rgba(28, 28, 28, 0.28) 0%, rgba(28, 28, 28, 0.34) 45%, rgba(28, 28, 28, 0.66) 100%),
        url("/images/top/top.webp") center / cover no-repeat;
    z-index: 0;
}

body.about-meihodo-page .about-page-title {
    position: relative;
    z-index: 1;
    color: var(--white);
    margin: 0 0 7rem;
    padding-top: 12rem;
    line-height: 1.2;
    text-shadow: 0 2px 22px rgba(0, 0, 0, 0.5);
}

body.about-meihodo-page .about-page-title::after {
    content: "ABOUT MEIHODO";
    display: block;
    margin-top: 1rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.42em;
    text-indent: 0.42em;
    color: var(--accent-color);
    text-shadow: none;
}

/* --- Intro lead card (lifts over the hero) --- */
body.about-meihodo-page .about-lead-block {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0 auto 5.5rem;
    padding: clamp(2.25rem, 5vw, 3.75rem);
    background: var(--white);
    border-radius: 18px;
    border: 1px solid rgba(139, 115, 85, 0.14);
    box-shadow: 0 26px 64px rgba(28, 28, 28, 0.14);
}

body.about-meihodo-page .about-lead-block::before {
    content: "";
    display: block;
    width: 48px;
    height: 3px;
    margin: 0 auto 1.85rem;
    background: var(--accent-color);
}

body.about-meihodo-page .about-lead-block p {
    font-size: 1.05rem;
    line-height: 2.05;
    color: var(--text-primary);
    margin-bottom: 1.4rem;
}

body.about-meihodo-page .about-lead-block p:first-child {
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(1.15rem, 2.2vw, 1.35rem);
    font-weight: 600;
    line-height: 1.95;
    color: var(--dark-color);
}

body.about-meihodo-page .about-lead-block p:last-child {
    margin-bottom: 0;
}

/* --- Section headings with a gold underline --- */
body.about-meihodo-page .about-section-heading {
    position: relative;
    padding-bottom: 1.1rem;
    margin-bottom: 3rem;
}

body.about-meihodo-page .about-section-heading::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 56px;
    height: 2px;
    background: var(--accent-color);
}

/* --- Facility map --- */
body.about-meihodo-page .about-map-section {
    padding-top: 1.5rem;
    padding-bottom: 4rem;
}

body.about-meihodo-page .about-map-image {
    border-radius: 18px;
    box-shadow: 0 18px 50px rgba(28, 28, 28, 0.12);
}

/* --- Facility cards (numbered) --- */
body.about-meihodo-page .facility-showcase {
    counter-reset: facility;
    padding-top: 3.5rem;
}

body.about-meihodo-page .facility-block {
    counter-increment: facility;
    position: relative;
    padding: clamp(2.25rem, 4vw, 3.25rem) clamp(1.75rem, 4vw, 3rem);
    padding-top: 3.85rem;
    margin-bottom: 2rem;
    background: var(--white);
    border-radius: 18px;
    border: 1px solid rgba(139, 115, 85, 0.13);
    box-shadow: 0 14px 40px rgba(28, 28, 28, 0.07);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

body.about-meihodo-page .facility-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 26px 58px rgba(28, 28, 28, 0.13);
    border-color: rgba(212, 175, 55, 0.5);
}

body.about-meihodo-page .facility-block::before {
    content: counter(facility, decimal-leading-zero);
    position: absolute;
    top: 1.7rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    color: var(--accent-color);
}

body.about-meihodo-page .facility-block__title {
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

body.about-meihodo-page .facility-block__title::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: rgba(139, 115, 85, 0.35);
}

/* --- Activity report timeline --- */
body.about-meihodo-page .activity-year {
    position: relative;
    margin-bottom: 1.85rem;
    padding: 1.95rem 2rem 2.1rem 2.5rem;
    background: var(--white);
    border: 1px solid rgba(139, 115, 85, 0.13);
    border-left: 4px solid var(--accent-color);
    border-radius: 0 14px 14px 0;
    box-shadow: 0 12px 34px rgba(28, 28, 28, 0.06);
}

body.about-meihodo-page .activity-year::before {
    content: "";
    position: absolute;
    left: -10px;
    top: 2.15rem;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--accent-color);
}

body.about-meihodo-page .activity-year h3 {
    font-size: 1.4rem;
    letter-spacing: 0.04em;
    margin-bottom: 1.1rem;
}

body.about-meihodo-page .activity-year__list {
    list-style: none;
    padding-left: 0;
}

body.about-meihodo-page .activity-year__list li {
    position: relative;
    padding-left: 1.15rem;
}

body.about-meihodo-page .activity-year__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent-color);
}

@media (max-width: 768px) {
    body.about-meihodo-page .about-page-main::before {
        height: 20rem;
    }

    body.about-meihodo-page .about-page-title {
        padding-top: 8.5rem;
        margin-bottom: 4.5rem;
    }

    body.about-meihodo-page .about-lead-block {
        margin-bottom: 3.5rem;
    }

    body.about-meihodo-page .facility-block {
        padding-top: 3.35rem;
    }
}

/* 撮影施設 /location/ 料金表（.pricing-content の max-width:600px を上書き） */
.pricing-section.location-pricing {
    position: relative;
    padding: clamp(3.5rem, 6vw, 5.5rem) 0;
    background: var(--light-color);
}

.location-pricing .section-header {
    margin-bottom: 2.5rem;
}

.location-pricing .pricing-content {
    max-width: 960px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.75rem;
    padding-left: 0;
    padding-right: min(5.5rem, 14vw);
    box-sizing: border-box;
}

.location-pricing .pricing-table-container {
    background: var(--white);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 48px var(--shadow-dark);
    padding: clamp(1.6rem, 2.5vw, 2.4rem) clamp(1.25rem, 2.2vw, 2.25rem) clamp(1.4rem, 2vw, 1.9rem);
}

.location-pricing .pricing-subtitle {
    font-family: "Noto Serif JP", serif;
    font-size: 1.32rem;
    font-weight: 600;
    color: var(--dark-color);
    text-align: center;
    margin: 0 0 1.4rem 0;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid rgba(139, 115, 85, 0.2);
    letter-spacing: 0.05em;
    line-height: 1.45;
}

.location-pricing .table-wrapper {
    margin: 0;
    border-radius: 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-gutter: stable;
}

.location-pricing .pricing-table {
    width: 100%;
    min-width: 32rem;
    border-collapse: collapse;
    table-layout: fixed;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-primary);
}

.location-pricing .pricing-table thead th {
    font-family: "Noto Serif JP", serif;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    text-align: center;
    padding: 1.05rem 0.7rem 1.15rem;
    vertical-align: bottom;
    line-height: 1.35;
    background: linear-gradient(180deg, rgba(139, 115, 85, 0.1) 0%, rgba(139, 115, 85, 0.03) 100%);
    border-bottom: 1px solid var(--border-color);
}

.location-pricing .pricing-table thead th:first-child {
    text-align: left;
    padding-left: 0.2rem;
}

.location-pricing .pricing-table th:nth-child(1) {
    width: 40%;
}

.location-pricing .pricing-table th:nth-child(2) {
    width: 26%;
}

.location-pricing .pricing-table th:nth-child(3) {
    width: 34%;
}

.location-pricing .pricing-table tbody tr {
    border-bottom: 1px solid var(--border-color);
    transition: background 0.2s ease;
}

.location-pricing .pricing-table tbody tr:hover {
    background: rgba(139, 115, 85, 0.04);
}

.location-pricing .pricing-table tbody tr:last-child {
    border-bottom: none;
}

.location-pricing .pricing-table td {
    padding: 1.15rem 0.6rem;
    vertical-align: middle;
}

.location-pricing .pricing-table td:first-child {
    font-weight: 500;
    color: var(--dark-color);
    line-height: 1.65;
    padding-left: 0.15rem;
    padding-right: 0.5rem;
}

.location-pricing .pricing-table td:nth-child(2),
.location-pricing .pricing-table td:nth-child(3) {
    text-align: center;
}

.location-pricing .location-price-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    max-width: 18rem;
    margin: 0 auto;
}

.location-pricing .location-price-line {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.55;
    text-align: center;
}

.location-pricing .location-price-line--add {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.5;
    width: 100%;
    max-width: 16rem;
    margin: 0;
    padding-top: 0.4rem;
    border-top: 1px dashed rgba(139, 115, 85, 0.3);
    letter-spacing: 0.02em;
}

.location-pricing .location-price-amount {
    font-family: "Inter", "Noto Sans JP", sans-serif;
    font-variant-numeric: tabular-nums;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.03em;
    white-space: nowrap;
}

.location-pricing .pricing-note {
    margin: 1.1rem 0 0 0;
    text-align: center;
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

@media (max-width: 900px) {
    .location-pricing .pricing-content {
        padding-right: min(3.5rem, 8vw);
    }

    .location-pricing .pricing-table thead th {
        font-size: 0.72rem;
    }

    .location-pricing .location-price-amount {
        display: inline-block;
    }
}

@media (max-width: 720px) {
    .location-pricing .location-price-line,
    .location-pricing .location-price-line--add {
        font-size: 0.86rem;
    }
}

@media (max-width: 600px) {
    .location-pricing .table-wrapper {
        margin-left: -0.2rem;
        margin-right: -0.2rem;
        border-radius: 0;
    }

    .location-pricing .pricing-table {
        min-width: 32rem;
    }
}

/* 撮影利用 /ja/ & /en/ & /zh-tw/ & /zh-cn/location/ 料金案内：カードを中央配置（非対称 padding の補正） */
body.location-page-ja .location-pricing .pricing-content,
body.location-page-en .location-pricing .pricing-content,
body.location-page-zh-tw .location-pricing .pricing-content,
body.location-page-zh-cn .location-pricing .pricing-content {
    margin-left: auto;
    margin-right: auto;
    padding-left: clamp(0.75rem, 2.8vw, 2rem);
    padding-right: clamp(0.75rem, 2.8vw, 2rem);
    max-width: min(60rem, 100%);
}

body.location-page-ja .location-pricing .pricing-table-container,
body.location-page-en .location-pricing .pricing-table-container,
body.location-page-zh-tw .location-pricing .pricing-table-container,
body.location-page-zh-cn .location-pricing .pricing-table-container {
    width: 100%;
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

@media (max-width: 900px) {
    body.location-page-ja .location-pricing .pricing-content,
    body.location-page-en .location-pricing .pricing-content,
    body.location-page-zh-tw .location-pricing .pricing-content,
    body.location-page-zh-cn .location-pricing .pricing-content {
        padding-left: min(1.25rem, 4vw);
        padding-right: min(1.25rem, 4vw);
    }
}

@media (max-width: 600px) {
    body.location-page-ja .location-pricing .pricing-table-container,
    body.location-page-en .location-pricing .pricing-table-container,
    body.location-page-zh-tw .location-pricing .pricing-table-container,
    body.location-page-zh-cn .location-pricing .pricing-table-container {
        max-width: 100%;
    }
}

/* 撮影利用 /ja/ & /en/ & /zh-tw/ & /zh-cn/ — 利用規約文・CTA */
body.location-page-ja #terms .terms-content,
body.location-page-en #terms .terms-content,
body.location-page-zh-tw #terms .terms-content,
body.location-page-zh-cn #terms .terms-content,
body.location-page-ja #booking .booking-content,
body.location-page-en #booking .booking-content,
body.location-page-zh-tw #booking .booking-content,
body.location-page-zh-cn #booking .booking-content {
    max-width: 42rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
}

/* 利用規約リード：1段落・読み行幅・行間（丁寧な案内のトーン） */
body.location-page-ja #terms .terms-content,
body.location-page-en #terms .terms-content,
body.location-page-zh-tw #terms .terms-content,
body.location-page-zh-cn #terms .terms-content {
    gap: 1.75rem;
}

body.location-page-ja #terms .terms-text-block,
body.location-page-en #terms .terms-text-block,
body.location-page-zh-tw #terms .terms-text-block,
body.location-page-zh-cn #terms .terms-text-block {
    width: 100%;
    max-width: 36rem;
    margin: 0 auto;
}

body.location-page-ja #terms .terms-text,
body.location-page-en #terms .terms-text,
body.location-page-zh-tw #terms .terms-text,
body.location-page-zh-cn #terms .terms-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.1rem;
    width: 100%;
    margin: 0;
    padding: 0.35rem 0.25rem 0.15rem;
    box-sizing: border-box;
    line-height: 2.02;
    font-size: 1.04rem;
    font-weight: 400;
    color: var(--text-primary);
    text-align: center;
    letter-spacing: 0.04em;
}

body.location-page-ja #terms .terms-text__line,
body.location-page-en #terms .terms-text__line,
body.location-page-zh-tw #terms .terms-text__line,
body.location-page-zh-cn #terms .terms-text__line {
    display: block;
    width: 100%;
    max-width: 100%;
}

body.location-page-ja #booking .booking-description,
body.location-page-en #booking .booking-description,
body.location-page-zh-tw #booking .booking-description,
body.location-page-zh-cn #booking .booking-description {
    margin: 0;
    line-height: 1.9;
    text-align: center;
    max-width: 100%;
}

body.location-page-ja #booking .booking-title,
body.location-page-en #booking .booking-title,
body.location-page-zh-tw #booking .booking-title,
body.location-page-zh-cn #booking .booking-title {
    margin: 0;
    text-align: center;
    line-height: 1.45;
}

body.location-page-ja #terms .btn.btn-primary,
body.location-page-en #terms .btn.btn-primary,
body.location-page-zh-tw #terms .btn.btn-primary,
body.location-page-zh-cn #terms .btn.btn-primary,
body.location-page-ja #booking .btn.btn-primary,
body.location-page-en #booking .btn.btn-primary,
body.location-page-zh-tw #booking .btn.btn-primary,
body.location-page-zh-cn #booking .btn.btn-primary {
    flex-shrink: 0;
}

@media (max-width: 600px) {
    body.location-page-ja #terms .terms-content,
    body.location-page-en #terms .terms-content,
    body.location-page-zh-tw #terms .terms-content,
    body.location-page-zh-cn #terms .terms-content,
    body.location-page-ja #booking .booking-content,
    body.location-page-en #booking .booking-content,
    body.location-page-zh-tw #booking .booking-content,
    body.location-page-zh-cn #booking .booking-content {
        gap: 1.3rem;
        max-width: 100%;
    }

    body.location-page-ja #terms .terms-content,
    body.location-page-en #terms .terms-content,
    body.location-page-zh-tw #terms .terms-content,
    body.location-page-zh-cn #terms .terms-content {
        gap: 1.4rem;
    }

    body.location-page-ja #terms .terms-text,
    body.location-page-en #terms .terms-text,
    body.location-page-zh-tw #terms .terms-text,
    body.location-page-zh-cn #terms .terms-text {
        font-size: 1.02rem;
        line-height: 1.95;
        padding: 0.25rem 0.15rem 0;
        gap: 0.95rem;
        letter-spacing: 0.035em;
    }
}

/* 撮影利用 /ja/ & /en/ & /zh-tw/ & /zh-cn/ — キャンセル規定 */
body.location-page-ja #cancellation .cancellation-content,
body.location-page-en #cancellation .cancellation-content,
body.location-page-zh-tw #cancellation .cancellation-content,
body.location-page-zh-cn #cancellation .cancellation-content {
    max-width: 40rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0 0.5rem 0.5rem;
    text-align: center;
}

body.location-page-ja #cancellation .cancellation-text,
body.location-page-en #cancellation .cancellation-text,
body.location-page-zh-tw #cancellation .cancellation-text,
body.location-page-zh-cn #cancellation .cancellation-text {
    margin: 0;
    line-height: 1.9;
    text-align: center;
    letter-spacing: 0.02em;
    padding: 0.5rem 0.75rem 0.75rem;
    box-sizing: border-box;
}

body.location-page-ja #cancellation .cancellation-text strong,
body.location-page-en #cancellation .cancellation-text strong,
body.location-page-zh-tw #cancellation .cancellation-text strong,
body.location-page-zh-cn #cancellation .cancellation-text strong {
    display: block;
    margin: 0 auto 0.9rem;
    line-height: 1.5;
    font-weight: 700;
}

@media (max-width: 600px) {
    body.location-page-ja #cancellation .cancellation-content,
    body.location-page-en #cancellation .cancellation-content,
    body.location-page-zh-tw #cancellation .cancellation-content,
    body.location-page-zh-cn #cancellation .cancellation-content {
        max-width: 100%;
        padding: 0 0.25rem 0.25rem;
    }

    body.location-page-ja #cancellation .cancellation-text,
    body.location-page-en #cancellation .cancellation-text,
    body.location-page-zh-tw #cancellation .cancellation-text,
    body.location-page-zh-cn #cancellation .cancellation-text {
        padding: 0.4rem 0.5rem 0.65rem;
        line-height: 1.88;
    }

    body.location-page-ja #cancellation .cancellation-text strong,
    body.location-page-en #cancellation .cancellation-text strong,
    body.location-page-zh-tw #cancellation .cancellation-text strong,
    body.location-page-zh-cn #cancellation .cancellation-text strong {
        margin-bottom: 0.75rem;
    }
}

/* 撮影利用規約ページ（/ja/location/terms.html、body.location-terms-page） */
body.location-terms-page .about-page-title {
    margin-bottom: 1.25rem;
}

body.location-terms-page .location-terms-back {
    max-width: 720px;
    margin: 0 auto 1.25rem;
    text-align: left;
}

body.location-terms-page .location-terms-back__link {
    display: inline-flex;
    align-items: center;
    font-size: 0.95rem;
    color: var(--text-secondary);
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: color 0.25s ease;
}

body.location-terms-page .location-terms-back__link:hover {
    color: var(--accent-color);
    text-decoration: underline;
    text-underline-offset: 0.2em;
}

body.location-terms-page .location-terms-updated {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    letter-spacing: 0.04em;
    margin: 0 auto 2.75rem;
    max-width: 40rem;
}

body.location-terms-page .location-terms-doc {
    max-width: 720px;
    margin: 0 auto 3.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

body.location-terms-page .location-terms-block {
    padding: 2.5rem 2.25rem;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid rgba(139, 115, 85, 0.12);
    box-shadow: 0 12px 40px rgba(139, 115, 85, 0.06);
}

body.location-terms-page .location-terms-block__title {
    font-family: "Noto Serif JP", serif;
    font-size: clamp(1.2rem, 2.2vw, 1.35rem);
    font-weight: 700;
    color: var(--dark-color);
    margin: 0 0 1.35rem 0;
    line-height: 1.5;
    letter-spacing: 0.06em;
    padding: 0.35rem 0 0.35rem 1rem;
    border-left: 4px solid var(--accent-color);
    text-align: left;
}

body.location-terms-page .location-terms-block__body {
    text-align: left;
}

body.location-terms-page .location-terms-block__body > p {
    font-size: 1.02rem;
    line-height: 1.95;
    color: var(--text-primary);
    margin: 0 0 1.1rem 0;
    letter-spacing: 0.04em;
}

body.location-terms-page .location-terms-block__body > p:last-child {
    margin-bottom: 0;
}

body.location-terms-page .location-terms-list {
    margin: 0;
    padding: 0 0 0 1.4rem;
    list-style: disc;
}

body.location-terms-page .location-terms-list li {
    font-size: 1.02rem;
    line-height: 1.9;
    color: var(--text-primary);
    margin-bottom: 0.7rem;
    padding-left: 0.2rem;
    letter-spacing: 0.04em;
}

body.location-terms-page .location-terms-list li:last-child {
    margin-bottom: 0;
}

body.location-terms-page .location-terms-block--contact .location-terms-block__body > p {
    margin-bottom: 1.25rem;
}

body.location-terms-page .location-terms-contact {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

body.location-terms-page .location-terms-contact li {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.6rem 1.25rem;
    font-size: 1.02rem;
    line-height: 1.8;
    color: var(--text-primary);
}

body.location-terms-page .location-terms-contact__label {
    flex: 0 0 3.5rem;
    font-weight: 600;
    color: var(--dark-color);
    letter-spacing: 0.05em;
}

body.location-terms-page .location-terms-contact__value {
    flex: 1 1 12rem;
    min-width: 0;
    word-break: break-word;
}

body.location-terms-page .location-terms-contact a.location-terms-contact__value {
    color: var(--primary-color);
    text-decoration: underline;
    text-underline-offset: 0.2em;
    transition: color 0.2s ease;
}

body.location-terms-page .location-terms-contact a.location-terms-contact__value:hover {
    color: var(--accent-color);
}

body.location-terms-page .location-terms-cta {
    text-align: center;
    margin: 0 0 1rem;
    padding: 0 0.5rem;
}

@media (max-width: 768px) {
    body.location-terms-page .location-terms-block {
        padding: 1.75rem 1.25rem;
    }

    body.location-terms-page .location-terms-doc {
        gap: 1.5rem;
    }

    body.location-terms-page .location-terms-updated {
        margin-bottom: 2.25rem;
    }

    body.location-terms-page .location-terms-contact li {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }

    body.location-terms-page .location-terms-contact__label {
        flex-basis: auto;
    }
}

@media (max-width: 480px) {
    body.location-terms-page .location-terms-block {
        padding: 1.5rem 1.1rem;
        border-radius: 12px;
    }

    body.location-terms-page .location-terms-block__title {
        padding-left: 0.85rem;
    }

    body.location-terms-page .location-terms-list {
        padding-left: 1.2rem;
    }
}

/* ============================================================
   Design System: consistent links, buttons, hover & touch states
   Removes browser-default blue and unifies interaction across pages.
   ============================================================ */

a {
    color: inherit;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}

a:visited {
    color: inherit;
}

button {
    font-family: inherit;
    color: inherit;
    background: none;
    border: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
[role="button"]:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--accent-color);
    outline-offset: 3px;
    border-radius: 4px;
}

footer a,
.footer a,
.footer-section a {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    transition: color 0.25s ease, opacity 0.25s ease;
}

footer a:hover,
.footer a:hover,
.footer-section a:hover {
    color: var(--accent-color);
}

.btn,
.book-now,
.experience-card .card-button,
.accommodation-card .card-button,
.lang-btn,
.experience-btn,
.nav-cta {
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1),
                background 0.25s ease,
                color 0.25s ease,
                border-color 0.25s ease;
    will-change: transform;
}

.btn-primary:hover,
.book-now:hover,
.experience-card:hover .card-button,
.accommodation-card:hover .card-button {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(212, 175, 55, 0.38);
    background: #C19B2E;
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(255, 255, 255, 0.22);
}

.btn:active,
.book-now:active,
.experience-card:active .card-button,
.accommodation-card:active .card-button,
.lang-btn:active,
.nav-cta:active {
    transform: translateY(0) scale(0.97);
    transition-duration: 0.08s;
}

@media (hover: none) {
    .btn:active,
    .book-now:active,
    .experience-card:active .card-button,
    .accommodation-card:active .card-button {
        background: #C19B2E;
        box-shadow: 0 4px 12px rgba(212, 175, 55, 0.28);
    }
}

/* FAQ page (/ja/faq/ など) */
.faq-page-main {
    padding-top: 7rem;
    padding-bottom: 5rem;
    background: linear-gradient(180deg, var(--white) 0%, var(--light-color) 45%, var(--white) 100%);
}

.faq-page-main .container--narrow {
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.faq-page-title {
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.12em;
    color: var(--dark-color);
    margin-bottom: 3.5rem;
}

.faq-section {
    background: var(--white);
    border-radius: 16px;
    border: 1px solid rgba(139, 115, 85, 0.12);
    box-shadow: 0 12px 40px rgba(139, 115, 85, 0.06);
    padding: 2.75rem 2.5rem;
    margin-bottom: 2.5rem;
}

.faq-section:last-child {
    margin-bottom: 0;
}

.faq-section__title {
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(1.45rem, 2.4vw, 1.7rem);
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.08em;
    color: var(--dark-color);
    margin: 0 0 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.faq-item {
    padding: 1.4rem 0;
    border-bottom: 1px solid var(--border-color);
}

.faq-item:first-of-type {
    padding-top: 0.4rem;
}

.faq-item:last-child {
    border-bottom: none;
    padding-bottom: 0.4rem;
}

.faq-item__question {
    position: relative;
    font-family: 'Noto Serif JP', serif;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.6;
    color: var(--dark-color);
    margin: 0 0 1rem;
    padding-left: 1.85rem;
    letter-spacing: 0.04em;
}

.faq-item__question::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.45em;
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 50%;
    background: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.18);
}

.faq-item__answer {
    margin: 0;
    padding: 0 0 0.4rem 1.85rem;
    font-size: 1rem;
    line-height: 1.95;
    color: var(--text-primary);
    white-space: pre-line;
}

@media (max-width: 768px) {
    .faq-page-main {
        padding-top: 6rem;
        padding-bottom: 3.5rem;
    }

    .faq-page-title {
        margin-bottom: 2.5rem;
    }

    .faq-section {
        padding: 2rem 1.4rem;
        margin-bottom: 1.8rem;
        border-radius: 12px;
    }

    .faq-section__title {
        margin-bottom: 1.5rem;
        padding-bottom: 0.8rem;
    }

    .faq-item {
        padding: 1.2rem 0;
    }

    .faq-item__question {
        font-size: 1.02rem;
        padding-left: 1.55rem;
    }

    .faq-item__question::before {
        width: 0.6rem;
        height: 0.6rem;
        top: 0.45em;
        box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.18);
    }

    .faq-item__answer {
        padding-left: 1.55rem;
        font-size: 0.96rem;
        line-height: 1.85;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 1.6rem 1.1rem;
    }

    .faq-item__question {
        padding-left: 1.4rem;
    }

    .faq-item__answer {
        padding-left: 1.4rem;
    }
}

