/* Reset & Base */
:root {
    --color-primary: #c5a47e; /* Gold */
    --color-primary-dark: #a88b68;
    --color-text: #333;
    --color-text-light: #666;
    --color-bg-light: #f9f9f9;
    --color-white: #fff;
    --font-base: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    --font-serif: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", serif;
}

* {
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-base);
    color: var(--color-text);
    line-height: 1.8;
    background-color: var(--color-white);
    overflow-x: hidden;
}

@media (max-width: 768px) {
    body {
        font-size: 16px;
    }
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-family: var(--font-serif);
    font-weight: normal;
    line-height: 1.4;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s;
}

a:hover {
    opacity: 0.7;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

.section-padding {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--color-bg-light);
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.site-header.scrolled .site-title,
.site-header.scrolled .nav-link {
    color: var(--color-text);
}

.site-header.scrolled .hamburger-line {
    background: var(--color-text);
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    z-index: 1001;
}

.site-logo {
    display: inline-block;
    text-decoration: none;
}

.logo-img {
    height: 40px;
    width: auto;
    display: block;
    transition: opacity 0.3s ease;
}

/* デフォルト（トップページのヒーローセクション・暗い背景）: 白文字のロゴを表示 */
.logo-light {
    display: block;
}

.logo-dark-bg {
    display: none;
}

/* スクロール時・通常ページ（白い背景）: 白背景のロゴ（黒文字）を表示 */
.site-header.scrolled .logo-light,
.post-type-archive-property .logo-light,
.archive .logo-light,
.single .logo-light,
.page:not(.home) .logo-light {
    display: none;
}

.site-header.scrolled .logo-dark-bg,
.post-type-archive-property .logo-dark-bg,
.archive .logo-dark-bg,
.single .logo-dark-bg,
.page:not(.home) .logo-dark-bg {
    display: block;
}

.site-title {
    font-size: 1.5rem;
    letter-spacing: 0.15em;
    font-weight: 600;
    color: var(--color-white);
    transition: color 0.3s ease;
}

/* Desktop Navigation */
.main-navigation {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* Language Switcher - Dropdown */
.language-switcher {
    position: relative;
    display: inline-block;
}

.language-switcher select,
.language-switcher .pll-switcher-select {
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    color: var(--color-white);
    background-color: rgba(255, 255, 255, 0.1);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 14px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    padding: 8px 35px 8px 12px;
    appearance: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-base);
    min-width: 120px;
}

.language-switcher select:hover,
.language-switcher .pll-switcher-select:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
}

.language-switcher select:focus,
.language-switcher .pll-switcher-select:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
}

.language-switcher option {
    background: #333;
    color: #fff;
    padding: 10px;
}

.site-header.scrolled .language-switcher select,
.site-header.scrolled .language-switcher .pll-switcher-select,
.post-type-archive-property .language-switcher select,
.post-type-archive-property .language-switcher .pll-switcher-select,
.archive .language-switcher select,
.archive .language-switcher .pll-switcher-select,
.single .language-switcher select,
.single .language-switcher .pll-switcher-select,
.page:not(.home) .language-switcher select,
.page:not(.home) .language-switcher .pll-switcher-select {
    color: var(--color-text);
    background-color: transparent;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 14px;
    border-color: rgba(0, 0, 0, 0.2);
}

.site-header.scrolled .language-switcher select:hover,
.site-header.scrolled .language-switcher .pll-switcher-select:hover,
.post-type-archive-property .language-switcher select:hover,
.post-type-archive-property .language-switcher .pll-switcher-select:hover,
.archive .language-switcher select:hover,
.archive .language-switcher .pll-switcher-select:hover,
.single .language-switcher select:hover,
.single .language-switcher .pll-switcher-select:hover,
.page:not(.home) .language-switcher select:hover,
.page:not(.home) .language-switcher .pll-switcher-select:hover {
    background-color: transparent;
    border-color: rgba(0, 0, 0, 0.3);
}

.site-header.scrolled .language-switcher select:focus,
.site-header.scrolled .language-switcher .pll-switcher-select:focus,
.post-type-archive-property .language-switcher select:focus,
.post-type-archive-property .language-switcher .pll-switcher-select:focus,
.archive .language-switcher select:focus,
.archive .language-switcher .pll-switcher-select:focus,
.single .language-switcher select:focus,
.single .language-switcher .pll-switcher-select:focus,
.page:not(.home) .language-switcher select:focus,
.page:not(.home) .language-switcher .pll-switcher-select:focus {
    background-color: transparent;
    border-color: rgba(0, 0, 0, 0.4);
}

/* Polylang default classes */
.pll-switcher,
.pll-switcher > ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pll-switcher li {
    list-style: none;
    margin: 0;
}

.lang-item,
.lang-item-current {
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 40px;
}

.nav-link {
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    font-weight: 500;
    color: var(--color-white);
    padding: 10px 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width 0.3s ease;
}

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

.nav-link:hover {
    opacity: 1;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    gap: 6px;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-white);
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

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

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation */
.mobile-navigation {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.mobile-navigation.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-menu {
    list-style: none;
    margin: 0;
    padding: 100px 24px 40px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-language-switcher {
    margin-top: 20px;
    padding: 20px 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.mobile-language-switcher select,
.mobile-language-switcher .pll-switcher-select {
    font-size: 1rem;
    color: var(--color-white);
    background-color: rgba(255, 255, 255, 0.1);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    padding: 12px 40px 12px 16px;
    appearance: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-base);
    min-width: 150px;
    min-height: 44px;
    width: 100%;
    max-width: 200px;
}

.mobile-language-switcher select:hover,
.mobile-language-switcher .pll-switcher-select:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
}

.mobile-language-switcher select:focus,
.mobile-language-switcher .pll-switcher-select:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
}

.mobile-language-switcher select,
.mobile-language-switcher .pll-switcher-select {
    pointer-events: auto !important;
    z-index: 10;
    position: relative;
}

.mobile-navigation.active .mobile-language-switcher select,
.mobile-navigation.active .mobile-language-switcher .pll-switcher-select {
    pointer-events: auto !important;
}

