* {
    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;
    left: 0;
    right: 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);
}

/* ログイン時の管理バーと固定ヘッダーが重ならないようにする */
.admin-bar .site-header {
    top: var(--wp-admin--admin-bar--height, 32px);
}

.admin-bar .mobile-menu {
    top: var(--wp-admin--admin-bar--height, 32px);
    height: calc(100vh - var(--wp-admin--admin-bar--height, 32px));
    height: calc(100svh - var(--wp-admin--admin-bar--height, 32px));
}

@media screen and (max-width: 782px) {
    .admin-bar .site-header {
        top: var(--wp-admin--admin-bar--height, 46px);
    }

    .admin-bar .mobile-menu {
        top: var(--wp-admin--admin-bar--height, 46px);
        height: calc(100vh - var(--wp-admin--admin-bar--height, 46px));
        height: calc(100svh - var(--wp-admin--admin-bar--height, 46px));
    }
}

/* 固定ヘッダー分の余白（パンくずが隠れないように） */
.site-main:not(.front-page) {
    padding-top: 90px;
}

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

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

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

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

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    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.35rem;
}

.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;
}

/* モバイルメニューリストは常に非表示（モバイルメニュー内で表示） */
.mobile-menu-list {
    display: block;
}

/* モバイルメニューがactiveの時に確実に表示されるように */
.mobile-menu.active .mobile-menu-list {
    display: block !important;
    visibility: visible !important;
}

.nav-links a {
    color: var(--cream);
    text-decoration: none;
    font-size: 1rem;
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    letter-spacing: 0.08em;
    line-height: 1.5;
}

.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: 10001;
    padding: 12px;
    position: relative;
    margin-left: auto;
    overflow: visible;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
}

