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

:root {
    --primary-brown: #3E2723;
    --cream: #F5F1E8;
    --gold: #D4AF37;
    --dark-gold: #B8860B;
    --dark-gray: #2C2C2C;
    --light-gray: #FAFAFA;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Zen Kaku Gothic New', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'MS PGothic', 'Noto Sans JP', sans-serif;
    color: var(--dark-gray);
    line-height: 1.8;
    background: #fff;
    overflow-x: hidden;
    font-feature-settings: "palt" 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.site-header,
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(30, 20, 18, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    z-index: 1000;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.site-header.scrolled,
header.scrolled {
    background: rgba(30, 20, 18, 0.95);
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.main-navigation,
nav {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 3rem;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 3rem;
    width: 100%;
}

.mobile-menu-list {
    list-style: none;
    padding: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    text-decoration: none;
}

.logo:hover {
    transform: translateX(5px);
}

.logo-image,
.logo-image-img {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--cream) 0%, #E8DCC8 100%);
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--primary-brown);
    font-weight: 900;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    object-fit: contain;
    padding: 4px;
}

.logo-image-img {
    background: transparent;
    border: none;
}

.logo-image::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.3), transparent);
    transform: rotate(45deg);
    transition: all 0.6s;
}

.logo:hover .logo-image::before {
    left: 100%;
}

.logo-text {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
}

.logo-main {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--cream);
    font-weight: 600;
    letter-spacing: 0.15em;
    line-height: 1.2;
    white-space: nowrap;
}

.logo-sub {
    font-size: 0.65rem;
    color: var(--gold);
    letter-spacing: 0.3em;
    font-weight: 300;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-links a {
    color: var(--cream);
    text-decoration: none;
    font-size: 0.95rem;
    font-family: 'Zen Kaku Gothic New', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'MS PGothic', 'Noto Sans JP', sans-serif;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    letter-spacing: 0.05em;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

.nav-links a:hover::before {
    width: 100%;
}

.nav-links a:hover {
    color: var(--gold);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
    padding: 10px;
}

.hamburger span {
    width: 28px;
    height: 2px;
    background: var(--cream);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #2C1810 0%, var(--primary-brown) 100%);
    z-index: 999;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding-top: 100px;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu ul {
    list-style: none;
    padding: 2rem;
}

.mobile-menu ul li {
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.3s ease;
}

.mobile-menu.active ul li {
    opacity: 1;
    transform: translateX(0);
}

.mobile-menu.active ul li:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active ul li:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu.active ul li:nth-child(3) { transition-delay: 0.3s; }
.mobile-menu.active ul li:nth-child(4) { transition-delay: 0.4s; }
.mobile-menu.active ul li:nth-child(5) { transition-delay: 0.5s; }

.mobile-menu ul li a {
    color: var(--cream);
    text-decoration: none;
    font-size: 1.5rem;
    font-family: 'Zen Kaku Gothic New', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'MS PGothic', 'Noto Sans JP', sans-serif;
    font-weight: 400;
    display: block;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
}

.mobile-menu ul li a:hover {
    color: var(--gold);
    padding-left: 1rem;
}

.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.5)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 1080"><defs><linearGradient id="bg" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%232C1810;stop-opacity:1" /><stop offset="100%" style="stop-color:%233E2723;stop-opacity:1" /></linearGradient></defs><rect fill="url(%23bg)" width="1920" height="1080"/><circle fill="%234A3428" cx="300" cy="200" r="150" opacity="0.2"/><circle fill="%234A3428" cx="1600" cy="800" r="200" opacity="0.15"/><circle fill="%23D4AF37" cx="1200" cy="300" r="80" opacity="0.1"/></svg>');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero[style*="background-image"] {
    background-attachment: fixed;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

.hero-content {
    max-width: 900px;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.hero-content > * {
    opacity: 0;
    animation: fadeInUp 1.2s ease-out forwards;
}

.hero-content > *:nth-child(1) { animation-delay: 0.2s; }
.hero-content > *:nth-child(2) { animation-delay: 0.4s; }
.hero-content > *:nth-child(3) { animation-delay: 0.6s; }
.hero-content > *:nth-child(4) { animation-delay: 0.8s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-label {
    display: inline-block;
    font-size: 0.85rem;
    letter-spacing: 0.3em;
    color: var(--gold);
    margin-bottom: 1.5rem;
    padding: 0.5rem 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.4);
    background: rgba(212, 175, 55, 0.1);
    backdrop-filter: blur(10px);
}

.hero h1 {
    font-family: 'Noto Serif JP', serif;
    font-size: 3.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    letter-spacing: 0.12em;
    line-height: 1.4;
    background: linear-gradient(135deg, #fff 0%, #E8DCC8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-family: 'Great Vibes', cursive;
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 2rem;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
    line-height: 1.2;
}

.hero p {
    font-size: 1.15rem;
    margin-bottom: 3rem;
    line-height: 2.2;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3.5rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(184, 134, 11, 0.2) 100%);
    border: 2px solid var(--gold);
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-family: 'Zen Kaku Gothic New', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'MS PGothic', 'Noto Sans JP', sans-serif;
    font-weight: 500;
    letter-spacing: 0.15em;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--gold);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
    width: 400px;
    height: 400px;
}

.cta-button span {
    position: relative;
    z-index: 1;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
    color: var(--primary-brown);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: float 3s ease-in-out infinite;
    cursor: pointer;
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-15px); }
}