.mobile-nav-link {
    font-size: 1.2rem;
    letter-spacing: 0.15em;
    color: var(--color-white);
    display: block;
    padding: 16px 0;
    min-height: 56px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.mobile-nav-link:hover {
    color: var(--color-primary);
    opacity: 1;
    padding-left: 12px;
}

/* Responsive Header */
@media (max-width: 768px) {
    .header-inner {
        padding: 12px 16px;
    }
    
    .header-logo .logo-img {
        max-height: 32px;
        width: auto;
    }
    
    .main-navigation {
        display: none;
    }
    
    .language-switcher {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
        min-width: 44px;
        min-height: 44px;
        padding: 8px;
    }
    
    .mobile-navigation {
        display: block;
    }
    
    .site-title {
        font-size: 1.1rem;
    }
}

/* Archive/Inner pages - dark header by default */
.post-type-archive-property .site-header,
.archive .site-header,
.single .site-header,
.page:not(.home) .site-header {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.post-type-archive-property .site-title,
.post-type-archive-property .nav-link,
.archive .site-title,
.archive .nav-link,
.single .site-title,
.single .nav-link,
.page:not(.home) .site-title,
.page:not(.home) .nav-link {
    color: var(--color-text);
}

.post-type-archive-property .hamburger-line,
.archive .hamburger-line,
.single .hamburger-line,
.page:not(.home) .hamburger-line {
    background: var(--color-text);
}

/* Body padding for fixed header on inner pages */
.post-type-archive-property .site-content,
.archive .site-content,
.single .site-content,
.page:not(.home) .site-content {
    padding-top: 80px;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 80vh;
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

@media (max-width: 768px) {
    .hero-section {
        height: 65vh;
        min-height: 450px;
        max-height: 550px;
    }
}

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

.hero-bg img {
    width: 100%;
    height: 120%; /* パララックス用に高さを少し大きく */
    object-fit: cover;
    will-change: transform;
    transform: translateY(0);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--color-white);
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.hero-title {
    font-size: 4rem;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    letter-spacing: 0.05em;
    margin-bottom: 50px;
}

.hero-cta {
    margin-top: 40px;
}

.btn-hero {
    display: inline-block;
    padding: 18px 50px;
    background-color: var(--color-primary);
    color: var(--color-white);
    border: 2px solid var(--color-primary);
    font-size: 15px;
    letter-spacing: 0.15em;
    font-weight: 500;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(197, 164, 126, 0.4);
}

.btn-hero:hover {
    background-color: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(197, 164, 126, 0.5);
}

/* Section Headers */
.section-header {
    margin-bottom: 50px;
}

.section-subtitle {
    display: block;
    font-family: var(--font-base);
    font-size: 14px;
    letter-spacing: 0.2em;
    color: var(--color-primary);
    margin-bottom: 10px;
    text-transform: uppercase;
}

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

/* Concept Section */
.concept-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

@media (max-width: 768px) {
    .concept-text {
        padding: 0 16px;
        font-size: 0.9rem;
        line-height: 2;
    }
}

/* Strengths Section */
.strengths-section {
    position: relative;
    padding: 140px 0;
    background-color: #fdfcfb; /* 温かみのあるオフホワイト */
}

.strengths-intro {
    margin-bottom: 100px;
}

.strengths-subtitle {
    font-size: 1.2rem;
    line-height: 2;
    color: var(--color-text);
    font-family: var(--font-serif);
    font-weight: normal;
    max-width: 700px;
    margin: 0 auto;
}

.strengths-grid {
    display: flex;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.strength-item {
    flex: 1;
    text-align: center;
    padding: 60px 40px;
    border-right: 1px solid rgba(0,0,0,0.05);
    transition: background-color 0.5s ease;
}

.strength-item:first-child {
    border-left: 1px solid rgba(0,0,0,0.05);
}

.strength-item:hover {
    background-color: #fff;
}

.strength-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    /* 背景色削除 */
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.strength-item:hover .strength-icon {
    transform: translateY(-10px);
}

.strength-icon svg {
    width: 64px; /* 大きく繊細に */
    height: 64px;
    stroke-width: 0.8; /* 極細ライン */
}

.strength-title {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: var(--color-text);
    font-family: var(--font-serif);
    letter-spacing: 0.1em;
}

.strength-description {
    font-size: 0.95rem;
    line-height: 2.2;
    color: var(--color-text-light);
    font-weight: 300;
    font-family: var(--font-base);
}

/* Properties Section */
.properties-section {
    position: relative;
    padding: 140px 0;
    background-color: #f8f9fa; /* より洗練された薄いグレー */
}

.properties-section .container {
    max-width: 1600px; /* より広いコンテナ */
    padding: 0 80px;
}

.properties-section .section-header {
    margin-bottom: 100px;
}

.properties-section .section-subtitle {
    font-size: 11px;
    letter-spacing: 0.4em;
    margin-bottom: 20px;
    color: #999;
}

.properties-section .section-title {
    font-size: 2.8rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: #1a1a1a;
}

/* Property List */
.property-list {
    display: flex;
    flex-direction: column;
    gap: 0; /* ギャップなしで連続的に */
}

/* Property Item Split Layout (Refined) */
.property-item-split {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 0; /* ギャップなしで接するように */
    align-items: stretch;
    background: transparent;
    padding: 0;
    box-shadow: none;
    position: relative;
    border-bottom: none;
    margin-bottom: 120px;
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.property-item-split.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.property-item-split:nth-child(even) {
    grid-template-columns: 1fr 400px;
}

/* テキストエリア */
.property-content {
    padding: 80px 60px;
    background-color: #f4f7f9; /* 薄いブルーグレー */
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    transition: background-color 0.6s ease;
}

.property-item-split:hover .property-content {
    background-color: #f0f3f5;
}

.property-item-split:nth-child(even) .property-content {
    order: 2;
}

.property-item-split:nth-child(even) .property-gallery {
    order: 1;
}

.property-title {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    margin-bottom: 50px;
    color: #2c3e50; /* 濃いネイビー系 */
    text-align: left;
    font-weight: 500;
    letter-spacing: 0.3em; /* 文字間隔を広く */
    line-height: 1.6;
    transition: color 0.4s ease;
}

.property-item-split:hover .property-title {
    color: var(--color-primary);
}

.property-meta {
    display: flex;
    flex-direction: column; /* 縦並びに */
    gap: 15px;
    margin-bottom: 40px;
    font-size: 0.9rem;
    color: #555;
    text-align: left;
    font-family: var(--font-serif);
    letter-spacing: 0.15em;
    transition: color 0.4s ease;
}

.property-item-split:hover .property-meta {
    color: #444;
}

.property-description {
    font-family: var(--font-serif);
    font-size: 1rem;
    line-height: 2.4; /* 行間を広く */
    color: #444;
    margin-bottom: 60px;
    text-align: justify;
    font-weight: 500;
    letter-spacing: 0.15em;
    transition: color 0.4s ease;
}

.property-item-split:hover .property-description {
    color: #333;
}

/* More Link Style Button */
.property-action {
    text-align: right;
    margin-top: auto;
}

.property-action .btn {
    display: inline-block;
    padding: 10px 0;
    font-size: 14px;
    letter-spacing: 0.2em;
    font-family: var(--font-serif);
    color: #2c3e50;
    background: transparent;
    border: none;
    border-bottom: 1px solid #2c3e50;
    border-radius: 0;
    width: auto;
    min-width: 120px;
    text-align: right;
    transition: all 0.3s ease;
}

.property-action .btn::before {
    display: none; /* 前のエフェクトを削除 */
}

.property-action .btn:hover {
    opacity: 0.7;
    padding-right: 15px;
    background: transparent !important;
    border-color: #2c3e50 !important;
    transition: all 0.3s ease;
}

/* Gallery - Removed duplicate, using Property Gallery Slider below */

.slide-item img {
    filter: brightness(0.98); /* わずかに暗めに */
    transition: opacity 0.8s ease, filter 0.8s ease, transform 0.1s ease-out;
    transform: translateY(0) scale(1);
    will-change: transform;
}

.slide-item.active img {
    filter: brightness(1); /* アクティブ時は明るく */
}

/* Slider Navigation - Minimal */
.slider-nav {
    bottom: 40px;
    right: 40px;
    left: auto; /* 右寄せ */
    gap: 20px;
}

.slider-pagination {
    font-family: var(--font-serif);
    letter-spacing: 0.2em;
    font-size: 12px;
    color: rgba(255,255,255,0.9);
}

/* Duplicate removed - using main .slider-btn styles below */


/* Property Gallery Slider */
.property-gallery {
    position: relative;
    height: 500px; /* 画像サイズを小さく */
    overflow: hidden;
    background: #fff;
    border-radius: 0; /* 角丸なしでフラットに */
    box-shadow: none; /* 影をなくしてシンプルに */
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.property-item-split:hover .property-gallery {
    transform: scale(1.02);
}

/* Parallax effect for images */
.slide-item img {
    will-change: transform;
    transform-origin: center center;
}

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

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

.slide-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(20px) scale(0.98);
    pointer-events: none;
    will-change: opacity, transform;
}

.slide-item.active {
    opacity: 1;
    transform: translateX(0) scale(1);
    pointer-events: auto;
    z-index: 2;
}

.slide-item.prev {
    opacity: 0;
    transform: translateX(-20px) scale(0.98);
    z-index: 1;
}

.slide-item.next {
    opacity: 0;
    transform: translateX(20px) scale(0.98);
    z-index: 1;
}

.slide-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    filter: brightness(0.95);
    transition: filter 0.8s ease;
}

.slide-item.active img {
    filter: brightness(1);
}

.slider-nav {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    gap: 20px;
}

.slider-nav-buttons {
    display: flex;
    gap: 10px;
}

.slider-pagination {
    color: var(--color-white);
    font-size: 13px;
    letter-spacing: 0.2em;
    font-weight: 300;
    text-shadow: 0 2px 8px rgba(0,0,0,0.8), 0 0 4px rgba(0,0,0,0.5);
    font-family: var(--font-base);
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(8px);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.2);
}

.slider-btn {
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--color-white);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.slider-btn:hover {
    background: rgba(0,0,0,0.7);
    border-color: rgba(255,255,255,0.5);
    transform: scale(1.05);
}

.slider-btn:active {
    opacity: 0.8;
}

.slider-btn svg {
    width: 18px;
    height: 18px;
    stroke-width: 1.5;
}

.slider-btn.slider-prev svg {
    transform: rotate(180deg);
}

.slider-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

/* タッチ操作の最適化 */
.property-slider {
    touch-action: pan-y pinch-zoom;
    -webkit-touch-callout: none;
    user-select: none;
    -webkit-user-select: none;
}

.meta-area i, .meta-capacity i {
    color: var(--color-primary);
    opacity: 0.8;
}

.btn {
    display: inline-block;
    padding: 18px 40px;
    border: 1px solid transparent;
    transition: all 0.3s;
    font-size: 20px;
    letter-spacing: 0.1em;
    cursor: pointer;
}

@media (max-width: 768px) {
    .btn {
        min-height: 44px;
        padding: 12px 24px;
        font-size: 0.875rem;
    }
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-text);
}

.btn-outline:hover {
    background-color: var(--color-text);
    color: var(--color-white);
}

.view-more-container {
    margin-top: 100px;
    padding-top: 60px;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.view-more-container .btn-outline {
    padding: 16px 50px;
    font-size: 13px;
    letter-spacing: 0.15em;
    font-weight: 500;
    border-radius: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.view-more-container .btn-outline:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Brand PR Section */
.brand-pr-section {
    position: relative;
    padding: 100px 20px;
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-pr-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.brand-pr-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.brand-pr-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.brand-pr-content h2 {
    font-size: 3rem;
    margin-bottom: 30px;
}

/* Related Hotels Section (Accordion) */
.related-hotels-section {
    display: flex;
    width: 100%;
    height: 500px; /* 高さを確保 */
    overflow: hidden;
    background-color: #111;
}

.hotel-panel {
    position: relative;
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px 20px;
    text-decoration: none;
    color: #fff;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: flex-grow 0.8s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease, background-size 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    border-left: 1px solid rgba(255,255,255,0.1);
    filter: grayscale(50%);
    will-change: flex-grow;
}

.hotel-panel:hover {
    background-size: cover;
}

.hotel-panel:first-child {
    border-left: none;
}

/* Overlay */
.panel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5); /* 暗めのオーバーレイ */
    transition: background 0.6s ease;
    z-index: 1;
}

/* Content styling */
.panel-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    opacity: 0.8;
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
}

.hotel-panel:hover .panel-content {
    transform: translateY(-5px); /* ホバー時に少し上に */
}

.panel-title {
    font-family: var(--font-base);
    font-size: 1.1rem;
    font-weight: bold;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 0;
    line-height: 1.4;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hotel-panel:hover .panel-title {
    transform: translateY(-3px); /* ホバー時にタイトルも少し上に */
}

.panel-title .jp-name {
    display: block;
    font-size: 0.8rem;
    font-weight: normal;
    opacity: 0.8;
    margin-top: 5px;
    font-family: var(--font-serif);
}

.panel-category {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    opacity: 0.7;
    align-self: flex-start;
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hotel-panel:hover .panel-category {
    opacity: 1;
    transform: rotate(180deg) translateX(-5px); /* ホバー時に少し左に */
}

/* Hover Effects */
.hotel-panel:hover {
    flex-grow: 2.5; /* ホバー時に広がる */
    filter: grayscale(0%);
}

.hotel-panel:hover .panel-overlay {
    background: rgba(0,0,0,0.2);
}

.hotel-panel:hover .panel-content {
    opacity: 1;
}

/* Footer */
.site-footer {
    background: linear-gradient(180deg, #1a1a1a 0%, #111 100%);
    color: #888;
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
}

.footer-inner {
    padding: 0;
}

/* Footer Main */
.footer-main {
    padding: 80px 0 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
}

.footer-col {
    min-width: 0;
}

/* Footer Branding */
.footer-branding-col {
    padding-right: 40px;
}

.footer-logo {
    margin-bottom: 12px;
    text-align: center;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    display: block;
    margin: 0 auto;
}

.footer-tagline {
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    color: var(--color-primary);
    margin-bottom: 25px;
    font-family: var(--font-serif);
    text-align: center;
}

.footer-description {
    font-size: 0.9rem;
    line-height: 2;
    color: #666;
    letter-spacing: 0.05em;
}

/* Footer Headings */
.footer-heading {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: var(--color-primary);
    margin-bottom: 25px;
    font-weight: 500;
    text-transform: uppercase;
}

/* Footer Menu */
.footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-menu li {
    margin-bottom: 15px;
}

.footer-menu li:last-child {
    margin-bottom: 0;
}

.footer-menu li a {
    font-size: 0.9rem;
    color: #888;
    letter-spacing: 0.03em;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-menu li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-primary);
    transition: width 0.3s ease;
}

.footer-menu li a:hover {
    color: #fff;
    opacity: 1;
}

.footer-menu li a:hover::after {
    width: 100%;
}

.external-icon {
    font-size: 0.75rem;
    margin-left: 5px;
    opacity: 0.6;
}

/* Footer Company Info */
.footer-company-info {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(136, 136, 136, 0.3);
}

.company-label {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.footer-company-info .company-name {
    font-size: 0.75rem;
    color: #888;
    letter-spacing: 0.03em;
    font-weight: 400;
    border-bottom: 1px solid rgba(136, 136, 136, 0.3);
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 25px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    font-size: 0.75rem;
    color: #555;
    letter-spacing: 0.1em;
}

/* Back to Top */
.back-to-top {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #666;
    transition: all 0.3s ease;
}

.back-to-top:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    opacity: 1;
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 50px 40px;
    }
    
    .footer-branding-col {
        grid-column: span 2;
        padding-right: 0;
        text-align: center;
    }
    
    .footer-description {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .footer-main {
        padding: 50px 0 40px;
    }
    
    .footer-main .container {
        padding: 0 16px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .footer-branding-col {
        grid-column: span 1;
    }
    
    .footer-logo-img {
        max-width: 180px;
        height: auto;
    }
    
    .footer-tagline {
        font-size: 0.875rem;
        line-height: 1.8;
        margin-top: 16px;
    }
    
    .footer-heading {
        margin-bottom: 16px;
        font-size: 0.95rem;
    }
    
    .footer-menu {
        font-size: 0.875rem;
    }
    
    .footer-menu li {
        margin-bottom: 10px;
    }
    
    .footer-menu li a {
        padding: 8px 0;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .footer-menu li a::after {
        display: none;
    }
    
    .footer-company-info {
        margin-top: 24px;
        padding-top: 20px;
        font-size: 0.8rem;
    }
    
    .footer-company-info .company-name {
        font-size: 0.75rem;
        margin-bottom: 12px;
    }
    
    .footer-bottom {
        padding: 20px 0;
    }
    
    .footer-bottom-inner {
        flex-direction: column;
        gap: 16px;
        padding: 0 16px;
    }
    
    .footer-copyright {
        font-size: 0.75rem;
    }
    
    .back-to-top {
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
    }
}

/* ========================================
   Page Template Styles
   ======================================== */
.page-main {
    min-height: 60vh;
}

.page-header {
    padding: 60px 0 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
}

.page-title {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: #1a1a1a;
}

.page-description {
    font-size: 1rem;
    color: #666;
    margin-top: 20px;
    letter-spacing: 0.05em;
}

.page-content {
    padding: 60px 0 100px;
}

.page-content-inner {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 2;
    color: #444;
}

.page-content-inner h2 {
    font-size: 1.5rem;
    margin: 50px 0 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    color: #1a1a1a;
}

.page-content-inner h3 {
    font-size: 1.2rem;
    margin: 40px 0 20px;
    color: #333;
}

.page-content-inner p {
    margin-bottom: 1.5em;
}

.page-content-inner ul,
.page-content-inner ol {
    margin: 1.5em 0;
    padding-left: 1.5em;
}

.page-content-inner li {
    margin-bottom: 0.5em;
}

.page-content-inner table {
    width: 100%;
    border-collapse: collapse;
    margin: 2em 0;
}

.page-content-inner th,
.page-content-inner td {
    padding: 15px;
    border: 1px solid #ddd;
    text-align: left;
}

.page-content-inner th {
    background: #f8f9fa;
    font-weight: 500;
    white-space: nowrap;
    width: 30%;
}

/* ========================================
   Contact Page Styles
   ======================================== */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-form-section {
    background: #fff;
    padding: 50px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 30px;
}

.form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 10px;
    color: #333;
    letter-spacing: 0.05em;
}

.form-label .required {
    color: #e74c3c;
    margin-left: 5px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 15px 18px;
    border: 1px solid #ddd;
    background: #fff;
    font-size: 1rem;
    font-family: var(--font-base);
    color: #333;
    transition: all 0.3s ease;
    border-radius: 0;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(197, 164, 126, 0.1);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 45px;
    cursor: pointer;
}

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

.form-privacy {
    margin-top: 40px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    color: #666;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.checkbox-label a {
    color: var(--color-primary);
    text-decoration: underline;
}

.form-submit {
    margin-top: 40px;
    text-align: center;
}

.btn-large {
    padding: 18px 60px;
    font-size: 1rem;
}

/* Contact Info Section */
.contact-info-section {
    align-self: start;
}

.contact-info-box {
    background: #fff;
    padding: 40px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.contact-info-box h3 {
    font-size: 1rem;
    letter-spacing: 0.1em;
    color: #999;
    margin-bottom: 15px;
    font-weight: 500;
}

.company-name {
    font-size: 1.2rem;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(136, 136, 136, 0.3);
    border-bottom: 1px solid #eee;
}

.contact-details {
    margin: 0;
}

.contact-details dt {
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 5px;
    letter-spacing: 0.05em;
}

.contact-details dd {
    margin: 0 0 25px 0;
    font-size: 0.95rem;
    color: #333;
    line-height: 1.8;
}

.contact-details dd:last-child {
    margin-bottom: 0;
}

.contact-details a {
    color: var(--color-primary);
}

/* Contact Form 7 Styles */
.wpcf7 {
    width: 100%;
}

.wpcf7-form {
    width: 100%;
}

.contact-form-group {
    margin-bottom: 35px;
}

.contact-form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 12px;
    color: #333;
    letter-spacing: 0.05em;
}

.contact-form-group .required {
    color: #e74c3c;
    margin-left: 5px;
    font-weight: 600;
}

.contact-form-group .optional {
    color: #999;
    margin-left: 5px;
    font-weight: 400;
    font-size: 0.9em;
}

/* 題名フィールドを非表示 */
.wpcf7-form-control-wrap:has(input[name*="subject"]),
.wpcf7-form-control-wrap:has(input[name*="題名"]),
.wpcf7-form-control-wrap:has(input[name*="title"]),
.wpcf7-form-control-wrap:has(input[name*="件名"]),
.wpcf7-form p:has(input[name*="subject"]),
.wpcf7-form p:has(input[name*="題名"]),
.wpcf7-form p:has(input[name*="title"]),
.wpcf7-form p:has(input[name*="件名"]),
.wpcf7-form div:has(input[name*="subject"]),
.wpcf7-form div:has(input[name*="題名"]),
.wpcf7-form div:has(input[name*="title"]),
.wpcf7-form div:has(input[name*="件名"]),
.wpcf7-form label[for*="subject"],
.wpcf7-form label[for*="題名"],
.wpcf7-form label[for*="title"],
.wpcf7-form label[for*="件名"] {
    display: none !important;
}

/* :has()がサポートされていない場合のフォールバック */
.wpcf7-form input[name*="subject"],
.wpcf7-form input[name*="題名"],
.wpcf7-form input[name*="title"],
.wpcf7-form input[name*="件名"] {
    display: none !important;
}

.wpcf7-form-control-wrap {
    display: block;
    width: 100%;
    position: relative;
}

.wpcf7-text,
.wpcf7-email,
.wpcf7-textarea,
.wpcf7-select {
    width: 100%;
    padding: 16px 0;
    border: none;
    border-bottom: 2px solid #e8e8e8;
    background: transparent;
    font-size: 1rem;
    font-family: var(--font-base);
    color: #333;
    transition: all 0.3s ease;
    border-radius: 0;
    box-sizing: border-box;
    line-height: 1.6;
}

.wpcf7-text:focus,
.wpcf7-email:focus,
.wpcf7-textarea:focus,
.wpcf7-select:focus {
    outline: none;
    border-bottom-color: var(--color-primary);
    border-bottom-width: 2px;
    background-color: rgba(197, 164, 126, 0.02);
}

.wpcf7-text::placeholder,
.wpcf7-email::placeholder,
.wpcf7-textarea::placeholder {
    color: #999;
    opacity: 1;
}

.wpcf7-textarea {
    resize: vertical;
    min-height: 180px;
    padding-top: 16px;
    line-height: 1.8;
}

.wpcf7-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
    padding-right: 30px;
    cursor: pointer;
}

.wpcf7-select:focus {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23c5a47e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
}

.contact-form-submit {
    margin-top: 50px;
    text-align: center;
}

.wpcf7-submit {
    display: inline-block;
    padding: 18px 60px;
    background: var(--color-primary);
    color: #fff;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-base);
    border-radius: 0;
    position: relative;
    overflow: hidden;
}

.wpcf7-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.wpcf7-submit:hover {
    background: #b8956d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(197, 164, 126, 0.4);
}

.wpcf7-submit:hover::before {
    left: 100%;
}

.wpcf7-submit:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(197, 164, 126, 0.3);
}

/* CF7 Validation */
.wpcf7-not-valid {
    border-bottom-color: #e74c3c !important;
    border-bottom-width: 2px !important;
}

.wpcf7-not-valid-tip {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 8px;
    display: block;
    font-weight: 400;
}

.wpcf7-response-output {
    margin: 25px 0 0;
    padding: 18px 24px;
    border: none !important;
    font-size: 0.95rem;
    border-radius: 4px;
    line-height: 1.6;
}

.wpcf7-mail-sent-ok {
    background: #d4edda;
    color: #155724;
    border-left: 4px solid #28a745 !important;
}

.wpcf7-mail-sent-ng,
.wpcf7-aborted,
.wpcf7-spam-blocked {
    background: #f8d7da;
    color: #721c24;
    border-left: 4px solid #dc3545 !important;
}

.wpcf7-validation-errors {
    background: #fff3cd;
    color: #856404;
    border-left: 4px solid #ffc107 !important;
}

.wpcf7 form.sent .wpcf7-response-output {
    background: #d4edda;
    color: #155724;
    border-left: 4px solid #28a745 !important;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
    background: #fff3cd;
    color: #856404;
    border-left: 4px solid #ffc107 !important;
}

.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
    background: #f8d7da;
    color: #721c24;
    border-left: 4px solid #dc3545 !important;
}

.wpcf7-spinner {
    margin-left: 15px;
    border-color: rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
}

.no-form-message {
    text-align: center;
    padding: 60px 20px;
    color: #666;
    font-size: 1rem;
}

/* Contact Page Responsive */
@media (max-width: 900px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .contact-form-section {
        padding: 24px 20px;
    }
    
    .contact-info-box {
        padding: 24px 20px;
    }
    
    .contact-form-group {
        margin-bottom: 24px;
    }
    
    .wpcf7-submit {
        padding: 14px 40px;
        font-size: 0.875rem;
        min-height: 44px;
    }
}

@media (max-width: 768px) {
    .contact-wrapper {
        padding: 0 16px;
    }
    
    .contact-form-section {
        padding: 24px 20px;
    }
    
    .contact-info-box {
        padding: 24px 20px;
    }
    
    .contact-form-group {
        margin-bottom: 24px;
    }
    
    .contact-form-group label {
        font-size: 0.875rem;
        margin-bottom: 8px;
    }
    
    .wpcf7 input[type="text"],
    .wpcf7 input[type="email"],
    .wpcf7 textarea,
    .wpcf7 select {
        font-size: 16px;
        padding: 14px 16px;
        min-height: 44px;
    }
    
    .wpcf7 textarea {
        min-height: 120px;
    }
    
    .wpcf7-submit {
        padding: 14px 40px;
        font-size: 0.875rem;
        min-height: 44px;
        width: 100%;
    }
    
    .contact-details {
        font-size: 0.875rem;
    }
    
    .contact-details dt {
        font-size: 0.8rem;
        margin-bottom: 8px;
    }
    
    .contact-details dd {
        font-size: 0.875rem;
        line-height: 1.8;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 80px 0 32px;
    }
    
    .page-title {
        font-size: 1.5rem;
        padding: 0 16px;
        line-height: 1.4;
    }
    
    .page-description {
        font-size: 0.875rem;
        margin-top: 16px;
        padding: 0 16px;
        line-height: 1.8;
    }
    
    .page-content {
        padding: 32px 0 50px;
    }
    
    .page-content-inner {
        font-size: 0.9rem;
        line-height: 1.9;
        padding: 0 16px;
    }
}

/* ========================================
   Company Page Styles
   ======================================== */
.company-section {
    background: #fff;
}

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

.company-section-title {
    font-size: 1.3rem;
    letter-spacing: 0.15em;
    color: var(--color-primary);
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    font-weight: 500;
}

.company-table {
    width: 100%;
    border-collapse: collapse;
}

.company-table tr {
    border-bottom: 1px solid #eee;
}

.company-table tr:last-child {
    border-bottom: none;
}

.company-table th,
.company-table td {
    padding: 30px 20px;
    text-align: left;
    vertical-align: top;
}

.company-table th {
    width: 200px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;
    letter-spacing: 0.05em;
    background: #fafafa;
}

.company-table td {
    font-size: 1rem;
    color: #444;
    line-height: 1.8;
}

.business-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.business-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
}

.business-list li:last-child {
    margin-bottom: 0;
}

.business-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--color-primary);
    border-radius: 50%;
}