.hamburger span {
    width: 28px;
    height: 2px;
    background: var(--cream);
    transition: all 0.3s ease;
    border-radius: 2px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.hamburger span:nth-child(1) {
    margin-top: -8px;
}

.hamburger span:nth-child(2) {
    margin-top: 0;
}

.hamburger span:nth-child(3) {
    margin-top: 8px;
}

.hamburger.active span:nth-child(1) {
    transform: translate(-50%, -50%) rotate(45deg);
    margin-top: 0;
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translate(-50%, -50%);
}

.hamburger.active span:nth-child(3) {
    transform: translate(-50%, -50%) rotate(-45deg);
    margin-top: 0;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #2C1810 0%, var(--primary-brown) 100%);
    z-index: 99999;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s ease;
    overflow-y: auto;
    visibility: hidden;
    display: block;
    transform: translateX(100%);
}

.mobile-menu.active {
    position: static;
    transform: translateX(0) !important;
    visibility: visible !important;
    display: block !important;
}

.mobile-menu ul,
.mobile-menu .mobile-menu-list {
    list-style: none;
    padding: 2rem;
    margin: 0;
    display: block !important;
}

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

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

.mobile-menu.active ul li:nth-child(1),
.mobile-menu.active .mobile-menu-list li:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active ul li:nth-child(2),
.mobile-menu.active .mobile-menu-list li:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu.active ul li:nth-child(3),
.mobile-menu.active .mobile-menu-list li:nth-child(3) { transition-delay: 0.3s; }
.mobile-menu.active ul li:nth-child(4),
.mobile-menu.active .mobile-menu-list li:nth-child(4) { transition-delay: 0.4s; }
.mobile-menu.active ul li:nth-child(5),
.mobile-menu.active .mobile-menu-list li:nth-child(5) { transition-delay: 0.5s; }
.mobile-menu.active ul li:nth-child(6),
.mobile-menu.active .mobile-menu-list li:nth-child(6) { transition-delay: 0.6s; }
.mobile-menu.active ul li:nth-child(7),
.mobile-menu.active .mobile-menu-list li:nth-child(7) { transition-delay: 0.7s; }
.mobile-menu.active ul li:nth-child(8),
.mobile-menu.active .mobile-menu-list li:nth-child(8) { transition-delay: 0.8s; }

/* リンククリック時はアニメーションを無効化 */
.mobile-menu.closing ul li,
.mobile-menu.closing .mobile-menu-list li {
    transition: none !important;
    opacity: 1 !important;
    transform: translateX(0) !important;
}

.mobile-menu ul li a,
.mobile-menu .mobile-menu-list li a {
    color: var(--cream);
    text-decoration: none;
    font-size: 1.1rem;
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    display: block;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
    letter-spacing: 0.08em;
    line-height: 1.6;
}

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

.hero {
    /* min-height: 拡大表示(125%/150%)でもコンテンツ分だけ高さが伸び、見切れない */
    min-height: 100vh;
    min-height: 100svh;
    padding-top: 90px; /* 固定ヘッダーと重ならないように */
    padding-bottom: clamp(2rem, 6vmin, 5rem);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow-x: hidden;
    overflow-y: visible;
    box-sizing: border-box;
}

.hero[style*="background-image"] {
    /* fixed は高さが伸びたとき背景が途切れやすいため scroll（拡大表示でも全面に表示） */
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.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: 1200px;
    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.1s; }
.hero-content > *:nth-child(2) { animation-delay: 0.3s; }
.hero-content > *:nth-child(3) { animation-delay: 0.5s; }
.hero-content > *:nth-child(4) { animation-delay: 0.7s; }
.hero-content > *:nth-child(5) { animation-delay: 0.9s; }

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

.hero-logo {
    margin-bottom: 2rem;
    text-align: center;
    animation: fadeInUp 1.2s ease-out forwards;
    opacity: 0;
    animation-delay: 0.1s;
}

.hero-logo-image {
    max-width: 200px;
    height: auto;
    display: inline-block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

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

.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, var(--cream) 0%, #E8DCC8 100%);
    border: 2px solid var(--gold);
    color: var(--primary-brown);
    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: 600;
    letter-spacing: 0.15em;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(212, 175, 55, 0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: 0;
}

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

.cta-button span {
    position: relative;
    z-index: 2;
    color: var(--primary-brown);
}

.cta-button,
.cta-button span {
    color: var(--primary-brown);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
    color: var(--primary-brown);
    background: linear-gradient(135deg, #E8DCC8 0%, var(--cream) 100%);
}

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: 2rem 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);
}

/* トップページ お料理セクション スライダー */
.cuisine-image-wrapper {
    position: relative;
    width: 100%;
}

.cuisine .cuisine-slider {
    height: 500px;
    border-radius: 12px;
}

.cuisine .cuisine-slider .slider-slide img {
    object-fit: cover;
}

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

/* 周辺観光ページ用スタイル */
.page-tourism {
    background: #fafafa;
}

/* お問い合わせページ用スタイル */
.page-contact {
    background: #ffffff;
    color: #333;
}

/* アクセスポージ用スタイル */
.page-access {
    background: #ffffff;
    color: #333;
}

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

.cuisine-concept-content {
    max-width: 1200px;
    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;
    text-align: center;
}

.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;
    text-align: start;
}

.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;
    text-align: center;
}

.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;
    text-align: start;
}

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

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

.cuisine-section-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.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-slider {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    background: #f5f5f5;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    z-index: 1;
}

.slider-slide.active {
    opacity: 1;
    z-index: 2;
}

.slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slider-controls {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 10;
    background: rgba(0, 0, 0, 0.5);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.slider-prev,
.slider-next {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--primary-brown);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-weight: bold;
    line-height: 1;
    padding: 0;
    z-index: 10;
}