.scroll-indicator span {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: var(--gold);
}

.scroll-indicator::after {
    content: '';
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% { opacity: 0; transform: translateY(-20px); }
    50% { opacity: 1; }
    100% { opacity: 0; transform: translateY(20px); }
}

section {
    position: relative;
    overflow: hidden;
}

.section-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image: radial-gradient(circle, var(--primary-brown) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.concept {
    padding: 8rem 2rem;
    background: var(--light-gray);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.section-header.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-label {
    font-family: 'Zen Kaku Gothic New', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'MS PGothic', 'Noto Sans JP', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.3em;
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: 500;
    text-transform: uppercase;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-brown);
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.section-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: #888;
    font-weight: 300;
    font-style: italic;
    margin-top: 2rem;
}

.concept-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.concept-card {
    text-align: center;
    padding: 0;
    background: white;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(40px);
    border: 1px solid rgba(212, 175, 55, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.concept-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.concept-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.concept-card:hover::before {
    opacity: 1;
}

.concept-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    border-color: var(--gold);
}

.concept-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
}

.concept-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.concept-card:hover .concept-image img {
    transform: scale(1.1);
}

.concept-content {
    padding: 2.5rem 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.concept-card h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-brown);
    font-weight: 500;
    line-height: 1.4;
}

.concept-card p {
    font-family: 'Zen Kaku Gothic New', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'MS PGothic', 'Noto Sans JP', sans-serif;
    line-height: 2;
    color: #666;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.rooms {
    padding: 8rem 2rem;
    background: white;
}

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

.room-card {
    background: white;
    overflow: hidden;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: scale(0.95);
    cursor: pointer;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.1);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.room-card.visible {
    opacity: 1;
    transform: scale(1);
}

.room-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

.room-image-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.room-image {
    width: 100%;
    height: 320px;
    background: linear-gradient(135deg, #8B7355 0%, #5D4E37 50%, #3E2723 100%);
    position: relative;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.room-card:hover .room-image img {
    transform: scale(1.1);
}

.room-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.room-card:hover .room-image-overlay {
    opacity: 1;
}

.room-view-detail {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-brown);
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-family: 'Zen Kaku Gothic New', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'MS PGothic', 'Noto Sans JP', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    transform: translateY(10px);
    transition: transform 0.4s ease;
}

.room-card:hover .room-view-detail {
    transform: translateY(0);
}

.room-info {
    padding: 1.75rem;
    position: relative;
    z-index: 2;
    background: white;
    flex: 1;
    display: flex;
    flex-direction: column;
    transition: background 0.4s ease;
}

.room-card:hover .room-info {
    background: #fafafa;
}

.room-card-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-brown);
    font-weight: 600;
    transition: color 0.3s ease;
    line-height: 1.3;
}

.room-card:hover .room-card-title {
    color: var(--gold);
}

.room-card-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.room-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Zen Kaku Gothic New', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'MS PGothic', 'Noto Sans JP', sans-serif;
    font-size: 0.9rem;
    color: #666;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.room-meta-item svg {
    color: var(--gold);
    flex-shrink: 0;
}

.room-card-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.amenity-tag {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: #f5f5f5;
    color: #666;
    border-radius: 4px;
    font-family: 'Zen Kaku Gothic New', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'MS PGothic', 'Noto Sans JP', sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    transition: all 0.3s ease;
}

.amenity-tag.more {
    background: transparent;
    color: var(--gold);
    font-weight: 500;
}

.room-card:hover .amenity-tag {
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-brown);
}

.room-card:hover .amenity-tag.more {
    background: transparent;
    color: var(--gold);
}

.cuisine {
    padding: 8rem 2rem;
    background: var(--primary-brown);
    color: var(--cream);
    position: relative;
}

.cuisine::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
}

.cuisine .section-title {
    color: var(--cream);
}

.cuisine .section-label {
    color: var(--gold);
}

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

.cuisine-image {
    height: 500px;
    background: linear-gradient(135deg, #A0826D 0%, #8B7355 50%, #5D4E37 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.5s ease;
}

.cuisine-image {
    position: relative;
    overflow: hidden;
}

.cuisine-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* お料理ページ用スタイル */
.page-cuisine {
    background: #fafafa;
    padding-top: 100px;
    margin-top: -70px;
}

/* 料理へのこだわりセクション */
.cuisine-concept-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background: white;
    text-align: center;
}

