/* Top Page Styles - Based on Figma Design */

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

/* Display Control Classes */
.mobile-only {
    display: none;
}

.desktop-only {
    display: block;
}

/* ヘッダーのロゴ表示制御 - モバイル/タブレットで確実に1つだけ表示 */
@media (max-width: 1024px) {
    .site-header .desktop-only {
        display: none !important;
    }
    .site-header .mobile-only {
        display: block !important;
    }
}

/* デスクトップ以外は全部モバイル版表示 */
@media (max-width: 1440px) {
    /* モバイル版を表示 */
    .desktop-only {
        display: none !important;
    }
    .mobile-only {
        display: block !important;
    }
}

/* スマホ用 */
@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }
    .mobile-only {
        display: block !important;
    }
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* トップページ専用のbodyパディング調整 */
body.page-template-index {
    padding-top: 0 !important;
}

.top-page {
    width: 100%;
    overflow-x: hidden;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100vw;
    height: 100vh;
    margin-top: -96px; /* ナビゲーションバーに被せる */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 1;
    padding: 0 20px;
    width: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-logo {
    width: 220px;
    height: auto;
    object-fit: contain;
    margin: 0 auto 30px auto;
    display: block;
}

.animated-logo {
    width: 220px;
    height: auto;
    margin: 0 auto;
    display: block;
}

/* SVG アニメーション */
.animated-logo .house-icon {
    stroke: #fff;
    stroke-width: 3;
    fill: transparent;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawHouse 2.5s ease-in-out forwards, fillHouse 1.2s ease-in-out 1.2s forwards;
}

.animated-logo .text-group {
    opacity: 0;
    animation: fadeInText 1s ease-in-out 2.5s forwards;
}

.animated-logo .domain-group {
    opacity: 0;
    animation: fadeInText 1s ease-in-out 2.7s forwards;
}

@keyframes drawHouse {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes fillHouse {
    to {
        fill: #fff;
    }
}

@keyframes fadeInText {
    to {
        opacity: 1;
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    line-height: 1.8;
    opacity: 0;
    animation: fadeInText 1s ease-in-out 2.9s forwards;
}

/* Achievement Section */
.achievement-section {
    background: #1b1b1b;
    width: 100vw;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0;
}

/* デスクトップでセクション2以降を初期非表示 */
@media (min-width: 769px) {
    .section:not(.hero-section) {
        visibility: hidden;
    }
}

.achievement-section .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 60px 20px; /* 上下の余白を均等に */
}

/* デスクトップでヘッダーオフセット調整 */
@media (min-width: 1025px) {
    /* Achievement section - center cards with header offset */
    .achievement-section .container {
        padding-top: 96px; /* ヘッダーの高さ分 */
        padding-bottom: 96px; /* 下も同じ余白 */
        transform: translateY(80px); /* 下に移動 */
    }
    
    /* Housing section - add header offset */
    .housing-section .container {
        transform: translateY(80px); /* 下に移動 */
    }
    
    /* Other sections - add header offset */
    .renovation-section .container,
    .voice-section .container,
    .staff-section .container,
    .column-section .container {
        transform: translateY(60px); /* 下に移動 */
    }
}

/* スクロールアニメーション（デスクトップのみ） */
@media (min-width: 1441px) {
    .achievement-header,
    .achievement-card,
    .housing-header,
    .property-card,
    .renovation-header,
    .renovation-item,
    .voice-header,
    .voice-card,
    .column-header,
    .column-item,
    .staff-header,
    .staff-card {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    }
    
    .achievement-header.is-visible,
    .achievement-card.is-visible,
    .housing-header.is-visible,
    .property-card.is-visible,
    .renovation-header.is-visible,
    .renovation-item.is-visible,
    .voice-header.is-visible,
    .voice-card.is-visible,
    .column-header.is-visible,
    .column-item.is-visible,
    .staff-header.is-visible,
    .staff-card.is-visible {
        opacity: 1;
        transform: translateY(0);
    }
    
    /* 各要素の遅延設定 */
    .achievement-card:nth-child(1) { transition-delay: 0.1s; }
    .achievement-card:nth-child(2) { transition-delay: 0.2s; }
    .achievement-card:nth-child(3) { transition-delay: 0.3s; }
    
    .property-card:nth-child(1) { transition-delay: 0.1s; }
    .property-card:nth-child(2) { transition-delay: 0.2s; }
    .property-card:nth-child(3) { transition-delay: 0.3s; }
    .property-card:nth-child(4) { transition-delay: 0.4s; }
    .property-card:nth-child(5) { transition-delay: 0.5s; }
    .property-card:nth-child(6) { transition-delay: 0.6s; }
    
    .renovation-item:nth-child(1) { transition-delay: 0.1s; }
    .renovation-item:nth-child(2) { transition-delay: 0.2s; }
    .renovation-item:nth-child(3) { transition-delay: 0.3s; }
    .renovation-item:nth-child(4) { transition-delay: 0.4s; }
    .renovation-item:nth-child(5) { transition-delay: 0.5s; }
    .renovation-item:nth-child(6) { transition-delay: 0.6s; }
    
    .voice-card.side:first-child { transition-delay: 0.1s; }
    .voice-card.center { transition-delay: 0.2s; }
    .voice-card.side:last-child { transition-delay: 0.3s; }
    
    .column-item:nth-child(1) { transition-delay: 0.1s; }
    .column-item:nth-child(2) { transition-delay: 0.2s; }
    .column-item:nth-child(3) { transition-delay: 0.3s; }
    
    /* スタッフカードの遅延設定（左から順番に） */
    .staff-grid .staff-card:nth-child(1) { transition-delay: 0.1s; }
    .staff-grid .staff-card:nth-child(2) { transition-delay: 0.2s; }
    .staff-grid .staff-card:nth-child(3) { transition-delay: 0.3s; }
    .staff-grid .staff-card:nth-child(4) { transition-delay: 0.4s; }
    .staff-grid .staff-card:nth-child(5) { transition-delay: 0.5s; }
    .staff-grid .staff-card:nth-child(6) { transition-delay: 0.6s; }
}

.achievement-section .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 60px 20px; /* 上下の余白を均等に */
}

.achievement-header {
    text-align: center;
    margin-bottom: 10px;
}

.achievement-title {
    font-family: 'Cinzel', serif;
    font-size: 26px;
    font-weight: 700;
    color: #a38e3b;
    letter-spacing: 0.05em;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.achievement-subtitle {
    font-family: 'Yu Mincho', 'YuMincho', serif;
    color: #ffffff;
    line-height: 1.3;
    letter-spacing: 0.08em;
}

.achievement-subtitle br {
    display: block;
}

/* 物件探し と リフォーム を大きく */
.achievement-subtitle .large-text {
    font-size: 48px;
    font-weight: 600;
}

/* から と まで を小さく */
.achievement-subtitle .small-text {
    font-size: 40px;
    font-weight: 400;
}

/* 2行目全体 */
.achievement-subtitle .second-line {
    font-size: 36px;
    font-weight: 400;
    letter-spacing: 0.08em;
}

.achievement-cards {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
    margin-top: 20px; /* カードを下に移動 */
}

.achievement-card {
    position: relative;
    text-align: center;
    width: 340px;
    height: 320px;
}

.laurel-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 110%;
    height: 110%;
    object-fit: contain;
}

.achievement-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding-top: 20px;
}

.achievement-label {
    font-family: 'Zen Kaku Gothic Antique', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1.2;
}