.slider-prev:hover,
.slider-next:hover {
    background: white;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.slider-prev:active,
.slider-next:active {
    transform: scale(0.95);
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.slider-dot.active {
    background: white;
    width: 12px;
    height: 12px;
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

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

.cuisine-section-text .section-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    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: 1.05rem;
    color: #555;
    line-height: 2;
    margin-bottom: 0;
    letter-spacing: 0.02em;
    text-align: start;
}

.cuisine-description p {
    margin-bottom: 1.5rem;
}

.cuisine-description p:last-child {
    margin-bottom: 0;
}

.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 h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
}

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

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

.news-card:hover h3 a {
    color: var(--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-image a {
    display: block;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.news-card-image a:hover {
    opacity: 0.9;
}

.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;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

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

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

/* SmashBalloon Instagram Feed プラグイン用スタイル */
.instagram-content #sb_instagram,
.instagram-content .sbi_feed,
.instagram-content .sbi_feed_wrap {
    margin: 0 auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    max-width: 100% !important;
}

.instagram-content .sbi_feed_item {
    margin: 0 auto;
}

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

.reservation-access-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
    align-items: stretch;
}

.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;
    color: var(--primary-brown);
}

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

.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 {
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    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;
    text-align: center;
    padding: 2rem;
}

.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-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

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

.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;
}

.access-info h2 {
    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 h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 70%;
    background: var(--gold);
}

.address-info {
    margin-bottom: 2rem;
    line-height: 1.8;
    color: #333;
    font-size: 1.2rem;
    font-weight: 400;
    padding: 1.5rem;
    background: #f9f9f9;
    border-radius: 8px;
    border-left: 4px solid var(--gold);
}

.address-info br {
    display: block;
    margin: 0.5rem 0;
}

/* アクセスページ「所在地」内の TEL/Email 行のみ（お問い合わせページの section とは別） */
.access-info .contact-info {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #333;
    font-size: 1.15rem;
    padding: 1rem 1.5rem;
    background: #f9f9f9;
    border-radius: 8px;
    border-left: 4px solid var(--gold);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.access-info .contact-info strong {
    color: var(--primary-brown);
    font-weight: 600;
    min-width: 80px;
    font-size: 1rem;
    letter-spacing: 0.05em;
}

.access-info .contact-info a {
    color: var(--primary-brown);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 1.15rem;
}

.access-info .contact-info a:hover {
    color: var(--gold);
    text-decoration: underline;
}

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

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

/* 交通手段セクション */
.transport-section {
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.transport-item {
    background: white;
    border-radius: 8px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.transport-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.transport-item 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;
}

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

.transport-content {
    line-height: 2;
    color: #555;
    font-size: 1.1rem;
}

.transport-content p {
    margin-bottom: 1rem;
}

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

/* 駐車場情報セクション */
.parking-section {
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 2rem;
    background: white;
    border-radius: 8px;
    padding: 2.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.parking-section h2 {
    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;
}

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

.parking-content {
    line-height: 2;
    color: #555;
    font-size: 1.1rem;
}

.parking-content p {
    margin-bottom: 1rem;
}

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

.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 ul,
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li,
.footer-menu li {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li::before,
.footer-menu li::before {
    content: none;
}

.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);
}

.copyright .copyright-break-mobile {
    display: none;
}

@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,
    .main-navigation .nav-links,
    nav .nav-links,
    .nav-container .nav-links,
    .site-header .nav-links {
        display: none !important;
    }

    /* モバイルメニュー内のメニューは表示 */
    .mobile-menu .nav-links,
    .mobile-menu .mobile-menu-list {
        display: block !important;
    }

    /* ハンバーガーメニューを表示 */
    .hamburger {
        display: flex !important;
        position: relative;
        margin-left: auto;
        z-index: 100001;
        order: 2;
        flex-shrink: 0;
        overflow: visible;
    }

    nav {
        padding: 0.7rem 1.5rem 0.7rem 0.75rem;
    }

    .nav-container {
        padding: 0.7rem 0rem;
        justify-content: space-between;
        align-items: center;
        position: relative;
        width: 100%;
    }

    .nav-container .logo {
        flex-shrink: 0;
        order: 1;
        margin-right: auto;
    }

    .nav-container .hamburger {
        flex-shrink: 0;
        margin-left: auto;
        order: 2;
    }

    .logo {
        gap: 0.55rem;
    }

    .logo-link {
        gap: 0.55rem;
    }

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

    .logo-text {
        gap: 0.25rem;
    }

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

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

    .hero,
    .hero[style*="background-image"] {
        min-height: 100svh;
        height: auto;
        background-attachment: scroll;
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
    }

    .hero-content {
        padding: 1rem;
    }

    .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,
    .cuisine .cuisine-slider {
        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 {
        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;
    }

    .transport-section {
        padding: 0 1.5rem;
    }

    .transport-item {
        padding: 2rem;
    }

    .transport-item h3 {
        font-size: 1.5rem;
    }

    .parking-section {
        padding: 2rem;
        margin: 2rem auto;
    }

    .parking-section h2 {
        font-size: 1.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;
    }

    .address-info {
        font-size: 1.1rem;
        padding: 1.25rem;
        margin-bottom: 1.5rem;
    }

    .access-info .contact-info {
        font-size: 1.05rem;
        padding: 0.875rem 1.25rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .access-info .contact-info strong {
        min-width: auto;
        font-size: 0.95rem;
    }

    .access-info .contact-info a {
        font-size: 1.05rem;
    }

    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;
    }

    .copyright .copyright-break-mobile {
        display: block;
    }
}

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

    .logo-link {
        gap: 0.15rem;
    }

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

    .logo-text {
        gap: 0.2rem;
    }

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

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

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

    .hamburger {
        padding: 10px;
        width: 36px;
        height: 36px;
        overflow: visible;
    }

    .hamburger span {
        width: 24px;
    }

    .hero-logo-image {
        max-width: 150px;
    }

    .hero,
    .hero[style*="background-image"] {
        min-height: 100svh;
        height: auto;
        background-attachment: scroll;
        background-size: cover;
        background-position: center center;
    }

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

    .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;
    }

    .access-section {
        padding: 1rem;
    }

    .access-content {
        padding: 1rem 0;
    }

    .transport-section {
        padding: 0 1rem;
        margin: 2rem auto;
    }

    .transport-item {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .transport-item h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .transport-content {
        font-size: 1rem;
    }

    .parking-section {
        padding: 1.5rem;
        margin: 2rem auto;
    }

    .parking-section h2 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .parking-content {
        font-size: 1rem;
    }

    .address-info {
        font-size: 1rem;
        padding: 1rem;
    }

    .access-info .contact-info {
        font-size: 1rem;
        padding: 0.75rem 1rem;
    }

    .access-info .contact-info strong {
        font-size: 0.9rem;
    }

    .access-info .contact-info a {
        font-size: 1rem;
    }

    .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,
    .cuisine .cuisine-slider {
        height: 280px;
        font-size: 3rem;
    }
}

@media (max-width: 968px) and (orientation: landscape) {
    .hero,
    .hero[style*="background-image"] {
        min-height: 100svh;
        height: auto;
        padding: 120px 0 60px;
        background-attachment: scroll;
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
    }

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

@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);
    }
}