.cuisine-concept-content {
    max-width: 900px;
    margin: 0 auto;
}

.concept-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 2.5rem;
    color: var(--primary-brown);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.concept-text {
    font-family: 'Zen Kaku Gothic New', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'MS PGothic', 'Noto Sans JP', sans-serif;
    font-size: 1.1rem;
    color: #666;
    line-height: 2;
    margin-bottom: 2rem;
    letter-spacing: 0.02em;
}

.cuisine-highlight-box {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    margin-top: 2rem;
}

.highlight-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.highlight-text {
    font-family: 'Zen Kaku Gothic New', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'MS PGothic', 'Noto Sans JP', sans-serif;
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* 料理セクション */
.cuisine-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background: white;
}

.cuisine-section:nth-child(even) {
    background: #fafafa;
}

.cuisine-section-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.cuisine-section-reverse {
    flex-direction: row-reverse;
}

.cuisine-section-image-wrapper {
    flex: 0 0 48%;
    position: relative;
}

.cuisine-section-image {
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.cuisine-section:hover .cuisine-section-image {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.cuisine-section-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.cuisine-section:hover .cuisine-section-image img {
    transform: scale(1.05);
}

.cuisine-section-text {
    flex: 1;
    padding: 1rem 0;
}

.cuisine-section-text .section-subtitle {
    font-family: 'Noto Serif JP', serif;
    font-size: 2rem;
    color: var(--primary-brown);
    margin-bottom: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
}

.cuisine-description {
    font-family: 'Zen Kaku Gothic New', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'MS PGothic', 'Noto Sans JP', sans-serif;
    font-size: 1rem;
    color: #666;
    line-height: 2;
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
}

.cuisine-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.cuisine-gallery .gallery-item {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.cuisine-gallery .gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.cuisine-gallery .gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.bar-hours {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    border-left: 4px solid var(--gold);
    font-family: 'Zen Kaku Gothic New', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'MS PGothic', 'Noto Sans JP', sans-serif;
    font-size: 1rem;
    color: #666;
}

.bar-hours svg {
    color: var(--gold);
    flex-shrink: 0;
}

.bar-hours strong {
    color: var(--primary-brown);
    font-weight: 600;
}

.cuisine-image:hover {
    transform: scale(1.05);
}

.cuisine-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.8s ease;
}

.cuisine-image:hover::before {
    left: 100%;
}

.cuisine-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--gold);
    font-weight: 600;
}

.cuisine-text p {
    font-family: 'Zen Kaku Gothic New', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'MS PGothic', 'Noto Sans JP', sans-serif;
    margin-bottom: 1.5rem;
    line-height: 2.2;
    color: rgba(245, 241, 232, 0.9);
    font-weight: 400;
    letter-spacing: 0.02em;
}

.cuisine-highlight {
    background: rgba(212, 175, 55, 0.15);
    padding: 2rem;
    margin: 2.5rem 0;
    border-left: 4px solid var(--gold);
    position: relative;
    transition: all 0.4s ease;
}

.cuisine-highlight:hover {
    background: rgba(212, 175, 55, 0.25);
    transform: translateX(10px);
}

.cuisine-highlight strong {
    display: block;
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.news {
    padding: 8rem 2rem;
    background: var(--light-gray);
}

.news-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.news-card {
    background: white;
    padding: 2.5rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 3px solid transparent;
    opacity: 0;
    transform: translateX(-30px);
}

.news-card.visible {
    opacity: 1;
    transform: translateX(0);
}

.news-card:hover {
    transform: translateY(-8px) translateX(0);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    border-left-color: var(--gold);
}

.news-date {
    color: var(--gold);
    font-size: 0.85rem;
    margin-bottom: 1rem;
    font-weight: 500;
    letter-spacing: 0.1em;
}

.news-card h3 {
    font-family: 'Zen Kaku Gothic New', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'MS PGothic', 'Noto Sans JP', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary-brown);
    font-weight: 600;
    letter-spacing: 0.03em;
    transition: color 0.3s ease;
}

.news-card:hover h3 {
    color: var(--dark-gold);
}