/* Company Info Section */
.company-info-section {
    background: #fff;
}

/* Company Page Responsive */
@media (max-width: 768px) {
    .company-content {
        padding: 0 16px;
    }
    
    .company-section {
        padding: 40px 0;
    }
    
    .company-section-title {
        font-size: 1.1rem;
        margin-bottom: 28px;
        padding-bottom: 16px;
    }
    
    .company-table th,
    .company-table td {
        display: block;
        width: 100%;
        padding: 16px;
        font-size: 0.875rem;
    }
    
    .company-table th {
        padding-bottom: 8px;
        background: transparent;
        border-bottom: none;
        font-size: 0.8rem;
        font-weight: 600;
    }
    
    .company-table td {
        padding-top: 0;
        padding-bottom: 20px;
        line-height: 1.8;
    }
    
    .company-table tr {
        display: block;
        padding: 12px 0;
        border-bottom: 1px solid #eee;
    }
    
    .company-table tr:last-child {
        border-bottom: none;
    }
    
    .business-list {
        margin-top: 8px;
    }
    
    .business-list li {
        font-size: 0.875rem;
        padding-left: 18px;
        margin-bottom: 8px;
        line-height: 1.8;
    }
}

/* ========================================
   Vision / Philosophy / Mission / Values
   ======================================== */