.breadcrumb {
    max-width: 1400px;
    margin: 0 auto;
    padding: 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 {
    padding: 3rem 2rem 2rem;
    max-width: 1400px;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 1;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* 固定ページ内のpage-headerの位置調整 */
.page-cuisine .page-header,
.page-facilities .page-header,
.page-rooms .page-header,
.page-reservation .page-header,
.page-contact .page-header,
.page-access .page-header,
.page-tourism .page-header,
.page-gutenberg .page-header {
    margin-top: 0;
    padding-top: 2rem;
}

.page-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--primary-brown);
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.3;
    text-align: center;
}

/* the_content: エディタ側の配置（ブロックの has-text-align-* 等）を優先するため継承による中央寄せをしない */
.page-intro {
    font-size: 1.1rem;
    color: #555;
    line-height: 2;
    max-width: 800px;
    margin: 0 auto;
    letter-spacing: 0.02em;
    text-align: start;
}

/* 客室ページ用スタイル */
.page-rooms {
    background: #ffffff;
    color: #333;
}

/* お問い合わせページ用スタイル */
.page-contact {
    background: #ffffff;
    color: #333;
}

.contact-form-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background: white;
}

/* 本文にショートコードだけ埋め込んだ場合も含め、お問い合わせページ上の CF7 に適用 */
.page-contact .wpcf7-form {
    max-width: 100%;
}