.news-card p {
    font-family: 'Zen Kaku Gothic New', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'MS PGothic', 'Noto Sans JP', sans-serif;
    color: #666;
    line-height: 1.9;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.news-card-image {
    margin-bottom: 1.5rem;
    overflow: hidden;
    border-radius: 4px;
    position: relative;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: box-shadow 0.4s ease;
}

.news-card:hover .news-card-image {
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.news-card-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-card:hover .news-card-image img {
    transform: scale(1.08);
}

/* Instagramセクション */
.instagram-section {
    padding: 8rem 2rem;
    background: var(--light-gray);
}

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

.instagram-content iframe {
    max-width: 100%;
    margin: 0 auto;
}

/* ご予約・アクセスセクション */
.reservation-access {
    padding: 8rem 2rem;
    background: white;
}

.reservation-access-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.reservation-box {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--cream);
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.reservation-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary-brown);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.reservation-box p {
    font-family: 'Zen Kaku Gothic New', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'MS PGothic', 'Noto Sans JP', sans-serif;
    font-size: 1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.reservation-box .cta-button {
    margin-top: 1rem;
}

.access-box {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.access-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary-brown);
    margin-bottom: 0;
    font-weight: 600;
    text-align: center;
}

.map-container {
    width: 100%;
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.access-box .map-placeholder {
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.access-box .cta-button-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--primary-brown);
    text-decoration: none;
    font-family: 'Zen Kaku Gothic New', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'MS PGothic', 'Noto Sans JP', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-align: center;
    transition: all 0.3s ease;
    border-radius: 4px;
    align-self: center;
}

.access-box .cta-button-secondary:hover {
    background: var(--gold);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.access {
    padding: 8rem 2rem;
    background: white;
}

.access-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.map-placeholder {
    height: 500px;
    background: linear-gradient(135deg, var(--cream) 0%, #E8DCC8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-brown);
    font-size: 1.3rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.5s ease;
}

.map-placeholder:hover {
    transform: scale(1.02);
}

.map-placeholder::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    animation: pulse 3s ease-in-out infinite;
}

.access-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-brown);
    font-weight: 600;
    position: relative;
    padding-left: 1.5rem;
}

.access-info h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 70%;
    background: var(--gold);
}

.access-info p {
    margin-bottom: 2rem;
    line-height: 2;
    color: #555;
}