/* Common Styles */
.company-vision-section,
.company-philosophy-section,
.company-mission-section {
    text-align: center;
}

.vision-header,
.philosophy-header,
.mission-header,
.values-header {
    margin-bottom: 40px;
}

.vision-label,
.philosophy-label,
.mission-label,
.values-label {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    color: var(--color-primary);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.vision-title,
.philosophy-title,
.mission-title,
.values-title {
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    color: #1a1a1a;
}

.vision-catchphrase,
.philosophy-catchphrase,
.mission-catchphrase {
    font-size: 1.5rem;
    font-family: var(--font-serif);
    color: #333;
    margin-bottom: 40px;
    line-height: 1.8;
    letter-spacing: 0.1em;
}

.vision-text,
.philosophy-text,
.mission-text {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 2.2;
    color: #555;
}

.vision-text p,
.philosophy-text p,
.mission-text p {
    margin-bottom: 1.5em;
}

.vision-text p:last-child,
.philosophy-text p:last-child,
.mission-text p:last-child {
    margin-bottom: 0;
}

/* Mission List */
.mission-list {
    list-style: none;
    margin: 0 auto 40px;
    padding: 0;
    max-width: 500px;
}

.mission-list li {
    position: relative;
    padding: 15px 0 15px 30px;
    font-size: 1.05rem;
    color: #444;
    border-bottom: 1px solid #eee;
    text-align: left;
}

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

.mission-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 50%;
}