.page-contact .wpcf7-form p {
    margin-bottom: 1.5rem;
}

.page-contact .wpcf7-form label {
    display: block;
    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: var(--primary-brown);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.page-contact .wpcf7-form input[type="text"],
.page-contact .wpcf7-form input[type="email"],
.page-contact .wpcf7-form input[type="tel"],
.page-contact .wpcf7-form input[type="url"],
.page-contact .wpcf7-form textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1px solid #ddd;
    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: 1rem;
    line-height: 1.5;
    color: #333;
    background: white;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.page-contact .wpcf7-form input[type="text"]:focus,
.page-contact .wpcf7-form input[type="email"]:focus,
.page-contact .wpcf7-form input[type="tel"]:focus,
.page-contact .wpcf7-form input[type="url"]:focus,
.page-contact .wpcf7-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.page-contact .wpcf7-form textarea {
    min-height: 170px;
    padding: 1.125rem 1.25rem;
    line-height: 1.6;
    resize: vertical;
}

/* Contact Form 7の送信ボタンを中央寄せ */
.page-contact .wpcf7-form p:has(input[type="submit"]),
.page-contact .wpcf7-form p:has(button[type="submit"]),
.page-contact .wpcf7-form p.submit,
.page-contact .wpcf7-form .wpcf7-submit-container {
    text-align: center;
}

.page-contact .wpcf7-form input[type="submit"],
.page-contact .wpcf7-form button[type="submit"] {
    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: 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: 1rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 4px;
    margin: 0 auto;
    appearance: none;
    -webkit-appearance: none;
    line-height: 1.4;
}

.page-contact .wpcf7-form input[type="submit"]:hover,
.page-contact .wpcf7-form button[type="submit"]:hover {
    background: var(--gold);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.page-contact .wpcf7-form input[type="submit"]:focus-visible,
.page-contact .wpcf7-form button[type="submit"]:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}

.page-contact .wpcf7-form .wpcf7-response-output {
    margin-top: 1.5rem;
    padding: 1rem;
    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.95rem;
}

.page-contact .wpcf7-form .wpcf7-mail-sent-ok {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.page-contact .wpcf7-form .wpcf7-mail-sent-ng,
.page-contact .wpcf7-form .wpcf7-aborted,
.page-contact .wpcf7-form .wpcf7-spam {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.page-contact .wpcf7-form .wpcf7-validation-errors {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    color: #856404;
}

.page-contact .wpcf7-form .wpcf7-not-valid-tip {
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 0.25rem;
    display: block;
}

.page-contact .wpcf7-form .wpcf7-not-valid {
    border-color: #dc3545;
}

/* お問い合わせページの本文スタイル */
.page-contact .page-intro {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
    line-height: 1.8;
    color: #555;
}

.page-contact .page-intro h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary-brown);
    margin: 2.5rem 0 1.5rem;
    font-weight: 600;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--gold);
}

.page-contact .page-intro h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary-brown);
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.page-contact .page-intro p {
    margin-bottom: 1.2rem;
    font-size: 1rem;
    line-height: 1.8;
}

.page-contact .page-intro ul,
.page-contact .page-intro ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.page-contact .page-intro li {
    margin-bottom: 0.8rem;
    line-height: 1.8;
}

/* FAQセクションのスタイル */
.page-contact .page-intro strong {
    font-weight: 600;
    color: var(--primary-brown);
}