.achievement-value {
    font-family: 'Zen Kaku Gothic Antique', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.achievement-unit {
    font-size: 18px;
    font-weight: 700;
}

/* 急増中のスタイル */
.achievement-rapid {
    font-family: 'Zen Kaku Gothic Antique', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.5;
}

/* Fixed Contact Button */
.contact-fixed-btn {
    position: fixed;
    right: 0;
    top: 96px;
    width: 80px;
    height: calc(100vh - 96px);
    background: #D73C2C;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.1em;
}

.contact-fixed-btn:hover {
    background: #c0392b;
}

/* Right Side Buttons */
.side-buttons {
    position: fixed;
    right: 0;
    top: calc(50% + 60px); /* 中央から48px下げる（ヘッダーの高さの半分） */
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.side-buttons.show {
    opacity: 1;
    visibility: visible;
}

.side-button {
    width: 80px;
    height: 200px;
    background: #c00707;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    border-radius: 12px 0 0 12px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-family: 'Zen Kaku Gothic Antique', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.1;
    transition: all 0.3s;
    text-align: center;
    padding: 20px 10px;
    letter-spacing: 0;
    position: relative;
}

.side-button::before {
    content: '';
    position: absolute;
    top: 0;
    right: -10px;
    bottom: 0;
    width: 10px;
    background: #c00707;
    transition: background 0.3s;
}

.side-button br {
    display: inline;
}

.side-button:hover {
    background: #a00606;
    transform: translateX(-5px);
	 color: #ffffff;
	 background: rgba(192, 7, 7, 0.8); 
}

.fp-vertical {
    writing-mode: vertical-rl;
    text-orientation: upright;
    display: inline-block;
    vertical-align: baseline;
}

.side-button:hover::before {
    background: #a00606;
}



/* 1300px以下で赤いボタンとコンテンツ幅を調整 */
@media (max-width: 1300px) {
    .side-button {
        width: 60px;
        height: 160px;
        font-size: 16px;
        padding: 15px 8px;
    }
    
    .container {
        max-width: 1000px;
        padding: 0 100px;
    }
    
    /* 各セクションのコンテナーも調整 */
    .housing-section .container,
    .renovation-section .container,
    .staff-section .container {
        max-width: 1050px !important; /* 横幅をもう少し広げる */
/*         padding: 20px 100px !important; 左右の余白をさらに減らす */
    }

    voice-section .container{
        padding: 100px 100px
    }
    
    /* achievementセクションは1300px以下で大きめのパディング */
    .section.achievement-section {
        padding: 80px 250px !important;
        box-sizing: border-box !important;
    }
    
    .section.achievement-section .container {
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        width: 100% !important;
    }
    
    .column-section .container {
        max-width: 1050px !important;
        padding: 10px 100px !important; /* columnセクションは上下をさらに狭める */
    }
    
    
    /* columnセクションのみ縦幅をさらに調整 */
    .column-section {
        min-height: calc(100vh - 400px) !important;
        padding: 10px 0 !important;
    }
    
    /* columnセクション内の要素も詰める */
    .column-header {
        margin-bottom: 20px !important;
    }
    
    .column-grid {
        gap: 15px !important;
    }
    
    .column-item {
        padding: 10px !important;
    }
    
    .column-more-btn {
        margin-top: 20px !important;
    }
    
    /* セクション自体の縦幅を調整 */
    section {
        min-height: calc(100vh - 250px) !important; /* 縦幅をさらに減らす */
        padding: 20px 0 !important; /* 上下のパディングをさらに減らす */
    }
    
    /* グリッドやカードの間隔もさらに詰める */
    .property-grid,
    .renovation-grid,
    .staff-grid {
        gap: 10px;
    }
    
    .achievement-cards {
        gap: 20px;
    }
    
    /* テキストサイズも少し小さく */
    .achievement-title,
    .housing-title,
    .renovation-title,
    .voice-title,
    .staff-title,
    .column-title {
        font-size: 22px;
    }
}

/* Hide side buttons on non-desktop */
@media (max-width: 1440px) {
    .side-buttons {
        display: none;
    }
    
    .contact-fixed-btn {
        display: none;
    }
}

/* Section Common Styles */
section {
    position: relative;
    width: 100vw;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
}

/* Fullpage Scroll Styles for Desktop */
@media (min-width: 1025px) {
    #fullpage {
        position: relative;
        width: 100%;
        height: 100vh;
        overflow: hidden;
    }
    
    /* Hide sections initially to prevent overlap - except first section */
    /* NOTE: visibility:hiddenは削除。スクロールライブラリが適切に管理するはず */
    /* #fullpage .section:not(:first-child) {
        visibility: hidden;
    } */
    
    /* Ensure sections fill viewport on desktop */
    #fullpage .section {
        height: 100vh !important;
        min-height: 100vh !important;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Adjust container padding within sections */
    #fullpage .section .container {
        padding: 40px 20px;
    }
    
    /* Achievement section - center cards with header offset */
    .achievement-section .container {
        padding-top: 96px; /* ヘッダーの高さ分 */
        padding-bottom: 96px; /* 下も同じ余白 */
        transform: translateY(80px); /* 下に移動 */
    }
    
    /* Housing section - add header offset */
    .housing-section .container {
        transform: translateY(80px); /* 下に移動 */
    }
    
    /* Other sections - add header offset */
    .renovation-section .container,
    .voice-section .container,
    .staff-section .container,
    .column-section .container {
        transform: translateY(60px); /* 下に移動 */
    }
}

.section-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

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

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 60px;
    font-weight: bold;
    letter-spacing: 0.1em;
}

.section-title.white {
    color: white;
}

.subtitle {
    display: block;
    font-size: 1rem;
    font-weight: normal;
    margin-top: 10px;
    opacity: 0.8;
}

.section-btn {
    display: inline-block;
    background: #333;
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 40px;
    transition: background 0.3s;
}

.section-btn:hover {
    background: #555;
}

.section-btn.white {
    background: white;
    color: #333;
}

.section-btn.white:hover {
    background: #f0f0f0;
}

/* グレースケールフィルター */
.grayscale {
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
}

/* Housing Section */
.housing-section {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.housing-section .section-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.housing-section .section-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
}

.housing-section .container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: auto;
}

.housing-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 20px;
    margin-top: 0;
}

.housing-title {
    font-family: 'Cinzel', serif;
    font-size: 52px;
    font-weight: 700;
    color: #a38e3b;
    text-transform: uppercase;
    line-height: 1.2;
}

.housing-subtitle {
    font-family: 'Zen Kaku Gothic Antique', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.5;
}

.property-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    max-width: 100%;
}

/* Desktop/Mobile 表示切り替え */
.mobile-only {
    display: none;
}

.desktop-only {
    display: grid;
}

.property-card {
    background: #ffffff;
    height: 180px;
    position: relative;
    overflow: visible;
    border: none;
    box-shadow: none;
    margin-bottom: 30px;
}

.property-content {
    padding: 0;
    text-align: left;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    background: transparent;
    border-radius: 0;
}

.property-thumbnail {
    font-family: 'Zen Kaku Gothic Antique', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 8px;
}

.property-thumbnail-link {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    overflow: hidden;
}

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

.property-thumbnail-link:hover .property-thumbnail-img {
    transform: scale(1.05);
}

.property-title {
    font-family: 'Zen Kaku Gothic Antique', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #000000;
    line-height: 1.5;
    margin-bottom: 10px;
}

.property-excerpt {
    display: none;
}

.view-more-link {
    position: absolute;
    bottom: -25px;
    left: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    font-family: 'Zen Kaku Gothic Antique', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #ffffff;
    transition: all 0.3s ease;
}

.view-more-link:hover {
    color: #a38e3b;
}

.property-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    max-width: 100%;

}

/* Desktop/Mobile 表示切り替え */
.mobile-only {
    display: none;
}

.desktop-only {
    display: grid;
}

.property-card {
    background: #ffffff;
    height: 180px;
    position: relative;
    overflow: visible;
    border: none;
    box-shadow: none;
    margin-bottom: 30px;
}

.property-content {
    padding: 0;
    text-align: left;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    background: transparent;
    border-radius: 0;
}

.property-thumbnail {
    font-family: 'Zen Kaku Gothic Antique', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 8px;
}

.property-thumbnail-link {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    overflow: hidden;
}

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

.property-thumbnail-link:hover .property-thumbnail-img {
    transform: scale(1.05);
}

.property-title {
    font-family: 'Zen Kaku Gothic Antique', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #000000;
    line-height: 1.5;
    margin-bottom: 10px;
}

.property-excerpt {
    display: none;
}

.view-more-link {
    position: absolute;
    bottom: -25px;
    left: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    font-size: 12px;
    line-height: 1.5;
    transition: all 0.3s;
}

.view-more-link:hover {
    transform: translateX(5px);
}

.view-more-text {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    color: #FFFFFF;
    text-transform: uppercase;
}

.view-more-arrow {
    font-family: 'Noto Serif JP', serif;
    font-weight: 200;
    color: #FFFFFF;
}

.housing-more-btn {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.more-button {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid #ffffff;
    border-radius: 100px;
    padding: 8px 24px;
    transition: all 0.3s;
}

.more-button:hover {
    background: #ffffff;
    color: #000000;
}

/* Renovation Section */
.renovation-section {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #1b1b1b;
}

.renovation-section .section-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    opacity: 0.7;
}

.renovation-section .container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    padding: 60px 20px;
}

.renovation-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 40px;
}

.renovation-title {
    font-family: 'Cinzel', serif;
    font-size: 52px;
    font-weight: 700;
    color: #a38e3b;
    text-transform: uppercase;
    line-height: 1.2;
}

.renovation-subtitle {
    font-family: 'Zen Kaku Gothic Antique', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.5;
}

.renovation-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    row-gap: 45px; /* 説明文のための余白を追加 */
    max-width: 100%;
    margin: 0 0 40px;
}