/* Values Section */
.company-values-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: #fff;
}

.company-values-section .values-title {
    color: #fff;
}

.values-header {
    text-align: center;
    margin-bottom: 60px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.value-item {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s ease;
}

.value-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--color-primary);
    transform: translateY(-5px);
}

.value-number {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    color: var(--color-primary);
    margin-bottom: 20px;
    font-family: var(--font-serif);
}

.value-name {
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: #fff;
    margin-bottom: 15px;
}

.value-description {
    font-size: 0.9rem;
    color: #888;
    line-height: 1.8;
}

/* ========================================
   Legal Pages (Privacy Policy, Tokushoho)
   ======================================== */
.legal-page .page-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
}

.legal-content {
    background: #fff;
    padding: 80px 0 100px;
}

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

.legal-intro {
    font-size: 1rem;
    line-height: 2;
    color: #444;
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid #eee;
}

.legal-section {
    margin-bottom: 50px;
}

.legal-section h2 {
    font-size: 1.2rem;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 20px;
    padding-left: 15px;
    border-left: 3px solid var(--color-primary);
}

.legal-section p {
    font-size: 0.95rem;
    line-height: 2;
    color: #555;
    margin-bottom: 15px;
}

.legal-section ul {
    list-style: none;
    margin: 20px 0;
    padding: 0;
}