.page-contact .page-intro p strong {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-info {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background: white;
    margin-bottom: 2rem;
}

.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-brown);
    margin-bottom: 2.5rem;
    font-weight: 600;
    text-align: left;
    position: relative;
    padding-left: 0;
    border-left: none;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.contact-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, var(--cream) 0%, #E8DCC8 100%);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-color: var(--gold);
}

.contact-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--primary-brown);
    margin-bottom: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.contact-item 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: var(--primary-brown);
    margin: 0;
    font-weight: 500;
}

.contact-item a {
    color: var(--primary-brown);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-item a:hover {
    color: var(--gold);
    transform: scale(1.05);
}

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

.reservation-flow,
.reservation-cta,
.reservation-notes,
.phone-reservation {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 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: 1.5rem;
    font-weight: 600;
    text-align: center;
}

.reservation-cta {
    text-align: center;
    padding: 2.5rem 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: 1.5rem;
    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;
    text-align: start;
}

.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;
    text-align: start;
}

.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: 2.5rem 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;
}

.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;
}

/* page-rooms.php用のグリッドレイアウト内のアイテム */
.rooms-archive-grid .room-archive-item {
    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);
    display: flex;
    flex-direction: column;
}

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

.rooms-archive-grid .room-archive-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
    position: relative;
}

.rooms-archive-grid .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);
}

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

.rooms-archive-grid .room-archive-info {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.rooms-archive-grid .room-archive-info h2 {
    margin-bottom: 0.75rem;
}

.rooms-archive-grid .room-archive-info .room-meta {
    margin: 0.4rem 0;
}

.rooms-archive-grid .room-archive-info .room-excerpt {
    margin: 0.75rem 0;
    flex: 1;
}

.rooms-archive-grid .room-archive-info .cta-button-secondary {
    margin-top: auto;
    align-self: flex-start;
}

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

.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-page {
    background: #fafafa;
}

.archive-page .breadcrumb {
    padding-top: 1rem;
    padding-bottom: 0.5rem;
    margin-bottom: 0;
}

.archive-header {
    padding: 3rem 2rem 2rem;
    max-width: 1400px;
    margin: 0 auto 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
}

.archive-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--primary-brown);
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.3;
    text-align: center;
}

.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: #555;
    line-height: 2;
    max-width: 800px;
    margin: 0 auto;
    letter-spacing: 0.02em;
    text-align: start;
}

/* 客室アーカイブ: 本文セクション（左寄せ） */
.archive-intro {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.archive-intro-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: 1.1rem;
    color: #555;
    line-height: 2;
    text-align: left;
    letter-spacing: 0.02em;
}

.archive-intro-content p {
    margin-bottom: 1em;
}

.archive-intro-content p:last-child {
    margin-bottom: 0;
}

/* 客室アーカイブページ専用スタイル */
.archive-rooms {
    background: #fafafa;
}

.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;
    text-align: start;
}

.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;
    height: 250px;
    background: #f5f5f5;
}

.archive-image a {
    display: block;
    width: 100%;
    height: 100%;
}

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

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

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

/* ページネーション */
.posts-navigation,
.navigation,
.pagination-wrapper {
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 2rem;
    text-align: center;
}

.nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.page-numbers {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: white;
    color: var(--primary-brown);
    text-decoration: none;
    border: 1px solid rgba(212, 175, 55, 0.3);
    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.9rem;
    transition: all 0.3s ease;
    min-width: 40px;
    text-align: center;
}

.page-numbers:hover,
.page-numbers.current {
    background: var(--primary-brown);
    color: white;
    border-color: var(--primary-brown);
}

.page-numbers.dots {
    border: none;
    background: transparent;
    cursor: default;
}

.page-numbers.dots:hover {
    background: transparent;
    color: var(--primary-brown);
}

.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);
}

/* single-rooms.php用スタイル */
.single-rooms {
    background: #fafafa;
    padding: 90px 0 2rem;
}