/* モバイル時はgridをflexに上書き */
/* Non-desktop Styles (1440px and below) */
@media (max-width: 1440px) {
    /* すべてのセクションを表示 */
    .section {
        visibility: visible !important;
        opacity: 1 !important;
        display: block !important;
    }
    
    .property-grid {
        display: flex !important;
    }
    
    .renovation-grid {
        display: flex !important;
    }
    
    .column-grid {
        display: flex !important;
    }
    
    .side-buttons {
        display: none !important;
    }
    
    .desktop-only {
        display: none !important;
    }
    /* Reset body padding for mobile */
    body {
        padding-top: 60px !important;
    }
    
    /* Hero Section Mobile */
    .hero-section {
        height: 100vh;
        min-height: 568px;
        margin-top: -60px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        padding: 0 20px;
        text-align: center;
        z-index: 2;
    }
    
    .hero-logo {
        height: 120px;
        width: auto;
        object-fit: contain;
        margin-bottom: 20px;
    }
    
    /* モバイル版もデスクトップと同じアニメーション */
    .animated-logo .house-icon {
        stroke: #fff;
        stroke-width: 3;
        fill: transparent;
        stroke-dasharray: 1000;
        stroke-dashoffset: 1000;
        animation: drawHouse 2.5s ease-in-out forwards, fillHouse 1.2s ease-in-out 1.2s forwards;
    }
    
    .animated-logo .text-group {
        opacity: 0;
        animation: fadeInText 1s ease-in-out 2.5s forwards;
    }
    
    .animated-logo .domain-group {
        opacity: 0;
        animation: fadeInText 1s ease-in-out 2.7s forwards;
    }
    
    .hero-subtitle {
        font-family: 'Zen Kaku Gothic Antique', sans-serif;
        font-weight: 500;
        font-size: 14px;
        line-height: 1.8;
        letter-spacing: 0.05em;
        color: #FFFFFF;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
        opacity: 0;
        animation: fadeInText 1s ease-in-out 2.9s forwards;
    }
    
    /* Achievement Section Mobile */
    .achievement-section {
        height: auto;
        min-height: 632px;
        padding: 80px 0;
        margin-top: 60px;
        background: #1b1b1b;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .achievement-section .container {
        width: 100%;
        max-width: 393px;
        padding: 40px 12px;
        position: relative;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .achievement-header {
        text-align: center;
        margin-bottom: 45px;
    }
    
    .achievement-title {
        font-family: 'Cinzel', serif;
        font-weight: 700;
        font-size: 14px;
        line-height: 1.5;
        letter-spacing: 0.05em;
        color: #a38e3b;
        margin-bottom: 21px;
        text-transform: uppercase;
    }
    
    .achievement-subtitle {
        display: block;
        font-family: 'Yu Mincho', 'YuMincho', serif;
        color: #ffffff;
        line-height: 1.5;
        letter-spacing: 0;
    }
    
    .achievement-subtitle .large-text {
        font-size: 32px;
        font-weight: 600;
    }
    
    .achievement-subtitle .small-text {
        font-size: 20px;
        font-weight: 400;
    }
    
    .achievement-subtitle .second-line {
        font-size: 24px;
        font-weight: 400;
        display: block;
        margin-top: 0;
    }
    
    .achievement-cards {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
        row-gap: 0;
        margin: 0 auto;
        max-width: 370px;
    }
    
    /* 上段中央のカード */
    .achievement-cards .achievement-card:first-child {
        grid-column: 1 / 3;
        margin: 0 auto 0;
        width: 182px;
    }
    
    /* 下段のカード */
    .achievement-cards .achievement-card:nth-child(2),
    .achievement-cards .achievement-card:nth-child(3) {
        width: 182px;
        margin: 0 auto;
    }
    
    .achievement-card {
        position: relative;
        text-align: center;
        width: 182px;
        height: 172px;
    }
    
    .laurel-image {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    
    .achievement-content {
        position: relative;
        z-index: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100%;
        padding: 0;
    }
    
    .achievement-label {
        font-family: 'Zen Kaku Gothic Antique', sans-serif;
        font-weight: 700;
        font-size: 12px;
        line-height: 1.5;
        color: #ffffff;
        margin-bottom: 6px;
    }
    
    /* リノベ住宅販売数の改行対応 */
    .achievement-card:nth-child(2) .achievement-label {
        line-height: 1.3;
    }
    
    .achievement-value {
        font-family: 'Zen Kaku Gothic Antique', sans-serif;
        font-weight: 700;
        font-size: 36px;
        line-height: 1.5;
        color: #ffffff;
        margin-bottom: 0;
    }
    
    .achievement-unit {
        font-size: 12px;
        font-weight: 700;
        color: #ffffff;
    }
    
    .achievement-rapid {
        font-family: 'Zen Kaku Gothic Antique', sans-serif;
        font-weight: 700;
        font-size: 28px;
        line-height: 1.5;
        color: #ffffff;
    }
    
    /* Section Common Mobile */
    .section {
        width: 100vw;
        height: auto !important;
        min-height: 100vh;
        position: relative;
        overflow: hidden;
    }
    
    .section-bg {
        height: 100%;
    }
    
    /* Container mobile */
    .container {
        width: 100%;
        max-width: 100%;
        padding: 60px 16px;
        height: auto;
    }
    
    /* Housing Section Mobile */
    .housing-section {
        padding: 60px 0;
        min-height: auto;
        height: auto !important;
        display: flex;
        align-items: center;
    }
    
    .housing-header {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        text-align: center;
        margin-bottom: 32px;
    }
    
    .housing-title {
        font-size: 20px;
        margin-bottom: 0;
        white-space: nowrap;
    }
    
    .housing-subtitle {
        font-size: 20px;
        margin-bottom: 0;
        white-space: nowrap;
    }
    
    .housing-cards {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }
    
    .housing-card {
        width: 100%;
        max-width: 343px;
        margin: 0 auto;
        min-height: 0;
        display: flex;
        flex-direction: column;
    }
    
    /* Column Section Mobile */
    .column-section {
        background: #f5f5f5;
        padding: 60px 0;
        min-height: auto;
    }
    
    .column-header {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        text-align: center;
        margin-bottom: 32px;
    }
    
    .column-title {
        font-size: 20px;
        margin-bottom: 0;
        white-space: nowrap;
    }
    
    .column-subtitle {
        font-size: 20px;
        margin-bottom: 0;
        white-space: nowrap;
    }
    
    .column-items {
        gap: 24px;
    }
    
    .column-card {
        padding: 24px 20px;
    }
    
    .column-card h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .column-card p {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    /* Renovation Section Mobile */
    .renovation-section {
        position: relative;
        height: 543px;
        padding: 0;
        overflow: hidden;
        background: #1b1b1b !important;
        min-height: auto;
        width: 100vw;
        display: flex !important;
    }
    
    .renovation-section .container {
        position: relative;
        z-index: 1;
        height: 100%;
        padding: 56px 0 60px;
        display: flex;
        flex-direction: column;
    }
    
    .renovation-section .section-bg {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        z-index: 0;
        opacity: 0.7;
    }
    
    .renovation-header {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        text-align: center;
        margin-bottom: 32px;
        padding: 0 20px;
        flex-direction: column;
    }
    
    .renovation-title {
        font-size: 20px;
        margin-bottom: 0;
        white-space: nowrap;
    }
    
    .renovation-subtitle {
        font-size: 20px;
        margin-bottom: 0;
        white-space: nowrap;
    }
    
    .renovation-grid {
        display: flex !important;
        flex-direction: column;
        gap: 24px;
    }
    
    .renovation-item {
        width: 100%;
        max-width: 343px;
        margin: 0 auto;
        height: 200px;
    }
    
    /* Renovation Carousel Navigation */
    .renovation-carousel-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 24px;
        height: 24px;
        background: transparent;
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 2;
        padding: 0;
    }

    .renovation-carousel-nav-left {
        left: 20px;
    }

    .renovation-carousel-nav-right {
        right: 20px;
    }

    .renovation-carousel-nav-circle {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(0, 0, 0, 0.7);
        border: 2px solid #fff;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .renovation-carousel-nav-arrow {
        width: 12px;
        height: 12px;
        border-top: 2px solid #fff;
        border-right: 2px solid #fff;
    }

    .renovation-carousel-nav-left .renovation-carousel-nav-arrow {
        transform: rotate(-135deg);
        margin-left: 2px;
    }

    .renovation-carousel-nav-right .renovation-carousel-nav-arrow {
        transform: rotate(45deg);
        margin-right: 2px;
    }
    
    /* Voice Section Mobile */
    .voice-section {
        padding: 0;
    }
    
    .voice-header {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        text-align: center;
        margin-bottom: 32px;
    }
    
    .voice-title {
        font-size: 20px;
        margin-bottom: 0;
        white-space: nowrap;
    }
    
    .voice-subtitle {
        font-size: 20px;
        margin-bottom: 0;
        white-space: nowrap;
    }
    
    /* Voice slider mobile */
    .voice-cards {
        flex-direction: column;
        gap: 24px;
    }
    
    .voice-card {
        width: 100% !important;
        max-width: 380px;
        margin: 0 auto;
        transform: scale(1) !important;
        opacity: 1 !important;
        min-height: auto;
    }
    
    .voice-card.side {
        display: none;
    }
    
    .voice-navigation,
    .voice-dots {
        display: none;
    }
    
    /* Staff Section Mobile */
    .staff-section {
        padding: 60px 0;
        min-height: auto;
    }
    
    .staff-header {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        text-align: center;
        margin-bottom: 32px;
    }
    
    .staff-title {
        font-size: 20px;
        margin-bottom: 0;
        white-space: nowrap;
    }
    
    .staff-subtitle {
        font-size: 20px;
        margin-bottom: 0;
        white-space: nowrap;
    }
    
    .staff-grid {
        gap: 24px;
    }
    
    .staff-card {
        width: 100%;
        max-width: 343px;
        margin: 0 auto;
    }
    
    /* 1300px調整を無効化 */
    .section.achievement-section {
        padding: 80px 0 !important;
    }
    
    .section.achievement-section .container {
        padding: 40px 12px !important;
    }
}

.renovation-item {
    position: relative;
    height: 180px;
    overflow: visible; /* ラベルと説明文を表示するため */
}

.renovation-link {
    display: block;
    text-decoration: none;
    color: inherit;
    position: relative;
    height: 100%;
    transition: transform 0.3s ease;
}

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

.renovation-link:hover .renovation-image {
    opacity: 0.9;
}

.renovation-images-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.renovation-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
    position: absolute;
    top: 0;
    left: 0;
}

/* 外装画像（デフォルト表示） */
.renovation-image.renovation-exterior {
    z-index: 2;
    opacity: 1;
}

/* 内装画像（ホバー時表示） */
.renovation-image.renovation-interior {
    z-index: 1;
    opacity: 1;
}

/* ホバー時に外装画像を非表示にして内装画像を表示 */
.renovation-link:hover .renovation-image.renovation-exterior {
    opacity: 0;
}

.room-type {
    position: absolute;
    bottom: -30px;
    right: 0;
    background: #ffffff;
    padding: 3px 8px;
    font-family: 'Cinzel', serif;
    font-size: 12px;
    font-weight: 700;
    color: #1b1b1b;
    line-height: 1.5;
}

.renovation-description {
    position: absolute;
    bottom: -25px;
    left: 0;
    font-family: 'Zen Kaku Gothic Antique', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.5;
    white-space: nowrap;
}

.renovation-more-btn {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.renovation-more-button {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid #ffffff;
    border-radius: 100px;
    padding: 8px 24px;
    transition: all 0.3s;
}

.renovation-more-button:hover {
    background: #ffffff;
    color: #1b1b1b;
}

/* Voice Section */
.voice-section {
    background: #ffffff;
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Voice Slider - シンプルな実装 */
.voice-slider {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.voice-cards {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    transition: transform 0.5s ease;
    position: relative;
}

.voice-section .container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    padding: 20px 20px;
}

.voice-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 10px;
}

.voice-title {
    font-family: 'Cinzel', serif;
    font-size: 52px;
    font-weight: 700;
    color: #a38e3b;
    text-transform: uppercase;
    line-height: 1.2;
}

.voice-subtitle {
    font-family: 'Zen Kaku Gothic Antique', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #1b1b1b;
    line-height: 1.5;
}

/* Voice Carousel - シンプルデザイン */
.voice-carousel-container {
    position: relative;
    width: 100%;
    overflow: visible;
    height: 470px;
    margin: 40px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.voice-carousel {
    display: flex;
    gap: 30px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    align-items: center;
    position: relative;
}

.voice-card {
    flex: 0 0 auto;
    width: 800px;
    height: 435px;
    position: relative;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.6;
    transform: scale(0.9);
}

.voice-card.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.voice-card-inner {
    width: 100%;
    height: 100%;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    display: flex;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
}

/* 全カードの左側（画像エリア背景） */
.voice-card-inner::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background: #f5f5f5;
    z-index: 0;
}

/* ナビゲーション矢印 - アクティブカードの端に配置 */
.voice-carousel-container .voice-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #B8860B;
    border: none;
    cursor: pointer;
    z-index: 10;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 50px;
    height: 50px;
}

.voice-carousel-container .voice-nav-prev {
    left: calc(50% - 425px); /* 中央からカード幅の半分 + マージンを引いた位置 */
}

.voice-carousel-container .voice-nav-next {
    right: calc(50% - 425px); /* 中央からカード幅の半分 + マージンを引いた位置 */
}

.voice-carousel-container .voice-nav:hover {
    background: #A38E3B;
}

.voice-carousel-container .voice-nav svg path {
    stroke: #ffffff;
}

/* 全カードのVOICE文字とカード番号 */
.voice-card-header {
    position: absolute;
    top: 60px;
    right: 40px;
    z-index: 2;
    display: flex;
    align-items: baseline;
    gap: 12px;
}

/* ヘッダーの下線を削除 */

.voice-card-title {
    font-family: 'Cinzel', serif;
    font-weight: 500;
    font-size: 18px;
    color: #B8860B;
    margin: 0;
    letter-spacing: 0.1em;
}

.voice-card-number {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 50px;
    color: #B8860B;
    margin: 0;
    line-height: 0.8;
}

/* 全カードの画像（左半分全体） */
.voice-image {
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

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

/* 全カードのテキストエリア（右半分） */
.voice-content {
    position: absolute;
    right: 0;
    top: 140px;
    width: 50%;
    height: calc(100% - 140px);
    padding: 40px 30px 40px 30px;
    z-index: 2;
}

/* テキストコンテナの上に下線を追加 */
.voice-content::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50px;
    right: 50px;
    height: 1px;
    background: #B8860B;
    z-index: 1;
}


/* VOICEラベルを非表示（新デザインでは不要） */
.voice-label {
    display: none !important;
}

/* 全カードのテキストスタイル */
.voice-text {
    font-family: 'Zen Kaku Gothic Antique', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #1b1b1b;
    text-align: left;
    line-height: 1.6;
    margin: 0 0 30px 0;
    background: transparent;
    padding: 0;
    position: relative;
    z-index: 2;
}

/* 全カードの顧客情報スタイル */
.voice-info {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    font-family: 'Zen Kaku Gothic Antique', sans-serif;
    font-weight: 500;
    color: #1b1b1b;
    font-size: 16px;
    position: relative;
}

@media (min-width: 1025px) {
    .voice-label {
        position: absolute;
        right: 0;
        top: 8px;
        font-family: 'Cinzel', sans-serif;
        font-weight: 900;
        color: #1b1b1b;
        writing-mode: vertical-rl;
        text-orientation: mixed;
        line-height: 1.5;
    }

    .voice-card.center .voice-label {
        font-size: 24px;
        padding: 6px 5px;
    }

    .voice-card.side .voice-label {
        font-size: 18px;
        padding: 5px 4px;
    }
}

@media (min-width: 1025px) {
    /* メディアクエリ内でのvoice-contentとvoice-textのオーバーライドを削除 */
}


/* Voice Dots Navigation */
.voice-dots {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0 15px;
}

.voice-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #DDDDDD;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.voice-dot.active {
    background: #B8A572;
}