.legal-section ul li {
    position: relative;
    padding: 10px 0 10px 25px;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.8;
    border-bottom: 1px solid #f5f5f5;
}

.legal-section ul li:last-child {
    border-bottom: none;
}

.legal-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 18px;
    width: 6px;
    height: 6px;
    background: var(--color-primary);
    border-radius: 50%;
}

.legal-section .contact-box {
    background: #f8f9fa;
    padding: 30px;
    margin-top: 20px;
}

.legal-section .contact-box p {
    margin-bottom: 8px;
}

.legal-section .contact-box p:last-child {
    margin-bottom: 0;
}

.legal-section .contact-box a {
    color: var(--color-primary);
}

.legal-footer {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #eee;
    text-align: right;
}

.legal-footer p {
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 5px;
}

/* Legal Pages Responsive */
@media (max-width: 768px) {
    .legal-content {
        padding: 32px 0 50px;
    }
    
    .legal-content .container {
        padding: 0 16px;
    }
    
    .legal-intro {
        font-size: 0.875rem;
        margin-bottom: 32px;
        padding-bottom: 24px;
        line-height: 1.9;
    }
    
    .legal-section {
        margin-bottom: 32px;
    }
    
    .legal-section h2 {
        font-size: 1rem;
        margin-bottom: 12px;
        line-height: 1.5;
    }
    
    .legal-section p {
        font-size: 0.875rem;
        line-height: 1.9;
        margin-bottom: 16px;
    }
    
    .legal-section ul,
    .legal-section ol {
        font-size: 0.875rem;
        line-height: 1.9;
        padding-left: 20px;
        margin-bottom: 16px;
    }
    
    .legal-section li {
        margin-bottom: 8px;
    }
    
    .legal-section .contact-box {
        padding: 20px;
        font-size: 0.875rem;
    }
    
    .legal-section a {
        font-size: 0.875rem;
        word-break: break-all;
    }
}