.single-rooms .breadcrumb {
    padding-top: 1rem;
    padding-bottom: 0.5rem;
    margin-bottom: 0;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

.single-room {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.single-room .entry-header {
    text-align: center;
    padding: 0 0 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.single-room .entry-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--primary-brown);
    margin-bottom: 0;
    font-weight: 600;
    line-height: 1.3;
}

.single-room .room-gallery {
    max-width: 900px;
    margin: 0 auto 2rem;
}

.single-room .room-thumbnail {
    max-width: 900px;
    margin: 0 auto 2rem;
}

.single-room .room-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

.single-room .gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

.single-room .room-details {
    max-width: 900px;
    margin: 0 auto 2rem;
    padding: 1.5rem 2rem;
    background: var(--cream);
    border-radius: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem 2rem;
    align-items: center;
}

.single-room .room-detail-item {
    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;
    line-height: 1.6;
    white-space: nowrap;
}

.single-room .room-detail-item strong {
    color: var(--primary-brown);
    font-weight: 600;
    margin-right: 0.5rem;
}

.single-room .room-amenities {
    max-width: 900px;
    margin: 0 auto 2rem;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    border: 1px solid #eee;
}

.single-room .room-amenities h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary-brown);
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-align: center;
}

.single-room .room-amenities .amenities-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
}

.single-room .room-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 1rem;
    background: var(--cream);
    border-radius: 4px;
    border-left: 3px solid var(--gold);
}

.single-room .entry-content {
    max-width: 900px;
    margin: 0 auto 2rem;
    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;
    text-align: start;
}

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

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


.single-rooms .other-rooms {
    max-width: 1400px;
    margin: 3rem auto 0;
    padding: 2rem;
}

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

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

.single-rooms .other-room-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.single-rooms .other-room-image {
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

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

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

.single-rooms .other-room-content {
    padding: 1.5rem;
}

.single-rooms .other-room-content h3 {
    font-size: 1.1rem;
    margin-bottom: 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-weight: 600;
}

.single-rooms .other-room-content h3 a {
    color: var(--primary-brown);
    text-decoration: none;
    transition: color 0.3s ease;
}

.single-rooms .other-room-content h3 a:hover {
    color: var(--gold);
}

.single-rooms .other-room-content p {
    font-size: 0.85rem;
    color: #666;
    font-family: 'Zen Kaku Gothic New', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'MS PGothic', 'Noto Sans JP', sans-serif;
    margin: 0;
}

.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);
}

.archive-excerpt {
    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;
    line-height: 1.8;
    margin: 1rem 0;
    letter-spacing: 0.02em;
}

.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-page {
    background: #fafafa;
}

.single-page .breadcrumb {
    padding-top: 1rem;
    padding-bottom: 0.5rem;
    margin-bottom: 0;
}

.single-post {
    margin: 0 auto;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.single-post .entry-content {
    max-width: 900px;
    margin: 0 auto;
}

.entry-header {
    padding: 3rem 2rem 2rem;
    max-width: 1400px;
    margin: 0 auto 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
}

.entry-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--primary-brown);
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.3;
    text-align: center;
}

.entry-meta {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 0;
    font-family: 'Zen Kaku Gothic New', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'MS PGothic', 'Noto Sans JP', sans-serif;
    letter-spacing: 0.02em;
    text-align: center;
}

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

.entry-meta a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.entry-meta a:hover {
    color: var(--dark-gold);
}

.entry-thumbnail {
    max-width: 900px;
    margin: 0 auto 2rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.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;
    margin-bottom: 2rem;
    text-align: start;
}

.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;
    font-weight: 600;
}

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

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

.tag-links {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.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 0;
    padding: 2rem;
}

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

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

.related-post-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    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 {
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

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

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

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

.related-post-content h3 {
    font-size: 1.1rem;
    margin-bottom: 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-weight: 600;
}

.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;
    font-family: 'Zen Kaku Gothic New', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'MS PGothic', 'Noto Sans JP', sans-serif;
}