.voice-dot:hover {
    background: #B8A572;
    opacity: 0.7;
}

/* MOREボタン */
.voice-more-btn {
    display: flex;
    justify-content: center;
}

.voice-more-button {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    font-weight: 700;
    color: #1b1b1b;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid #1b1b1b;
    border-radius: 100px;
    padding: 8px 24px;
    transition: all 0.3s;
}

.voice-more-button:hover {
    background: #1b1b1b;
    color: #ffffff;
}

/* Voice Navigation Dots */
.voice-dots {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin: 40px 0;
}

.voice-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #666666;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.voice-dot.active {
    background: #a38e3b;
    border-color: #a38e3b;
}

.voice-dot:hover {
    border-color: #a38e3b;
}


/* Staff Section */
.staff-section {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.staff-section .section-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.staff-section .section-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.staff-section .container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    padding: 60px 20px;
}

.staff-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 30px;
}

.staff-title {
    font-family: 'Cinzel', serif;
    font-size: 52px;
    font-weight: 700;
    color: #a38e3b;
    text-transform: uppercase;
    line-height: 1.2;
}

.staff-subtitle {
    font-family: 'Zen Kaku Gothic Antique', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.5;
}

.staff-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 15px;
    max-width: 100%;
    margin: 0 0 40px;
}

.staff-card {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.staff-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.staff-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.staff-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    gap: 8px;
    align-items: center;
    text-align: left;
    z-index: 4;
}

.staff-location {
    font-family: 'Zen Kaku Gothic Antique', sans-serif;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    margin: 0;
    text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.75);
}

.staff-name {
    font-family: 'Zen Kaku Gothic Antique', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.75);
    margin: 0;
}

/* スタッフカードのホバーエフェクト */
.staff-card.has-modal {
    cursor: pointer;
}

.staff-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 3;
}

.staff-card.has-modal:hover .staff-hover-overlay {
    opacity: 1;
}

/* 左上以外のスタッフカードのホバー効果 */
.staff-card:not(:first-child):hover .staff-hover-overlay {
    opacity: 1;
}

/* カスタマーメッセージ表示用 */
.staff-hover-message {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-family: 'Yu Mincho', 'YuMincho', serif;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    z-index: 5;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 15px;
    line-height: 1.4;
    max-width: 95%;
    width: 95%;
}

.staff-card:not(:first-child):hover .staff-hover-message {
    opacity: 1;
}

/* スタッフモーダル */
.staff-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.staff-modal-content {
    position: relative;
    background-color: #F5F5F5;
    margin: 0;
    width: 90%;
    max-width: 1100px;
    height: 75vh;
    max-height: 650px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-top: 40px;
    overflow-y: auto;
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.staff-modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    color: #1B1B1B;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    z-index: 1001;
    font-family: 'Cinzel', serif;
    background: transparent;
    border: none;
    padding: 5px;
}

.staff-modal-close:hover {
    color: #999;
}

.staff-modal-body {
    display: flex;
    flex-direction: column;
    height: 100%;
    margin-top: 0;
    min-height: 500px;
}

.staff-modal-top {
    display: flex;
    flex: 1;
}

.staff-modal-left {
    flex: 0 0 40%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.staff-modal-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.staff-modal-right {
    flex: 1;
    padding: 20px 40px 20px 20px;
    background: #F5F5F5;
    overflow-y: visible;
}

.staff-modal-header {
    margin-bottom: 20px;
    border-bottom: none;
}

.staff-modal-position {
    font-family: 'Zen Kaku Gothic Antique', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #1B1B1B;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.staff-modal-name-section {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 5px;
}

.staff-modal-name {
    font-family: 'Zen Kaku Gothic Antique', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin: 0;
}

.staff-modal-reading {
    font-family: 'Zen Kaku Gothic Antique', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #666;
    margin: 0;
}

.staff-modal-details {
    margin-bottom: 0;
}

.staff-detail-row {
    display: flex;
    margin-bottom: 6px;
    align-items: flex-start;
}

.staff-detail-label {
    flex: 0 0 100px;
    background: #1B1B1B;
    color: #fff;
    padding: 2px 4px;
    font-family: 'Zen Kaku Gothic Antique', sans-serif;
    font-size: 11px;
    font-weight: 500;
    margin-right: 12px;
    text-align: center;
}

.staff-detail-value {
    flex: 1;
    font-family: 'Zen Kaku Gothic Antique', sans-serif;
    font-size: 12px;
    font-weight:500;
    line-height: 1.4;
    color: #1B1B1B;
    padding: 2px 0;
}

.staff-modal-messages {
    border-top: 1px solid #eee;
    padding: 20px 30px;
    background: #fff;
    margin: 20px 20px 20px 20px;
    border-radius: 0;
}

.staff-message-section {
    margin-bottom: 15px;
}

.staff-message-title {
    font-family: 'Zen Kaku Gothic Antique', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #B8860B;
    margin-bottom: 8px;
    border-bottom: 1px solid #B8860B;
    padding-bottom: 5px;
    display: inline-block;
}

.staff-message-content {
    font-family: 'Zen Kaku Gothic Antique', sans-serif;
    font-size: 12px;
    line-height: 1.6;
    color: #333;
    background: transparent;
    padding: 0;
    border-radius: 0;
}

.staff-more-btn {
    display: flex;
    justify-content: center;
}

.staff-more-button {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid #ffffff;
    border-radius: 100px;
    padding: 8px 24px;
    transition: all 0.3s;
}

.staff-more-button:hover {
    background: #ffffff;
    color: #1b1b1b;
}

/* Column Section */
.column-section {
    background: #1b1b1b;
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.column-section .container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    padding: 60px 20px;
}

.column-header {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-bottom: 50px;
}

.column-title {
    font-family: 'Cinzel', serif;
    font-size: 52px;
    font-weight: 700;
    color: #a38e3b;
    text-transform: uppercase;
    line-height: 1.2;
}

.column-subtitle {
    font-family: 'Zen Kaku Gothic Antique', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.5;
}

.column-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 100%;
    margin: 0 0 50px;
    align-items: stretch;
}