/* Vision/Philosophy/Mission/Values Responsive */
@media (max-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .company-vision-section,
    .company-philosophy-section,
    .company-mission-section,
    .company-values-section {
        padding: 40px 0;
    }
    
    .vision-header,
    .philosophy-header,
    .mission-header,
    .values-header {
        margin-bottom: 32px;
        padding: 0 16px;
    }
    
    .vision-label,
    .philosophy-label,
    .mission-label,
    .values-label {
        font-size: 0.7rem;
        margin-bottom: 8px;
    }
    
    .vision-catchphrase,
    .philosophy-catchphrase,
    .mission-catchphrase {
        font-size: 1.1rem;
        line-height: 1.7;
        margin-bottom: 28px;
        padding: 0 16px;
    }
    
    .vision-title,
    .philosophy-title,
    .mission-title,
    .values-title {
        font-size: 1.3rem;
        line-height: 1.4;
    }
    
    .vision-text,
    .philosophy-text,
    .mission-text {
        font-size: 0.875rem;
        line-height: 2;
        padding: 0 16px;
    }
    
    .vision-text br,
    .philosophy-text br,
    .mission-text br {
        display: none;
    }
    
    .mission-list {
        margin: 0 auto 32px;
        padding: 0 16px;
        max-width: 100%;
    }
    
    .mission-list li {
        font-size: 0.875rem;
        padding: 12px 0 12px 24px;
        line-height: 1.8;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0 16px;
    }
    
    .value-item {
        padding: 24px 20px;
    }
    
    .value-number {
        font-size: 0.75rem;
        margin-bottom: 16px;
    }
    
    .value-name {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    
    .value-description {
        font-size: 0.85rem;
        line-height: 1.8;
    }
    
    .values-header {
        margin-bottom: 32px;
    }
}

/* Animation Classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 16px;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 32px;
        padding: 0 20px;
    }
    
    .btn-hero {
        padding: 14px 36px;
        font-size: 0.875rem;
        min-height: 44px;
    }
    
    .hero-content {
        padding: 0 20px;
    }
    .section-title {
        font-size: 1.75rem;
        padding: 0 16px;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .brand-pr-section {
        padding: 60px 0;
    }
    
    .brand-pr-content {
        padding: 0 16px;
    }
    
    .brand-pr-content h2 {
        font-size: 1.75rem;
        line-height: 1.4;
        margin-bottom: 20px;
    }
    
    .brand-pr-content p {
        font-size: 0.875rem;
        line-height: 2;
    }
    
    .related-hotels-section {
        flex-direction: column;
        height: auto;
        margin: 0;
    }
    
    .hotel-panel {
        height: 280px;
        min-height: 280px;
        border-left: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        filter: grayscale(0%);
        flex: 0 0 auto;
        padding: 32px 20px;
    }
    
    .hotel-panel:last-child {
        border-bottom: none;
    }
    
    .panel-category {
        writing-mode: horizontal-tb;
        transform: none;
        align-self: flex-end;
        font-size: 0.8rem;
        padding: 10px 16px;
    }
    
    .panel-title {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .panel-title .jp-name {
        font-size: 0.9rem;
        margin-top: 6px;
    }
    
    .panel-description {
        font-size: 0.85rem;
        line-height: 1.7;
    }
    
    /* Property Split Responsive */
    .properties-section {
        padding: 60px 0;
    }
    
    .properties-section .container {
        padding: 0 16px;
    }
    
    .properties-section .section-title {
        font-size: 1.75rem;
        margin-bottom: 40px;
    }
    
    .property-item-split {
        grid-template-columns: 1fr !important;
        gap: 0;
        margin-bottom: 60px;
    }
    
    .property-content {
        padding: 32px 20px;
        order: 2 !important;
    }
    
    .property-item-split:nth-child(even) .property-content {
        order: 2 !important;
    }
    
    .property-gallery {
        order: 1 !important;
        height: 280px;
        min-height: 280px;
    }
    
    .property-item-split:nth-child(even) .property-gallery {
        order: 1 !important;
    }
    
    .property-title {
        font-size: 1.35rem;
        margin-bottom: 20px;
        letter-spacing: 0.15em;
        line-height: 1.4;
    }
    
    .property-meta {
        margin-bottom: 20px;
        font-size: 0.875rem;
    }
    
    .property-meta .meta-area,
    .property-meta .meta-capacity {
        font-size: 0.875rem;
        padding: 6px 12px;
    }
    
    .property-description {
        font-size: 0.9rem;
        line-height: 2;
        margin-bottom: 28px;
    }
    
    .property-action {
        align-self: flex-end;
        text-align: right !important;
    }
    
    .property-action .btn {
        padding: 12px 28px;
        font-size: 0.875rem;
        min-height: 44px;
    }
    
    .slider-nav {
        right: 12px;
        bottom: 12px;
        left: auto;
        padding: 0;
        gap: 12px;
    }
    
    .slider-nav-buttons .slider-btn {
        width: 36px;
        height: 36px;
        min-width: 36px;
        min-height: 36px;
        background: rgba(0,0,0,0.5);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(255,255,255,0.3);
    }
    
    .slider-pagination {
        font-size: 0.75rem;
        padding: 6px 12px;
        background: rgba(0,0,0,0.4);
        backdrop-filter: blur(8px);
        border: 1px solid rgba(255,255,255,0.2);
        border-radius: 16px;
    }
    
    .view-more-container {
        margin-top: 40px;
        padding-top: 32px;
        text-align: right !important;
    }
    
    .view-more-container.text-center {
        text-align: right !important;
    }
    
    .view-more-container .btn {
        padding: 14px 32px;
        font-size: 0.875rem;
        min-height: 44px;
    }
    
    /* Strengths Section Responsive */
    .strengths-section {
        padding: 60px 0;
    }
    
    .strengths-intro {
        margin-bottom: 50px;
        padding: 0 16px;
    }
    
    .strengths-subtitle {
        font-size: 1rem;
        line-height: 1.8;
    }
    
    .strengths-grid {
        flex-direction: column;
        border: none;
        margin: 0 16px;
    }
    
    .strength-item {
        padding: 32px 20px;
        border-right: none;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    
    .strength-item:first-child {
        border-left: none;
        border-top: 1px solid rgba(0,0,0,0.05);
    }
    
    .strength-icon {
        margin-bottom: 20px;
    }
    
    .strength-icon svg {
        width: 48px;
        height: 48px;
    }
    
    .strength-title {
        font-size: 1.1rem;
        margin-bottom: 16px;
    }
    
    .strength-description {
        font-size: 0.875rem;
        line-height: 2;
    }
    
    /* Archive Filters Responsive */
    .archive-header {
        padding: 100px 0 50px;
    }
    
    .archive-header .section-title {
        font-size: 1.75rem;
        padding: 0 16px;
    }
    
    .archive-filters-section {
        position: relative;
        padding: 24px 0;
    }
    
    .archive-filters-form {
        padding: 0 16px;
    }
    
    .filters-row {
        flex-direction: column;
        gap: 16px;
    }
    
    .filter-group {
        width: 100%;
        min-width: 100%;
    }
    
    .filter-label {
        font-size: 0.8rem;
        margin-bottom: 6px;
    }
    
    .filter-group.filter-search {
        min-width: 100%;
    }
    
    .filter-input,
    .filter-select {
        font-size: 16px;
        padding: 14px 16px;
        min-height: 44px;
    }
    
    .filter-group.filter-actions {
        width: 100%;
        justify-content: stretch;
        gap: 12px;
    }
    
    .filter-submit,
    .filter-reset {
        flex: 1;
        padding: 14px 24px;
        font-size: 0.875rem;
        min-height: 44px;
    }
    
    .archive-results-count {
        padding: 0 16px 20px;
    }
    
    .archive-results-count .archive-description {
        font-size: 0.875rem;
    }
    
    .archive-pagination {
        margin-top: 60px;
        padding: 0 16px;
    }
    
    .archive-pagination .page-numbers {
        gap: 6px;
    }
    
    .archive-pagination .page-numbers a,
    .archive-pagination .page-numbers span {
        min-width: 44px;
        height: 44px;
        padding: 0 12px;
        font-size: 0.875rem;
    }
    
    .property-list {
        padding: 0 16px;
    }
}

/* Archive Property Page */
.archive-property-main {
    min-height: 100vh;
}

.archive-header {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f4f7f9 0%, #ffffff 100%);
}

.archive-header .section-title {
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: #1a1a1a;
    margin-top: 20px;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 80px 0 40px;
    padding: 0;
    list-style: none;
}

.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    height: 48px;
    padding: 0 16px;
    border: 1px solid rgba(0,0,0,0.1);
    background: #fff;
    color: var(--color-text);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

.pagination .page-numbers.prev,
.pagination .page-numbers.next {
    font-weight: 500;
}

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

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

.no-properties {
    padding: 100px 20px;
    text-align: center;
}

@media (max-width: 768px) {
    .no-properties {
        padding: 60px 16px;
    }
    
    .no-properties p {
        font-size: 1rem;
        line-height: 1.8;
        padding: 0 16px;
    }
}

.no-properties p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
}