/* 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,
    .page-tourism,
    .page-contact,
    .page-access,
    .page-cuisine {
        padding-top: 90px;
    }

    .contact-form-section {
        padding: 2rem 1.5rem;
    }

    .contact-info {
        padding: 2rem 1.5rem;
    }

    .contact-info h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
        padding-left: 0;
        border-left: none;
    }

    .contact-details {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 100%;
    }

    .contact-item {
        padding: 2rem 1.5rem;
    }

    .contact-item h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .contact-item p {
        font-size: 1rem;
    }

    /* 固定ページ内のpage-headerのレスポンシブ対応 */
    .page-header {
        padding: 2rem 1.5rem 1.5rem;
        margin-bottom: 1.5rem;
        border-radius: 0;
    }

    .page-cuisine .page-header,
    .page-facilities .page-header,
    .page-rooms .page-header,
    .page-reservation .page-header,
    .page-contact .page-header,
    .page-access .page-header,
    .page-tourism .page-header {
        padding-top: 1.5rem;
    }

    .page-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .page-intro {
        font-size: 1rem;
    }

    /* アーカイブページのレスポンシブ対応 */
    .archive-header {
        border-radius: 0;
    }

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

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

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

    .phone-reservation {
        padding: 2rem 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;
    }

    .cuisine-slider {
        height: 300px;
    }

    .slider-controls {
        bottom: 0.75rem;
        padding: 0.4rem 0.75rem;
    }

    .slider-prev,
    .slider-next {
        width: 24px;
        height: 24px;
        font-size: 1rem;
    }

    .slider-dot {
        width: 8px;
        height: 8px;
    }

    .slider-dot.active {
        width: 10px;
        height: 10px;
    }

    .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;
    }

    /* アーカイブページのレスポンシブ対応 */

    .archive-page .breadcrumb {
        padding-top: 0.75rem;
        padding-bottom: 0.5rem;
    }

    .archive-header {
        padding: 2rem 1.5rem 1.5rem;
        margin: 0 auto 1.5rem;
        border-radius: 0;
    }

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

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

    .archive-intro {
        padding: 0 1.5rem 1.5rem;
        margin-bottom: 1.5rem;
    }

    .archive-intro-content {
        font-size: 1rem;
    }

    .archive-item {
        padding: 1.5rem;
    }

    .archive-content h2 {
        font-size: 1.2rem;
    }

    .archive-image {
        height: 200px;
    }

    /* 単一投稿ページのレスポンシブ対応 */
    .single-page {
        padding-top: 90px;
    }

    .single-page .breadcrumb {
        padding-top: 0.75rem;
        padding-bottom: 0.5rem;
    }

    .single-rooms {
        padding: 90px 0 1.5rem;
    }

    .single-rooms .breadcrumb {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .single-room {
        padding: 2rem 1.5rem;
        border-radius: 0;
    }

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

    .single-room .room-details {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }

    .single-room .room-amenities {
        padding: 1.5rem;
    }

    .single-room .room-amenities h2 {
        font-size: 1.75rem;
    }

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

    .single-room .room-details {
        padding: 1rem 1.5rem;
        gap: 1rem 1.5rem;
    }

    .single-rooms .other-rooms {
        padding: 1.5rem;
        margin-top: 2rem;
    }

    .single-rooms .other-rooms h2 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .single-rooms .other-rooms-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .single-post {
        padding: 2rem 1.5rem;
        border-radius: 0;
    }

    .entry-header {
        padding: 2rem 1.5rem 1.5rem;
        margin: 0 auto 1.5rem;
        border-radius: 0;
    }

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

    .entry-meta {
        font-size: 0.85rem;
        margin-bottom: 0;
    }

    .entry-content h2 {
        font-size: 1.75rem;
    }

    .entry-content h3 {
        font-size: 1.3rem;
    }

    .related-posts {
        padding: 1.5rem;
    }

    .related-posts h2 {
        font-size: 1.75rem;
    }

    .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;
    }
}