.column-item {
    background: transparent;
    position: relative;
    overflow: visible;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.column-image {
    height: 180px;
    overflow: hidden;
    background: #333;
}

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

.column-content {
    padding: 20px 16px 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.column-item-title {
    font-family: 'Zen Kaku Gothic Antique', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.5;
    margin-bottom: 8px;
}

.column-excerpt {
    font-family: 'Zen Kaku Gothic Antique', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.8;
    margin-bottom: 16px;
    flex-grow: 1;
}

.read-more-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: 'Cinzel', serif;
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    position: relative;
    transition: all 0.3s;
    width: fit-content; /* 文字の幅に合わせる */
}

.read-more-link::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0; /* widthの代わりにrightを使用 */
    height: 1px;
    background: #ffffff;
}

.read-more-link:hover {
    transform: translateX(3px);
}

.read-more-arrow {
    font-family: 'Noto Serif JP', serif;
    font-weight: 200;
}

.column-more-btn {
    display: flex;
    justify-content: center;
}

.column-more-button {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid #ffffff;
    border-radius: 100px;
    padding: 8px 24px;
    transition: all 0.3s;
}

.column-more-button:hover {
    background: #ffffff;
    color: #1b1b1b;
}

/* Contact Section */
.contact-section {
    background: #f0f0f0;
    padding: 60px 0;
    min-height: auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-title {
    font-size: 2rem;
    margin-bottom: 20px;
}

.contact-tel {
    font-size: 2.5rem;
    font-weight: bold;
    color: #e74c3c;
    margin-bottom: 10px;
}

.contact-hours {
    color: #666;
    margin-bottom: 30px;
}

.contact-company {
    display: flex;
    align-items: center;
    gap: 20px;
}

.company-logo {
    height: 50px;
}

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

.contact-btn {
    display: inline-block;
    background: #e74c3c;
    color: white;
    padding: 20px 60px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    transition: background 0.3s;
}

.contact-btn:hover {
    background: #c0392b;
}

.contact-note {
    margin-top: 20px;
    color: #666;
    font-size: 0.9rem;
}

/* Responsive Design - Non-desktop */
@media (max-width: 1440px) {
    /* Force normal scroll on mobile */
    body, html {
        overflow: auto !important;
        height: auto !important;
    }
    
    #fullpage {
        height: auto !important;
        overflow: visible !important;
    }
    
    /* すべてのセクションを表示 */
    section {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .section {
        position: relative !important;
        height: auto !important;
        min-height: auto !important;
        transform: none !important;
    }
    
    /* Reset transforms for mobile */
    .housing-section .container,
    .renovation-section .container,
    .voice-section .container,
    .staff-section .container,
    .column-section .container {
        transform: none !important;
    }
    /* Desktop/Mobile 表示切り替え */
    .mobile-only {
        display: block;
    }
    
    .desktop-only {
        display: none !important;
    }
    /* Reset body padding for mobile */
    body {
        padding-top: 60px !important;
    }
    
    /* Hero Section Mobile */
    .hero-section {
        height: 100vh;
        min-height: 568px;
        margin-top: -60px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        padding: 0 20px;
        text-align: center;
        z-index: 2;
    }
    
    .hero-logo {
        height: 120px;
        width: auto;
        object-fit: contain;
        margin-bottom: 20px;
    }
    
    /* モバイル版もデスクトップと同じアニメーション */
    .animated-logo .house-icon {
        stroke: #fff;
        stroke-width: 3;
        fill: transparent;
        stroke-dasharray: 1000;
        stroke-dashoffset: 1000;
        animation: drawHouse 2.5s ease-in-out forwards, fillHouse 1.2s ease-in-out 1.2s forwards;
    }
    
    .animated-logo .text-group {
        opacity: 0;
        animation: fadeInText 1s ease-in-out 2.5s forwards;
    }
    
    .animated-logo .domain-group {
        opacity: 0;
        animation: fadeInText 1s ease-in-out 2.7s forwards;
    }
    
    .hero-subtitle {
        font-family: 'Zen Kaku Gothic Antique', sans-serif;
        font-weight: 500;
        font-size: 14px;
        line-height: 1.8;
        letter-spacing: 0.05em;
        color: #FFFFFF;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
        opacity: 0;
        animation: fadeInText 1s ease-in-out 2.9s forwards;
    }
    
    /* Achievement Section Mobile */
    .achievement-section {
        height: auto;
        min-height: 632px;
        padding: 80px 0;
        margin-top: 60px;
        background: #1b1b1b;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .achievement-section .container {
        width: 100%;
        max-width: 393px;
        padding: 40px 12px;
        position: relative;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .achievement-header {
        text-align: center;
        margin-bottom: 45px;
    }
    
    .achievement-title {
        font-family: 'Cinzel', serif;
        font-weight: 700;
        font-size: 14px;
        line-height: 1.5;
        letter-spacing: 0.05em;
        color: #a38e3b;
        margin-bottom: 21px;
        text-transform: uppercase;
    }
    
    .achievement-subtitle {
        display: block;
        font-family: 'Yu Mincho', 'YuMincho', serif;
        color: #ffffff;
        line-height: 1.5;
        letter-spacing: 0;
    }
    
    .achievement-subtitle .large-text {
        font-size: 32px;
        font-weight: 600;
    }
    
    .achievement-subtitle .small-text {
        font-size: 20px;
        font-weight: 400;
    }
    
    .achievement-subtitle .second-line {
        font-size: 24px;
        font-weight: 400;
        display: block;
        margin-top: 0;
    }
    
    .achievement-cards {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
        row-gap: 0;
        margin: 0 auto;
        max-width: 370px;
    }
    
    /* 上段中央のカード */
    .achievement-cards .achievement-card:first-child {
        grid-column: 1 / 3;
        margin: 0 auto 0;
        width: 182px;
    }
    
    /* 下段のカード */
    .achievement-cards .achievement-card:nth-child(2),
    .achievement-cards .achievement-card:nth-child(3) {
        width: 182px;
        margin: 0 auto;
    }
    
    .achievement-card {
        position: relative;
        text-align: center;
        width: 182px;
        height: 172px;
    }
    
    .laurel-image {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    
    .achievement-content {
        position: relative;
        z-index: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100%;
        padding: 0;
    }
    
    .achievement-label {
        font-family: 'Zen Kaku Gothic Antique', sans-serif;
        font-weight: 700;
        font-size: 12px;
        line-height: 1.5;
        color: #ffffff;
        margin-bottom: 6px;
    }
    
    /* リノベ住宅販売数の改行対応 */
    .achievement-card:nth-child(2) .achievement-label {
        line-height: 1.3;
    }
    
    .achievement-value {
        font-family: 'Zen Kaku Gothic Antique', sans-serif;
        font-weight: 700;
        font-size: 36px;
        line-height: 1.5;
        color: #ffffff;
        margin-bottom: 0;
    }
    
    .achievement-unit {
        font-size: 12px;
        font-weight: 700;
        color: #ffffff;
    }
    
    .achievement-rapid {
        font-family: 'Zen Kaku Gothic Antique', sans-serif;
        font-weight: 700;
        font-size: 28px;
        line-height: 1.5;
        color: #ffffff;
    }
    
    /* Section Common Mobile */
    section {
        padding: 60px 0;
        min-height: auto;
    }
    
    /* Property Carousel Container */
    .property-carousel-wrapper {
        position: relative;
        height: 187px;
        margin-bottom: 60px;
        overflow: hidden;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
    }
    
    .property-grid {
        display: flex;
        gap: 22px;
        height: 100%;
        transition: transform 0.3s ease;
        padding: 0 60px;
        width: max-content;
    }
    
    .property-card {
        flex: 0 0 319px;
        height: 174px;
        background: #ffffff;
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .property-content {
        padding: 0;
        text-align: center;
        width: 100%;
        height: 100%;
        position: relative;
    }
    
    .property-thumbnail {
        font-family: 'Zen Kaku Gothic Antique', sans-serif;
        font-size: 12px;
        font-weight: 700;
        color: #000000;
        margin-bottom: 8px;
    }
    
    .property-title {
        font-family: 'Zen Kaku Gothic Antique', sans-serif;
        font-weight: 700;
        font-size: 13px;
        line-height: 1.5;
        color: #000000;
        text-align: center;
    }
    
    /* Carousel Navigation */
    .carousel-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 24px;
        height: 24px;
        background: transparent;
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 2;
        padding: 0;
    }
    
    .carousel-nav-left {
        left: 20px;
    }
    
    .carousel-nav-right {
        right: 20px;
    }
    
    .carousel-nav-circle {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(0, 0, 0, 0.7);
        border: 2px solid #fff;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .carousel-nav-arrow {
        width: 12px;
        height: 12px;
        border-top: 2px solid #fff;
        border-right: 2px solid #fff;
    }
    
    .carousel-nav-left .carousel-nav-arrow {
        transform: rotate(-135deg);
        margin-left: 2px;
    }
    
    .carousel-nav-right .carousel-nav-arrow {
        transform: rotate(45deg);
        margin-right: 2px;
    }
    
    /* VIEW MORE link */
    .property-carousel-wrapper .view-more-link {
        position: absolute;
        bottom: -30px;
        left: 0;
        display: flex;
        align-items: center;
        gap: 8px;
        text-decoration: none;
        font-size: 12px;
        line-height: 1.5;
        transition: all 0.3s;
        padding: 5px 0;
        z-index: 2;
    }
    
    .property-carousel-wrapper .view-more-link:hover {
        transform: translateX(5px);
    }
    
    .view-more-text {
        font-family: 'Cinzel', serif;
        font-weight: 700;
        color: #ffffff;
        text-transform: uppercase;
    }
    
    .view-more-arrow {
        font-family: 'Noto Serif JP', serif;
        font-weight: 200;
        color: #ffffff;
    }

    /* Housing Section Mobile */
    .housing-section {
        position: relative;
        height: 600px;
        padding: 0;
        overflow: hidden;
    }
    
    .housing-section .section-bg {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        z-index: 0;
    }
    
    .housing-section .section-bg::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
    }
    
    .housing-section .container {
        position: relative;
        z-index: 1;
        height: 100%;
        padding: 56px 0 60px;
        display: flex;
        flex-direction: column;
    }
    
    .housing-header {
        text-align: center;
        padding: 0 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .housing-title {
        font-family: 'Cinzel', serif;
        font-weight: 700;
        font-size: 14px;
        line-height: 1.5;
        letter-spacing: 0.05em;
        color: #a38e3b;
        margin-bottom: 0;
        text-transform: uppercase;
    }
    
    .housing-subtitle {
        font-family: 'Yu Mincho', 'YuMincho', serif;
        font-weight: 600;
        font-size: 24px;
        line-height: 1.8;
        letter-spacing: 0;
        color: #ffffff;
    }
    
    /* Property Carousel Container */
    .property-carousel-wrapper {
        position: relative;
        height: 187px;
        margin-bottom: 60px;
        overflow: hidden;
    }
    
    .property-grid {
        display: flex;
        gap: 22px;
        height: 100%;
        transition: transform 0.3s ease;
        padding: 0 37px;
    }
    
    .property-card {
        flex: 0 0 319px;
        height: 174px;
        background: #ffffff;
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .property-content {
        padding: 0;
        text-align: center;
        width: 100%;
        height: 100%;
        position: relative;
    }
    
    .property-thumbnail {
        font-family: 'Zen Kaku Gothic Antique', sans-serif;
        font-size: 12px;
        font-weight: 700;
        color: #000000;
        margin-bottom: 8px;
    }
    
    .property-title {
        font-family: 'Zen Kaku Gothic Antique', sans-serif;
        font-weight: 700;
        font-size: 13px;
        line-height: 1.5;
        color: #000000;
        text-align: center;
    }
    
    /* Carousel Navigation */
    .carousel-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 40px;
        height: 40px;
        background: transparent;
        border-radius: 50%;
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 2;
        padding: 0;
        transition: all 0.3s ease;
    }
    
    .carousel-nav:hover {
        background: transparent;
        transform: translateY(-50%) scale(1.1);
    }
    
    .carousel-nav img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    
    
    /* VIEW MORE link */
    .property-carousel-wrapper .view-more-link {
        position: absolute;
        bottom: -30px;
        left: 0;
        display: flex;
        align-items: center;
        gap: 8px;
        text-decoration: none;
        font-size: 12px;
        line-height: 1.5;
        transition: all 0.3s;
        padding: 5px 0;
        z-index: 2;
    }
    
    .property-carousel-wrapper .view-more-link:hover {
        transform: translateX(5px);
    }
    
    .view-more-text {
        font-family: 'Cinzel', serif;
        font-weight: 700;
        color: #ffffff;
        text-transform: uppercase;
    }
    
    .view-more-arrow {
        font-family: 'Noto Serif JP', serif;
        font-weight: 200;
        color: #ffffff;
    }
    
    /* MORE button */
    .housing-more-btn {
        display: flex;
        justify-content: center;
        margin-top: 20px;
    }
    
    .more-button {
        font-family: 'Cinzel', serif;
        font-size: 10px;
        font-weight: 700;
        color: #ffffff;
        text-transform: uppercase;
        text-decoration: none;
        border: 1px solid #ffffff;
        border-radius: 100px;
        padding: 8px 27px;
        transition: all 0.3s;
    }
    
    .more-button:hover {
        background: #ffffff;
        color: #000000;
    }
    
    
    .renovation-header {
        text-align: center;
        margin-bottom: 32px;
        padding: 0 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .renovation-title {
        font-family: 'Cinzel', serif;
        font-weight: 700;
        font-size: 14px;
        line-height: 1.5;
        letter-spacing: 0.05em;
        color: #a38e3b;
        margin-bottom: 0;
        text-transform: uppercase;
    }
    
    .renovation-subtitle {
        font-family: 'Yu Mincho', 'YuMincho', serif;
        font-weight: 600;
        font-size: 24px;
        line-height: 1.8;
        color: #ffffff;
    }
    
    .renovation-more-btn {
        display: flex;
        justify-content: center;
        margin-top: 20px;
    }
    
    .renovation-more-button {
        font-family: 'Cinzel', serif;
        font-size: 10px;
        font-weight: 700;
        color: #ffffff;
        text-transform: uppercase;
        text-decoration: none;
        border: 1px solid #ffffff;
        border-radius: 100px;
        padding: 8px 27px;
        transition: all 0.3s;
    }
    
    .renovation-more-button:hover {
        background: #ffffff;
        color: #1b1b1b;
    }
    
    /* Renovation Carousel Container */
    .renovation-carousel-wrapper {
        position: relative;
        height: 212px;
        margin-bottom: 40px;
        overflow: visible;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
    }
    
    .renovation-grid {
        display: block;
        height: 100%;
        padding: 0 60px;
    }
    
    .renovation-item {
        width: 100%;
        max-width: 343px;
        height: 230px;
        margin: 0 auto;
        position: relative;
        background: transparent;
        display: none;
        overflow: visible;
    }
    
    .renovation-item.active {
        display: block;
    }

    .renovation-link {
        display: block;
        text-decoration: none;
        color: inherit;
        position: relative;
        height: 100%;
        transition: transform 0.3s ease;
        z-index: 1;
    }

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

    .renovation-link:hover .renovation-image {
        opacity: 0.9;
    }

    .renovation-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: opacity 0.3s ease;
        display: block;
    }

    .room-type {
        position: absolute;
        bottom: 0;
        right: 0;
        background: #ffffff;
        padding: 2px 8px;
        font-family: 'Cinzel', serif;
        font-weight: 700;
        font-size: 10px;
        color: #1b1b1b;
        text-transform: uppercase;
        line-height: 1.5;
    }

    .renovation-description {
        position: absolute;
        bottom: -25px;
        left: 0;
        font-family: 'Zen Kaku Gothic Antique', sans-serif;
        font-size: 10px;
        font-weight: 500;
        color: #ffffff;
        line-height: 1.5;
        white-space: nowrap;
    }
    
    .renovation-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
        transition: opacity 0.3s ease;
    }
    
    /* モバイル版画像切り替え */
    .renovation-mobile-images {
        position: relative;
        width: 100%;
        height: 187px;
        overflow: hidden;
    }
    
    .mobile-renovation-card .renovation-exterior {
        z-index: 2;
        display: block;
    }
    
    .mobile-renovation-card .renovation-interior {
        z-index: 1;
        display: none;
    }
    
    /* クリック可能であることを示すカーソル */
    .mobile-renovation-card {
        cursor: pointer;
    }
    
    .room-type {
        position: absolute;
        bottom: -15px;
        right: 0;
        background: #ffffff;
        padding: 4px 8px;
        font-family: 'Cinzel', serif;
        font-weight: 700;
        font-size: 10px;
        color: #1b1b1b;
        text-transform: uppercase;
        line-height: 1.5;
        z-index: 3;
    }
    
    .renovation-description {
        position: absolute;
        bottom: -15px;
        left: 0;
        font-family: 'Zen Kaku Gothic Antique', sans-serif;
        font-size: 10px;
        font-weight: 500;
        color: #ffffff;
        line-height: 1.5;
        white-space: nowrap;
        z-index: 3;
        max-width: calc(100% - 80px);
    }
    
    /* Carousel Navigation */
    .renovation-carousel-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 50%;
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 2;
        padding: 0;
        transition: all 0.3s ease;
    }
    
    .renovation-carousel-nav:hover {
        background: rgba(255, 255, 255, 1);
        transform: translateY(-50%) scale(1.1);
    }
    
    .renovation-carousel-nav img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    
    .renovation-carousel-nav-left {
        left: 12px;
    }
    
    .renovation-carousel-nav-left img {
        transform: rotate(180deg);
    }
    
    .renovation-carousel-nav-right {
        right: 12px;
    }
    
    
    /* Voice Section Mobile */
    .voice-section {
        background: #FFFFFF;
        padding: 0;
        position: relative;
        margin-top: 0;
    }
    
    .voice-section .container {
        padding: 0;
    }
    
    .voice-header {
        text-align: center;
        padding: 0 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .voice-title {
        font-family: 'Cinzel', serif;
        font-weight: 700;
        font-size: 14px;
        line-height: 1.5;
        letter-spacing: 0.05em;
        color: #a38e3b;
        margin-bottom: 0;
        text-transform: uppercase;
    }
    
    .voice-subtitle {
        font-family: 'Yu Mincho', 'YuMincho', serif;
        font-weight: 600;
        font-size: 24px;
        line-height: 1.5;
        color: #424242;
    }
    
    .voice-dots {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin: 20px 0 15px;
    }
    
    .voice-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: #d0d0d0;
        border: none;
        cursor: pointer;
        transition: all 0.3s;
    }
    
    .voice-dot.active {
        background: #1b1b1b;
        transform: scale(1.2);
    }
    
    .voice-more-btn {
        display: flex;
        justify-content: center;
        margin-top: 40px;
    }
    
    .voice-more-button {
        font-family: 'Cinzel', serif;
        font-size: 10px;
        font-weight: 700;
        color: #1b1b1b;
        text-transform: uppercase;
        text-decoration: none;
        border: 1px solid #1b1b1b;
        border-radius: 100px;
        padding: 8px 27px;
        transition: all 0.3s;
    }
    
    .voice-more-button:hover {
        background: #1b1b1b;
        color: #ffffff;
    }
    
    /* Voice モバイル版カードスタイル調整 */
    .voice-card {
        padding: 0;
    }
    
    .voice-image {
        width: 240px;
        height: 240px;
        margin: 5px auto 0;
        position: relative;
        z-index: 1;
    }
    
    .voice-label {
        display: block;
        position: absolute;
        top: 5px;
        right: -5px;
        font-family: 'Cinzel', sans-serif;
        font-weight: 900;
        font-size: 20px;
        color: #1b1b1b;
        writing-mode: vertical-rl;
        text-orientation: mixed;
        line-height: 1.5;
        z-index: 2;
    }
    
    .voice-content {
        padding: 4px 20px 20px;
        text-align: justify;
    }
    
    .voice-text {
        font-family: 'Zen Kaku Gothic Antique', sans-serif;
        font-weight: 500;
        font-size: 10px;
        line-height: 1.5;
        color: #1b1b1b;
        margin-bottom: 20px;
        text-align: justify;
    }
    
    .voice-info {
        font-family: 'Zen Kaku Gothic Antique', sans-serif;
        font-size: 10px;
        font-weight: 500;
        line-height: 1.5;
        color: #1b1b1b;
        display: flex;
        justify-content: flex-end;
        gap: 11px;
    }
    
    /* Voice Carousel Container */
    .voice-carousel-wrapper {
        position: relative;
        height: 339px;
        overflow: hidden;
        width: 100%;
    }
    
    #voiceCarousel {
        display: flex;
        gap: 22px;
        height: 100%;
        transition: transform 0.3s ease;
        padding: 0 71px;
        width: max-content;
    }
    
    .voice-card {
        flex: 0 0 250px;
        height: 339px;
        background: #ffffff;
        box-shadow: -4px 4px 4px 0px rgba(0, 0, 0, 0.25);
        position: relative;
        overflow: hidden;
        padding: 0;
    }
    
    .voice-card.small,
    .voice-card.large {
        /* Reset any PC styles */
        width: 250px;
        height: 339px;
        transform: none;
    }
    
    /* Carousel Navigation */
    .voice-carousel-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 40px;
        height: 40px;
        background: transparent;
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 2;
        padding: 0;
    }
    
    .voice-carousel-nav-left {
        left: 25px;
    }
    
    .voice-carousel-nav-right {
        right: 25px;
    }
    
    .voice-carousel-nav-circle {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.8);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .voice-carousel-nav-arrow {
        width: 12px;
        height: 12px;
        border-top: 2px solid #333;
        border-right: 2px solid #333;
    }
    
    .voice-carousel-nav-left .voice-carousel-nav-arrow {
        transform: rotate(-135deg);
        margin-left: 2px;
    }
    
    .voice-carousel-nav-right .voice-carousel-nav-arrow {
        transform: rotate(45deg);
        margin-right: 2px;
    }
    
    /* Staff Section Mobile */
    .staff-section {
        background: #1b1b1b;
        height: 616px;
        padding: 56px 0 60px;
        position: relative;
        overflow: hidden;
    }
    
    .staff-section .section-bg {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        z-index: 0;
        opacity: 0.7;
    }
    
    .staff-section .container {
        position: relative;
        z-index: 1;
        height: 100%;
        display: flex;
        flex-direction: column;
        padding: 0 25px;
    }
    
    .staff-header {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .staff-title {
        font-family: 'Cinzel', serif;
        font-weight: 700;
        font-size: 12px;
        line-height: 1.5;
        letter-spacing: 0.05em;
        color: #a38e3b;
        margin-bottom: 0;
        text-transform: uppercase;
    }
    
    .staff-subtitle {
        font-family: 'Yu Mincho', 'YuMincho', serif;
        font-weight: 600;
        font-size: 18px;
        line-height: 1.5;
        color: #ffffff;
    }
    
    .staff-grid {
        display: grid;
        grid-template-columns: repeat(2, 150px);
        grid-template-rows: repeat(3, 120px);
        gap: 8px;
        justify-content: center;
    }
    
    .staff-card {
        width: 150px;
        height: 120px;
        position: relative;
    }
    
    .staff-image {
        width: 100%;
        height: 100%;
/*         background: #d9d9d9; */
        margin-bottom: 0;
        position: relative;
    }
    
    .staff-info {
        position: absolute;
        bottom: 5px;
        left: 5px;
        text-align: left;
    }
    
    .staff-location {
        font-family: 'Zen Kaku Gothic Antique', sans-serif;
        font-weight: 700;
        font-size: 8px;
        color: #ffffff;
        margin-bottom: 0;
        line-height: 1.5;
    }
    
    .staff-name {
        font-family: 'Zen Kaku Gothic Antique', sans-serif;
        font-weight: 700;
        font-size: 10px;
        color: #ffffff;
        margin: 0;
        line-height: 1.5;
    }
    
    .staff-more-btn {
        display: flex;
        justify-content: center;
        margin-top: auto;
    }
    
    .staff-more-button {
        font-family: 'Cinzel', serif;
        font-size: 10px;
        font-weight: 700;
        color: #ffffff;
        text-transform: uppercase;
        text-decoration: none;
        border: 1px solid #ffffff;
        border-radius: 100px;
        padding: 8px 27px;
        transition: all 0.3s;
    }
    
    .staff-more-button:hover {
        background: #ffffff;
        color: #1b1b1b;
    }
    
    /* Column Section Mobile */
    .column-section {
        background: #1b1b1b;
        padding: 56px 0 60px;
        height: 566px;
        position: relative;
        overflow: hidden;
    }
    
    .column-section .container {
        position: relative;
        height: 100%;
        padding: 0 10px;
        display: flex;
        flex-direction: column;
    }
    
    .column-header {
        text-align: center;
        padding: 0 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0;
    }
    
    .column-title {
        font-family: 'Cinzel', serif;
        font-weight: 700;
        font-size: 14px;
        line-height: 1.5;
        letter-spacing: 0.05em;
        color: #a38e3b;
        margin-bottom: 0;
        text-transform: uppercase;
    }
    
    .column-subtitle {
        font-family: 'Yu Mincho', 'YuMincho', serif;
        font-weight: 600;
        font-size: 24px;
        line-height: 1.8;
        color: #ffffff;
        margin: 0;
    }
    
    /* Column Carousel */
    .column-carousel-wrapper {
        position: relative;
        height: 187px;
        margin-bottom: 60px;
        overflow: hidden;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
    }

    .column-grid {
        display: flex;
        gap: 22px;
        height: 100%;
        transition: transform 0.3s ease;
        padding: 0 60px;
        width: max-content;
    }

    .column-item {
        flex: 0 0 319px;
        height: 187px;
        position: relative;
        overflow: hidden;
        background: transparent;
    }

    .column-image {
        width: 100%;
        height: 100%;
        position: relative;
        overflow: hidden;
    }

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

    /* Column content below carousel */
    .column-content-wrapper {
        width: 100vw !important;
        margin: 0 0 32px 0 !important;
        padding: 0 60px !important;
        margin-left: calc(-50vw + 50%) !important;
    }

    .column-item-title {
        font-family: 'Zen Kaku Gothic Antique', sans-serif;
        font-weight: 700;
        font-size: 14px;
        line-height: 1.5;
        color: #ffffff;
        margin-bottom: 8px;
    }

    .column-excerpt {
        font-family: 'Zen Kaku Gothic Antique', sans-serif;
        font-weight: 500;
        font-size: 10px;
        line-height: 1.5;
        color: #ffffff;
        margin: 0;
    }

    /* Hide read more link on mobile */
    .read-more-link {
        display: none;
    }

    /* Carousel Navigation */
    .column-carousel-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 50%;
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 2;
        padding: 0;
    }

    .column-carousel-nav-left {
        left: 20px;
    }

    .column-carousel-nav-right {
        right: 20px;
    }

    .column-carousel-nav-circle {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(0, 0, 0, 0.7);
        border: 2px solid #fff;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .column-carousel-nav-arrow {
        width: 12px;
        height: 12px;
        border-top: 2px solid #fff;
        border-right: 2px solid #fff;
    }

    .column-carousel-nav-left .column-carousel-nav-arrow {
        transform: rotate(-135deg);
        margin-left: 2px;
    }

    .column-carousel-nav-right .column-carousel-nav-arrow {
        transform: rotate(45deg);
        margin-right: 2px;
    }
    
    .column-grid {
        display: flex;
        gap: 22px;
        height: 100%;
        transition: transform 0.3s ease;
        padding: 0;
        width: max-content;
    }
    
    .column-item {
        flex: 0 0 319px;
        height: 187px;
        position: relative;
        overflow: hidden;
        background: transparent;
    }
    
    .column-image {
        width: 100%;
        height: 100%;
        position: relative;
        overflow: hidden;
    }
    
    .column-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    /* Column content below carousel */
    .column-content-wrapper {
        width: 100vw !important;
        margin: 0 0 32px 0 !important;
        padding: 0 60px !important;
        margin-left: calc(-50vw + 50%) !important;
    }
    
    .column-item-title {
        font-family: 'Zen Kaku Gothic Antique', sans-serif;
        font-weight: 700;
        font-size: 14px;
        line-height: 1.5;
        color: #ffffff;
        margin-bottom: 8px;
    }
    
    .column-excerpt {
        font-family: 'Zen Kaku Gothic Antique', sans-serif;
        font-weight: 500;
        font-size: 10px;
        line-height: 1.5;
        color: #ffffff;
        margin: 0;
    }
    
    /* Hide read more link on mobile */
    .read-more-link {
        display: none;
    }
    
    
    
    /* Side overlays for carousel */
    .column-carousel-overlay-left,
    .column-carousel-overlay-right {
        display: none;
    }
    
    /* MORE button */
    .column-more-btn {
        display: flex;
        justify-content: center;
        margin-top: auto;
    }
    
    .column-more-button {
        font-family: 'Cinzel', serif;
        font-size: 10px;
        font-weight: 700;
        color: #ffffff;
        text-transform: uppercase;
        text-decoration: none;
        border: 1px solid #ffffff;
        border-radius: 100px;
        padding: 8px 27px;
        transition: all 0.3s;
    }
    
    .column-more-button:hover {
        background: #ffffff;
        color: #1b1b1b;
    }
    
    /* Contact Section Mobile */
    .contact-section {
        background: #F5F5F5;
        padding: 60px 20px;
    }
    
    .contact-content {
        display: block;
        text-align: center;
    }
    
    .contact-title {
        font-family: 'Zen Kaku Gothic Antique', sans-serif;
        font-weight: 700;
        font-size: 22px;
        line-height: 1.5;
        letter-spacing: 0.08em;
        color: #1b1b1b;
        margin-bottom: 32px;
    }
    
    .contact-company {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        margin-bottom: 16px;
    }
    
    .company-logo {
        width: 40px;
        height: 40px;
    }
    
    .company-name {
        font-family: 'Zen Kaku Gothic Antique', sans-serif;
        font-weight: 700;
        font-size: 16px;
        line-height: 1.5;
        color: #1b1b1b;
    }
    
    .contact-info {
        margin-bottom: 32px;
    }
    
    .contact-info p {
        font-family: 'Zen Kaku Gothic Antique', sans-serif;
        font-size: 13px;
        line-height: 1.8;
        color: #666666;
        margin-bottom: 4px;
    }
    
    .contact-buttons {
        display: flex;
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }
    
    .contact-btn {
        width: 100%;
        max-width: 320px;
        font-family: 'Zen Kaku Gothic Antique', sans-serif;
        font-weight: 700;
        font-size: 16px;
        padding: 16px 24px;
        border-radius: 50px;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        transition: all 0.3s ease;
    }
    
    .contact-btn.primary {
        background: #C00707;
        color: #FFFFFF;
        box-shadow: 0 4px 12px rgba(192, 7, 7, 0.25);
    }
    
    .contact-btn.secondary {
        background: #FFFFFF;
        color: #C00707;
        border: 2px solid #C00707;
    }
    
    /* View More Buttons Mobile */
    .view-more {
        font-family: 'Zen Kaku Gothic Antique', sans-serif;
        font-weight: 700;
        font-size: 14px;
        padding: 12px 40px;
        margin-top: 32px;
        border: 2px solid #1b1b1b;
        background: transparent;
        color: #1b1b1b;
        border-radius: 50px;
        transition: all 0.3s ease;
    }
    
    .view-more:hover {
        background: #1b1b1b;
        color: #FFFFFF;
    }
    
    /* Gallery Indicators Mobile */
    .gallery-indicators {
        display: flex;
        justify-content: center;
        gap: 6px;
        margin-top: 16px;
    }
    
    .gallery-dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: #CCCCCC;
        transition: all 0.3s ease;
    }
    
    .gallery-dot.active {
        background: #C00707;
        width: 20px;
        border-radius: 3px;
    }
}