.no-properties-content {
    max-width: 500px;
    margin: 0 auto;
}

/* Archive Filters Section */
.archive-filters-section {
    background: #fff;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    padding: 40px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.archive-filters-form {
    width: 100%;
}

.filters-row {
    display: flex;
    align-items: flex-end;
    gap: 20px;
    flex-wrap: wrap;
}

.filter-group {
    flex: 1;
    min-width: 150px;
}

.filter-group.filter-search {
    flex: 2;
    min-width: 200px;
}

.filter-group.filter-actions {
    flex: 0 0 auto;
    display: flex;
    gap: 10px;
    min-width: auto;
}

.filter-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: #666;
    margin-bottom: 8px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.filter-input,
.filter-select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(0,0,0,0.1);
    background: #fff;
    color: #333;
    font-size: 14px;
    font-family: var(--font-base);
    border-radius: 0;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.filter-select {
    cursor: pointer;
}

.filter-input:focus,
.filter-select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(197, 164, 126, 0.1);
}

.filter-input::placeholder {
    color: #999;
}

.filter-submit,
.filter-reset {
    padding: 12px 30px;
    font-size: 14px;
    white-space: nowrap;
}

.filter-reset {
    background: transparent;
    border: 1px solid rgba(0,0,0,0.2);
    color: #666;
}

.filter-reset:hover {
    background: rgba(0,0,0,0.05);
    border-color: rgba(0,0,0,0.3);
}

.archive-description {
    font-size: 1rem;
    color: #666;
    margin-top: 15px;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.archive-results-count {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.archive-results-count .archive-description {
    margin-top: 0;
    text-align: left;
    font-size: 0.95rem;
}

/* Archive Pagination */
.archive-pagination {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.archive-pagination .page-numbers {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 8px;
    flex-wrap: wrap;
}

.archive-pagination .page-numbers li {
    margin: 0;
    padding: 0;
}

.archive-pagination .page-numbers a,
.archive-pagination .page-numbers span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 16px;
    border: 1px solid rgba(0,0,0,0.1);
    background: #fff;
    color: var(--color-text);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: var(--font-base);
}

.archive-pagination .page-numbers a:hover {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

.archive-pagination .page-numbers .current {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
    font-weight: 500;
}

.archive-pagination .page-numbers .dots {
    border: none;
    background: transparent;
    cursor: default;
    min-width: auto;
    padding: 0 8px;
}

.archive-pagination .page-numbers .dots:hover {
    background: transparent;
    color: var(--color-text);
}

.archive-pagination .page-numbers .prev,
.archive-pagination .page-numbers .next {
    font-weight: 500;
    letter-spacing: 0.05em;
}

/* ========================================
   Thank You Page Styles
   ======================================== */
.thanks-page .thanks-content {
    max-width: 800px;
    margin: 0 auto;
}

.thanks-message {
    margin-bottom: 60px;
    padding: 40px 0;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(197, 164, 126, 0.1);
    border-radius: 50%;
}

.thanks-title {
    font-size: 2rem;
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 30px;
    letter-spacing: 0.1em;
}

.thanks-description {
    font-size: 1rem;
    line-height: 2;
    color: #555;
    margin-bottom: 0;
}

.thanks-info {
    margin: 60px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.thanks-info .info-box {
    background: #fff;
    padding: 30px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.thanks-info .info-box h3 {
    font-size: 1.1rem;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    letter-spacing: 0.05em;
}

.thanks-info .info-box p {
    font-size: 0.95rem;
    line-height: 2;
    color: #666;
    margin: 0;
}

.thanks-info .contact-details {
    margin: 0;
}

.thanks-info .contact-details dt {
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 5px;
    letter-spacing: 0.05em;
}

.thanks-info .contact-details dd {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.8;
    margin: 0 0 20px 0;
}

.thanks-info .contact-details dd:last-child {
    margin-bottom: 0;
}

.thanks-info .contact-details a {
    color: var(--color-primary);
}

.thanks-actions {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(0,0,0,0.08);
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.thanks-actions .btn {
    min-width: 200px;
    padding: 16px 40px;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .thanks-message {
        padding: 30px 0;
        margin-bottom: 40px;
    }
    
    .thanks-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .thanks-icon svg {
        width: 40px;
        height: 40px;
    }
    
    .thanks-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .thanks-description {
        font-size: 0.9rem;
        line-height: 1.9;
    }
    
    .thanks-info {
        grid-template-columns: 1fr;
        gap: 30px;
        margin: 40px 0;
    }
    
    .thanks-info .info-box {
        padding: 24px;
    }
    
    .thanks-actions {
        flex-direction: column;
        gap: 16px;
        margin-top: 40px;
        padding-top: 30px;
    }
    
    .thanks-actions .btn {
        width: 100%;
        min-width: auto;
    }
}