.site-footer,
footer {
    background: linear-gradient(135deg, #2C1810 0%, var(--primary-brown) 100%);
    color: var(--cream);
    padding: 4rem 2rem 1.5rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 1.5rem;
    color: var(--gold);
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-section a {
    color: rgba(245, 241, 232, 0.8);
    text-decoration: none;
    display: block;
    margin-bottom: 0.8rem;
    transition: all 0.3s ease;
    padding-left: 0;
}

.footer-section a:hover {
    color: var(--gold);
    padding-left: 10px;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(245, 241, 232, 0.1);
    font-size: 0.85rem;
    color: rgba(245, 241, 232, 0.6);
}

@media (max-width: 1024px) {
    nav {
        padding: 1rem 2rem;
    }

    .concept-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }

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

    .hero h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    nav {
        padding: 0.7rem 1.5rem;
    }

    .nav-container {
        padding: 0.7rem 1.5rem;
    }

    .logo {
        gap: 0.8rem;
    }

    .logo-link {
        gap: 0.8rem;
    }

    .logo-image,
    .logo-image-img {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }

    .logo-text {
        gap: 0.3rem;
    }

    .logo-main {
        font-size: 1.1rem;
    }

    .logo-sub {
        font-size: 0.65rem;
    }

    .hero {
        height: 100svh;
        background-attachment: scroll;
    }

    .hero-content {
        padding: 1.5rem;
    }

    .hero-label {
        font-size: 0.7rem;
        padding: 0.4rem 1rem;
    }

    .hero h1 {
        font-size: 2rem;
        line-height: 1.5;
    }

    .hero-subtitle {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .cta-button {
        padding: 1rem 2.5rem;
        font-size: 0.9rem;
    }

    .concept,
    .rooms,
    .cuisine,
    .news,
    .instagram-section,
    .access {
        padding: 4rem 1.5rem;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .section-label {
        font-size: 0.75rem;
    }

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

    .section-subtitle {
        font-size: 1.1rem;
    }

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

    .concept-image {
        height: 220px;
    }

    .concept-content {
        padding: 2rem 1.5rem;
    }

    .concept-card h3 {
        font-size: 1.3rem;
    }

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

    .room-image {
        height: 280px;
    }

    .room-info {
        padding: 1.5rem;
    }

    .room-card-title {
        font-size: 1.3rem;
    }

    .cuisine-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .cuisine-image {
        height: 350px;
        font-size: 4rem;
    }

    .cuisine-text h3 {
        font-size: 1.8rem;
    }

    .cuisine-text p {
        font-size: 0.95rem;
    }

    .cuisine-highlight {
        padding: 1.5rem;
        margin: 2rem 0;
    }

    .cuisine-highlight strong {
        font-size: 1.1rem;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .news-card {
        padding: 2rem 1.5rem;
    }

    .news-card h3 {
        font-size: 1.1rem;
    }

    .reservation-access {
        padding: 4rem 1.5rem;
    }

    .reservation-access-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .reservation-box {
        padding: 2.5rem 1.5rem;
    }

    .reservation-box h3 {
        font-size: 1.8rem;
    }

    .access-box h3 {
        font-size: 1.8rem;
    }

    .map-container {
        height: 400px;
    }

    .access-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .map-placeholder {
        height: 300px;
        font-size: 1.1rem;
    }

    .access-info h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .access-info p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    footer {
        padding: 3rem 1.5rem 1.5rem;
    }

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

    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .footer-section a {
        font-size: 0.9rem;
    }

    .copyright {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .logo {
        gap: 0.6rem;
    }

    .logo-link {
        gap: 0.6rem;
    }

    .logo-image,
    .logo-image-img {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    .logo-text {
        gap: 0.25rem;
    }

    .logo-main {
        font-size: 1rem;
    }

    .logo-sub {
        font-size: 0.6rem;
    }

    .hero h1 {
        font-size: 1.6rem;
    }

    .hero-subtitle {
        font-size: 2rem;
    }

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

    .reservation-access {
        padding: 3rem 1rem;
    }

    .reservation-access-content {
        gap: 2rem;
    }

    .reservation-box {
        padding: 2rem 1rem;
    }

    .reservation-box h3 {
        font-size: 1.5rem;
    }

    .access-box h3 {
        font-size: 1.5rem;
    }

    .map-container {
        height: 300px;
    }

    .concept-image {
        height: 200px;
    }

    .concept-content {
        padding: 1.5rem 1rem;
    }

    .cta-button {
        padding: 0.9rem 2rem;
        font-size: 0.85rem;
    }

    .news-card {
        padding: 1.5rem 1rem;
    }

    .cuisine-image {
        height: 280px;
        font-size: 3rem;
    }
}

@media (max-width: 968px) and (orientation: landscape) {
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 120px 0 60px;
    }

    .hero-content {
        padding: 2rem 1.5rem;
    }

    .scroll-indicator {
        display: none;
    }
}

@media (hover: none) and (pointer: coarse) {
    .concept-card:hover,
    .room-card:hover,
    .news-card:hover {
        transform: none;
    }

    .concept-card:active {
        transform: scale(0.98);
    }

    .room-card:active {
        transform: scale(0.98);
    }

    .cta-button:active {
        transform: scale(0.95);
    }
}

/* WordPress用追加スタイル */
.site-main {
    padding-top: 70px;
}

.breadcrumb {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 2rem 1rem;
}

.breadcrumb ol {
    list-style: none;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.breadcrumb li {
    font-family: 'Zen Kaku Gothic New', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'MS PGothic', 'Noto Sans JP', sans-serif;
    font-size: 0.9rem;
    color: #666;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.breadcrumb li:not(:last-child)::after {
    content: ' / ';
    margin-left: 0.5rem;
    color: #999;
}

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

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

.page-header {
    text-align: center;
    padding: 4rem 2rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.page-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--primary-brown);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.page-intro {
    font-size: 1.1rem;
    color: #666;
    line-height: 2;
    max-width: 800px;
    margin: 0 auto;
}

/* 予約ページ用スタイル */
.page-reservation {
    background: #ffffff;
    padding-top: 100px;
    margin-top: -70px;
    color: #333;
}

.reservation-flow,
.reservation-cta,
.reservation-notes,
.phone-reservation,
.jalan-widget {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background: #ffffff;
    color: #333;
}

.reservation-flow h2,
.reservation-cta h2,
.reservation-notes h2,
.phone-reservation h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-brown);
    margin-bottom: 2rem;
    font-weight: 600;
    text-align: center;
}

.reservation-cta {
    text-align: center;
    padding: 4rem 2rem;
}

.reservation-cta p {
    font-family: 'Zen Kaku Gothic New', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'MS PGothic', 'Noto Sans JP', sans-serif;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.flow-content {
    max-width: 800px;
    margin: 0 auto;
    font-family: 'Zen Kaku Gothic New', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'MS PGothic', 'Noto Sans JP', sans-serif;
    color: #666;
    line-height: 2;
}

.flow-content ol {
    list-style: none;
    counter-reset: step-counter;
    padding: 0;
}

.flow-content ol li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.flow-content ol li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 2rem;
    height: 2rem;
    background: var(--gold);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem;
}

.notes-content {
    max-width: 900px;
    margin: 0 auto;
    font-family: 'Zen Kaku Gothic New', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'MS PGothic', 'Noto Sans JP', sans-serif;
    color: #666;
    line-height: 1.8;
}

.time-info {
    background: var(--cream);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--gold);
}

.time-info p {
    margin: 0.5rem 0;
    font-size: 1rem;
}

.time-info strong {
    color: var(--primary-brown);
    font-weight: 600;
}

.notes-text {
    margin-bottom: 2rem;
}

.notes-text p {
    margin-bottom: 1rem;
}

.cancellation-policy {
    margin-top: 2rem;
    padding: 2rem;
    background: #f9f9f9;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.cancellation-policy h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary-brown);
    margin-bottom: 1rem;
    font-weight: 600;
}

.phone-reservation {
    text-align: center;
    padding: 4rem 2rem;
}

.phone-reservation p {
    font-family: 'Zen Kaku Gothic New', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'MS PGothic', 'Noto Sans JP', sans-serif;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.phone-number {
    margin: 2rem 0;
}

.phone-number .cta-button {
    font-size: 1.3rem;
    padding: 1.2rem 3rem;
}

.phone-hours {
    font-size: 0.95rem;
    color: #999;
    margin-top: 1rem;
}

.jalan-widget {
    text-align: center;
    padding: 3rem 2rem;
}

.jalan-widget iframe {
    max-width: 100%;
    margin: 0 auto;
}

.cta-button-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    border: 2px solid var(--primary-brown);
    color: var(--primary-brown);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    margin-top: 2rem;
}

.cta-button-secondary:hover {
    background: var(--primary-brown);
    color: white;
    transform: translateY(-2px);
}

.section-footer {
    text-align: center;
    margin-top: 3rem;
}

/* ページテンプレート用スタイル */
.rooms-archive-grid,
.tourism-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

/* 客室アーカイブページ: 互い違いの縦並びレイアウト */
.rooms-archive-list {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.5rem 1.5rem;
}

.room-archive-item {
    margin-bottom: 1.5rem;
}

.room-archive-wrapper {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.room-archive-item:hover .room-archive-wrapper {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* 奇数番目のアイテム: 画像左、テキスト右 */
.room-item-odd .room-archive-wrapper {
    flex-direction: row;
}

.room-item-odd .room-archive-image {
    flex: 0 0 45%;
    order: 1;
}

.room-item-odd .room-archive-info {
    flex: 1;
    order: 2;
    padding: 1.5rem;
}

/* 偶数番目のアイテム: 画像右、テキスト左 */
.room-item-even .room-archive-wrapper {
    flex-direction: row-reverse;
}

.room-item-even .room-archive-image {
    flex: 0 0 45%;
    order: 2;
}

.room-item-even .room-archive-info {
    flex: 1;
    order: 1;
    padding: 1.5rem;
}

/* フェードインアニメーション */
.fade-in-image {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-image.visible {
    opacity: 1;
    transform: translateY(0);
}

.room-archive-image {
    overflow: hidden;
    border-radius: 12px;
    position: relative;
    height: 300px;
}

.room-archive-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.room-archive-item:hover .room-archive-image img {
    transform: scale(1.05);
}

/* レスポンシブ対応 */
@media (max-width: 968px) {
    .room-archive-wrapper {
        flex-direction: column !important;
        gap: 1rem;
    }

    .room-item-odd .room-archive-image,
    .room-item-even .room-archive-image {
        flex: 1 1 100%;
        order: 1;
        height: 250px;
    }

    .room-item-odd .room-archive-info,
    .room-item-even .room-archive-info {
        flex: 1 1 100%;
        order: 2;
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .rooms-archive-list {
        padding: 0.5rem 1rem;
    }

    .room-archive-item {
        margin-bottom: 1.5rem;
    }

    .room-archive-wrapper {
        gap: 1rem;
    }

    .room-archive-image {
        height: 220px;
    }

    .room-item-odd .room-archive-info,
    .room-item-even .room-archive-info {
        padding: 1.25rem;
    }
}

.tourism-item {
    background: white;
    overflow: hidden;
    transition: all 0.4s ease;
}

.tourism-image {
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 1rem;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: box-shadow 0.4s ease;
}

.tourism-image:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.tourism-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.tourism-item:hover .tourism-image img {
    transform: scale(1.08);
}

.room-placeholder {
    width: 100%;
    height: 320px;
    background: linear-gradient(135deg, #8B7355 0%, #5D4E37 50%, #3E2723 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream);
    font-size: 4rem;
    font-family: 'Playfair Display', serif;
}

.room-archive-info,
.tourism-info {
    padding: 2rem;
}

/* 古いスタイルは削除（新しい互い違いレイアウトを使用） */

.room-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--primary-brown);
    font-weight: 600;
}

.room-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.room-title a:hover {
    color: var(--gold);
}

.room-excerpt {
    font-family: 'Zen Kaku Gothic New', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'MS PGothic', 'Noto Sans JP', sans-serif;
    color: #666;
    line-height: 1.8;
    margin: 0.75rem 0;
    font-size: 0.95rem;
}

.room-amenities-preview {
    margin: 1rem 0;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.amenities-label {
    font-family: 'Zen Kaku Gothic New', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'MS PGothic', 'Noto Sans JP', sans-serif;
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.amenities-list-inline {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.amenities-list-inline li {
    font-family: 'Zen Kaku Gothic New', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'MS PGothic', 'Noto Sans JP', sans-serif;
    font-size: 0.85rem;
    color: #666;
    padding: 0.3rem 0.8rem;
    background: #f5f5f5;
    border-radius: 4px;
    display: inline-block;
}

.amenities-list-inline li.amenities-more {
    background: transparent;
    color: var(--gold);
    font-weight: 500;
}

.room-cta {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.room-meta,
.tourism-meta {
    font-family: 'Zen Kaku Gothic New', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'MS PGothic', 'Noto Sans JP', sans-serif;
    margin: 0.4rem 0;
    font-size: 0.95rem;
    color: #666;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.tourism-meta span {
    margin-right: 1rem;
}

.tourism-filters {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-button {
    padding: 0.5rem 1.5rem;
    background: white;
    border: 2px solid var(--primary-brown);
    color: var(--primary-brown);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.filter-button:hover,
.filter-button.active {
    background: var(--primary-brown);
    color: white;
}

.tourism-item {
    display: none;
}

.tourism-item.all,
.tourism-item.visible {
    display: block;
}

/* アーカイブページ用スタイル */
.archive-header {
    text-align: center;
    padding: 1rem 2rem 1rem;
    max-width: 1400px;
    margin: 0 auto;
}

.archive-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--primary-brown);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.archive-description {
    font-family: 'Zen Kaku Gothic New', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'MS PGothic', 'Noto Sans JP', sans-serif;
    font-size: 1.1rem;
    color: #666;
    line-height: 2;
    max-width: 800px;
    margin: 0 auto;
    letter-spacing: 0.02em;
}

/* 客室アーカイブページ専用スタイル */
.archive-rooms {
    background: #fafafa;
    margin-top: -70px; /* .site-mainのpadding-topを相殺 */
    padding-top: 120px; /* ヘッダーの高さ分のパディング */
}

.rooms-overview-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 2rem;
    background: white;
}

.rooms-overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.rooms-overview-text h2,
.common-amenities h2 {
    font-family: 'Noto Serif JP', serif;
    font-size: 2rem;
    color: var(--primary-brown);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.overview-content {
    font-family: 'Zen Kaku Gothic New', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'MS PGothic', 'Noto Sans JP', sans-serif;
    font-size: 1rem;
    color: #666;
    line-height: 2;
    letter-spacing: 0.02em;
}

.common-amenities .amenities-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
}

.common-amenities .amenities-list li {
    font-family: 'Zen Kaku Gothic New', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'MS PGothic', 'Noto Sans JP', sans-serif;
    font-size: 0.95rem;
    color: #666;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.common-amenities .amenities-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
    font-size: 1.1rem;
}

.no-rooms-message {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 4rem 2rem;
    text-align: center;
    background: white;
    border-radius: 8px;
}

.no-rooms-message p {
    font-family: 'Zen Kaku Gothic New', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'MS PGothic', 'Noto Sans JP', sans-serif;
    font-size: 1.1rem;
    color: #666;
}

.archive-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.archive-item {
    background: white;
    padding: 2rem;
    transition: all 0.4s ease;
}

.archive-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.archive-image {
    margin-bottom: 1rem;
    overflow: hidden;
    border-radius: 4px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: box-shadow 0.4s ease;
}

.archive-item:hover .archive-image {
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.archive-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.room-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.gallery-item {
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.gallery-item:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.room-thumbnail {
    margin-bottom: 2rem;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: box-shadow 0.4s ease;
}

.room-thumbnail:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.room-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.room-thumbnail:hover img {
    transform: scale(1.02);
}

.other-room-image {
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.other-room-item:hover .other-room-image {
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transform: translateY(-5px);
}

.other-room-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.other-room-item:hover .other-room-image img {
    transform: scale(1.08);
}

.archive-date {
    color: var(--gold);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.archive-content h2 {
    font-family: 'Zen Kaku Gothic New', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'MS PGothic', 'Noto Sans JP', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.archive-content h2 a {
    color: var(--primary-brown);
    text-decoration: none;
    transition: color 0.3s ease;
}

.archive-content h2 a:hover {
    color: var(--gold);
}

.read-more {
    display: inline-block;
    margin-top: 1rem;
    color: var(--primary-brown);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: var(--gold);
}

/* 単一投稿ページ用スタイル */
.single-post {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

.entry-header {
    margin-bottom: 2rem;
    text-align: center;
}

.entry-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-brown);
    margin-bottom: 1rem;
}

.entry-meta {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 2rem;
}

.entry-meta span {
    margin-right: 1rem;
}

.entry-thumbnail {
    margin-bottom: 2rem;
}

.entry-thumbnail img {
    width: 100%;
    height: auto;
}

.entry-content {
    font-family: 'Zen Kaku Gothic New', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'MS PGothic', 'Noto Sans JP', sans-serif;
    line-height: 2;
    color: #333;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.entry-content p {
    margin-bottom: 1.5rem;
    font-family: 'Zen Kaku Gothic New', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'MS PGothic', 'Noto Sans JP', sans-serif;
}

.entry-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary-brown);
    margin: 2rem 0 1rem;
}

.entry-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary-brown);
    margin: 1.5rem 0 1rem;
}

.tag-links {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.tag-links a {
    display: inline-block;
    margin-right: 0.5rem;
    padding: 0.3rem 0.8rem;
    background: var(--light-gray);
    color: var(--primary-brown);
    text-decoration: none;
    border-radius: 3px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.tag-links a:hover {
    background: var(--gold);
    color: white;
}

.related-posts {
    max-width: 1400px;
    margin: 3rem auto;
    padding: 2rem;
}

.related-posts h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary-brown);
    margin-bottom: 2rem;
    text-align: center;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.related-post-item {
    background: white;
    transition: all 0.3s ease;
}

.related-post-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.related-post-image img {
    width: 100%;
    height: auto;
}

.related-post-content {
    padding: 1.5rem;
}

.related-post-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.related-post-content h3 a {
    color: var(--primary-brown);
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-post-content h3 a:hover {
    color: var(--gold);
}

.related-post-date {
    font-size: 0.85rem;
    color: #666;
}

/* 404エラーページ用スタイル */
.error-404-section {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem;
    background: var(--light-gray);
    position: relative;
}

.error-404-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image: radial-gradient(circle, var(--primary-brown) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.error-404-content {
    max-width: 800px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.error-404-number {
    margin-bottom: 2rem;
}

.error-number {
    font-family: 'Playfair Display', serif;
    font-size: 12rem;
    font-weight: 900;
    color: var(--primary-brown);
    line-height: 1;
    display: block;
    opacity: 0.1;
    position: relative;
}

.error-404-text {
    margin-bottom: 3rem;
}

.error-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-brown);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.error-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 2;
    margin-bottom: 0;
}

.error-404-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.error-404-links {
    padding-top: 3rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.error-404-links h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary-brown);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.error-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.error-links-list li {
    font-size: 1rem;
}

.error-links-list a {
    color: var(--primary-brown);
    text-decoration: none;
    padding: 0.5rem 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    display: inline-block;
    transition: all 0.3s ease;
    background: white;
}

.error-links-list a:hover {
    background: var(--primary-brown);
    color: white;
    border-color: var(--primary-brown);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* レスポンシブ調整 */
@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }

    .archive-title {
        font-size: 2rem;
    }

    .rooms-overview-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .common-amenities .amenities-list {
        grid-template-columns: 1fr;
    }

    /* 予約ページのレスポンシブ対応 */
    .page-reservation {
        padding-top: 90px;
        margin-top: -70px;
    }

    .reservation-flow,
    .reservation-cta,
    .reservation-notes,
    .phone-reservation,
    .jalan-widget {
        padding: 2rem 1.5rem;
    }

    .reservation-flow h2,
    .reservation-cta h2,
    .reservation-notes h2,
    .phone-reservation h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .reservation-cta {
        padding: 3rem 1.5rem;
    }

    .phone-reservation {
        padding: 3rem 1.5rem;
    }

    .phone-number .cta-button {
        font-size: 1.1rem;
        padding: 1rem 2rem;
    }

    /* お料理ページのレスポンシブ対応 */
    .cuisine-section-content {
        flex-direction: column;
        gap: 2rem;
    }

    .cuisine-section-reverse {
        flex-direction: column;
    }

    .cuisine-section-image-wrapper {
        flex: 1 1 100%;
        width: 100%;
    }

    .cuisine-section-image {
        height: 300px;
    }

    .concept-title {
        font-size: 2rem;
    }

    .cuisine-section-text .section-subtitle {
        font-size: 1.75rem;
    }

    .cuisine-concept-section {
        padding: 2rem 1.5rem;
    }

    .cuisine-section {
        padding: 2rem 1.5rem;
    }

    .cuisine-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .archive-grid,
    .rooms-archive-grid,
    .tourism-grid {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    .single-post {
        padding: 1rem;
    }

    .entry-title {
        font-size: 2rem;
    }

    .error-404-section {
        padding: 4rem 1.5rem;
        min-height: calc(100vh - 150px);
    }

    .error-number {
        font-size: 8rem;
    }

    .error-title {
        font-size: 2rem;
    }

    .error-description {
        font-size: 1rem;
    }

    .error-404-actions {
        flex-direction: column;
        align-items: center;
    }

    .error-404-actions .cta-button,
    .error-404-actions .cta-button-secondary {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .error-number {
        font-size: 6rem;
    }

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

    .error-404-links h2 {
        font-size: 1.2rem;
    }
}