/* PC版のみ数字を大きくする */
@media (min-width: 1441px) {
    /* Achievement Section - PC版で数字を大きく */
    .achievement-value {
        font-size: 60px;  /* 42px → 60px */
    }
    
    .achievement-unit {
        font-size: 24px;  /* 18px → 24px */
    }
    
    .achievement-rapid {
        font-size: 48px;  /* 32px → 48px */
    }
}

/* Footer Section */
.footer-section {
    background-color: #F5F5F5;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    position: relative;
}

.footer-section .container {
    width: 100%;
    max-width: 1200px;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.footer-section .site-footer {
    margin: 0;
    padding: 0;
    background: transparent;
    width: 100%;
}

/* モバイル版フッター */
@media (max-width: 1440px) {
    .footer-section {
        display: block;
        height: auto;
        padding: 40px 0;
        background-color: #F5F5F5;
    }
    
    .footer-section .container {
        height: auto;
        padding: 0 20px;
    }
    
    /* フルページナビゲーションを非表示 */
    .fullpage-nav {
        display: none !important;
    }
}

/* デスクトップ版のスタッフセクション専用設定 */
@media (min-width: 1441px) {
    .staff-info {
        bottom: 10px;
    }
    
    .staff-location,
    .staff-name {
        text-shadow: 0px 0px 2px rgba(0, 0, 0, 0.6);
    }
}

/* モバイル版スタッフモーダル */
@media (max-width: 1440px) {
    .staff-modal-content {
        width: 95%;
        height: auto;
        max-height: 90vh;
        margin-top: 0;
        padding-top: 0;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    
    .staff-modal-body {
        min-height: auto;
        display: flex;
        flex-direction: column;
        height: 100%;
        margin-top: 0;
    }
    
    .staff-modal-top {
        flex-direction: row;
        flex: 0 0 auto;
        height: 320px;
    }
    
    .staff-modal-left {
        flex: 0 0 35%;
    }
    
    .staff-modal-right {
        flex: 1;
        padding: 15px 20px 15px 15px;
        overflow-y: visible;
    }
    
    .staff-modal-header {
        margin-bottom: 12px;
    }
    
    .staff-modal-name {
        font-size: 20px;
    }
    
    .staff-modal-reading {
        font-size: 11px;
    }
    
    .staff-modal-position {
        font-size: 12px;
        margin-bottom: 4px;
    }
    
    .staff-modal-details {
        margin-bottom: 0;
    }
    
    .staff-detail-row {
        margin-bottom: 4px;
    }
    
    .staff-detail-label {
        flex: 0 0 85px;
        font-size: 10px;
        padding: 2px 4px;
    }
    
    .staff-detail-value {
        font-size: 11px;
        padding: 2px 0;
    }
    
    .staff-modal-messages {
        flex: 1;
        padding: 15px 20px;
        margin: 15px 15px 15px 15px;
        overflow-y: auto;
    }
    
    .staff-message-section {
        margin-bottom: 12px;
    }
    
    .staff-message-title {
        font-size: 13px;
        margin-bottom: 6px;
        padding-bottom: 4px;
    }
    
    .staff-message-content {
        font-size: 11px;
        line-height: 1.5;
    }
}

/* モバイル版voiceセクション - 横並びカルーセル */
@media (max-width: 1440px) {
    .voice-slider {
        padding: 20px 0;
        overflow: hidden;
        position: relative;
    }
    
    .voice-slider .voice-cards {
        display: flex !important;
        justify-content: flex-start !important;
        align-items: center !important;
        gap: 30px !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        padding: 0 20px !important;
        transition: transform 0.3s ease !important;
    }
    
    .voice-slider .voice-cards .voice-card {
        flex: 0 0 320px !important;
        width: 320px !important;
        height: 200px !important;
        background: #ffffff !important;
        border-radius: 0 !important;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1) !important;
        margin: 0 !important;
        display: block !important;
        overflow: hidden !important;
        position: relative !important;
    }
    
    /* モバイル版voice矢印 */
    .mobile-voice-nav {
        position: absolute !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        width: 40px !important;
        height: 40px !important;
        background: #ffffff !important;
        border: 2px solid #B8860B !important;
        border-radius: 50% !important;
        cursor: pointer !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        z-index: 10 !important;
        transition: none !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
    }
    
    .mobile-voice-nav:hover {
        background: #ffffff !important;
        transform: translateY(-50%) !important;
    }
    
    .mobile-voice-nav:active {
        background: #B8860B !important;
        transform: translateY(-50%) !important;
        transition: background 0.05s ease !important;
    }
    
    .mobile-voice-nav:active svg path {
        stroke: #ffffff !important;
    }
    
    .mobile-voice-nav.voice-nav-prev {
        left: 10px !important;
    }
    
    .mobile-voice-nav.voice-nav-next {
        right: 10px !important;
    }
    
    .mobile-voice-nav svg {
        width: 18px !important;
        height: 18px !important;
    }
    
    .mobile-voice-nav svg path {
        stroke: #B8860B !important;
    }
    
    .voice-slider .voice-card .voice-card-inner {
        padding: 0 !important;
        height: 100% !important;
        display: flex !important;
        flex-direction: row !important;
        position: relative !important;
        overflow: hidden !important;
    }
    
    .voice-slider .voice-card .voice-card-header {
        position: relative !important;
        top: auto !important;
        right: auto !important;
        z-index: 3 !important;
        display: flex !important;
        align-items: baseline !important;
        gap: 6px !important;
        margin-bottom: 12px !important;
        justify-content: flex-start !important;
        padding-bottom: 8px !important;
    }
    
    .voice-slider .voice-card .voice-card-header::after {
        content: '' !important;
        position: absolute !important;
        bottom: 0 !important;
        left: 0 !important;
        transform: none !important;
        width: 60px !important;
        height: 2px !important;
        background: #B8860B !important;
    }
    
    .voice-card-title {
        font-family: 'Cinzel', serif !important;
        font-size: 14px !important;
        font-weight: 700 !important;
        color: #B8860B !important;
    }
    
    .voice-card-number {
        font-family: 'Cinzel', serif !important;
        font-size: 18px !important;
        font-weight: 700 !important;
        color: #B8860B !important;
    }
    
    .voice-slider .voice-card .voice-image {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        width: 40% !important;
        height: 100% !important;
        border-radius: 0 !important;
        margin: 0 !important;
        overflow: hidden !important;
        background: transparent !important;
        z-index: 1 !important;
        flex-shrink: 0 !important;
    }
    
    .voice-slider .voice-card .voice-image img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }
    
    .voice-slider .voice-card .voice-content {
        position: relative !important;
        right: auto !important;
        top: auto !important;
        width: 60% !important;
        height: 100% !important;
        padding: 15px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        z-index: 2 !important;
        background: #ffffff !important;
    }
    
    .voice-slider .voice-card .voice-text {
        font-family: 'Zen Kaku Gothic Antique', sans-serif !important;
        font-size: 11px !important;
        line-height: 1.4 !important;
        color: #333 !important;
        margin-bottom: 12px !important;
        flex: 1 !important;
        text-align: left !important;
        overflow: visible !important;
        display: block !important;
        -webkit-line-clamp: none !important;
        -webkit-box-orient: initial !important;
    }
    
    .voice-slider .voice-card .voice-info {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 8px !important;
        font-family: 'Zen Kaku Gothic Antique', sans-serif !important;
        font-size: 10px !important;
        font-weight: 500 !important;
        color: #666 !important;
        line-height: 1.2 !important;
        justify-content: flex-end !important;
        align-items: center !important;
        margin-top: auto !important;
        flex-shrink: 0 !important;
    }
    
    .voice-slider .voice-card .voice-info span {
        background: #ffffff !important;
        padding: 1px 6px !important;
        border-radius: 0 !important;
        font-size: 8px !important;
        line-height: 1.1 !important;
        border: 1px solid #e0e0e0 !important;
    }
}
