/* ========================================
   リセット & ベーススタイル
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.8;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
}

/* 会社名専用フォント（テロップ明朝風） */
.company-name,
.footer-logo {
    font-family: 'Shippori Mincho', 'Noto Serif JP', serif !important;
    letter-spacing: 0.02em;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ========================================
   コンテナ
   ======================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   ヘッダー
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-image {
    height: 50px;
    width: auto;
}

.logo span {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
    letter-spacing: 0.02em;
}

.nav {
    display: block;
}

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

.nav-link {
    font-weight: 500;
    color: #333;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #C9B8A3 0%, #D9CCB9 100%);
    transition: width 0.3s ease;
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ========================================
   ヒーローセクション（オーバーレイなし）
   ======================================== */
.hero {
    margin-top: 80px;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-no-overlay {
    background: none;
}

.hero-image-full {
    width: 100%;
    position: relative;
}

.hero-image-full img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* ========================================
   物件情報セクション
   ======================================== */
.rental-preview {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.rental-preview .container {
    max-width: 1200px;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #C9B8A3 0%, #D9CCB9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.property-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.property-grid-nine {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 20px;
}

@media (min-width: 1200px) {
    .property-grid-nine {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 24px;
    }
}

@media (max-width: 992px) and (min-width: 577px) {
    .property-grid-nine {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px;
    }
}

.property-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.property-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.property-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.property-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    z-index: 10;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.property-badge.sale {
    background: #4CAF50;
}

.property-badge.rent {
    background: #2196F3;
}
    height: 240px;
    overflow: hidden;
    position: relative;
}

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

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

.property-info {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.property-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #333;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.property-price {
    display: none;
}

.property-details {
    display: none;
}

.property-access {
    padding-top: 0;
    border-top: none;
    font-size: 0.85rem;
    color: #888;
    margin-top: 0;
}

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

/* ========================================
   LINE公式アカウント登録セクション
   ======================================== */
.line-registration {
    padding: 60px 0;
    background-color: #fff;
}

.line-banner-link {
    display: block;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
}

.line-banner-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.line-banner-image {
    width: 100%;
    height: auto;
    display: block;
}

/* ========================================
   物件一覧ページ
   ======================================== */
.property-list-page {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.property-list-header {
    margin-bottom: 40px;
    text-align: center;
}

.property-count {
    font-size: 1.2rem;
    color: #666;
    font-weight: 500;
}

.property-count span {
    font-size: 1.8rem;
    font-weight: 700;
    color: #C9B8A3;
    margin: 0 8px;
}

.property-grid-page {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 24px;
}

/* ========================================
   ページヒーロー（ページタイトル）
   ======================================== */
.page-hero {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, #C9B8A3 0%, #D9CCB9 100%);
    color: #4A4238;
    text-align: center;
    margin-top: 80px;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.page-subtitle {
    font-size: 1.2rem;
    color: rgba(74, 66, 56, 0.8);
}

/* ========================================
   会社概要ページ
   ======================================== */
.about-section {
    padding: 80px 0;
    background-color: #fff;
}

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

.about-description {
    font-size: 1.1rem;
    line-height: 2;
    color: #666;
    margin-top: 20px;
}

.company-info-table {
    max-width: 900px;
    margin: 0 auto 80px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

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

.info-table tr {
    border-bottom: 1px solid #f0f0f0;
}

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

.info-table th {
    background-color: #f8f9fa;
    padding: 20px 24px;
    text-align: left;
    font-weight: 600;
    color: #333;
    width: 30%;
    vertical-align: top;
}

.info-table td {
    padding: 20px 24px;
    color: #666;
    line-height: 1.8;
}

.info-table td a {
    color: #C9B8A3;
    text-decoration: none;
    font-weight: 500;
}

.info-table td a:hover {
    text-decoration: underline;
}

.access-section {
    max-width: 1000px;
    margin: 0 auto;
}

.access-section .section-title {
    text-align: center;
    margin-bottom: 40px;
}

.access-info {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: start;
}

.access-text h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
    margin-top: 24px;
}

.access-text h4:first-child {
    margin-top: 0;
}

.access-text p {
    color: #666;
    line-height: 1.8;
}

.map-placeholder {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.services-section {
    margin-top: 80px;
    padding-top: 80px;
    border-top: 1px solid #e0e0e0;
}

.services-section .section-title {
    text-align: center;
    margin-bottom: 40px;
}

.services-image-wrapper {
    max-width: 1000px;
    margin: 0 auto 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.services-image {
    width: 100%;
    height: auto;
    display: block;
}

.services-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.services-intro-text {
    font-size: 1.05rem;
    line-height: 2;
    color: #666;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-detail-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.service-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.service-detail-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-detail-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 16px;
}

.service-detail-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #666;
}

/* ========================================
   事業内容詳細ページ
   ======================================== */
.services-detail {
    padding: 80px 0;
    background-color: #fff;
}

.services-image-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.services-image {
    width: 100%;
    height: auto;
    display: block;
}

.services-description {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.services-intro {
    text-align: center;
    margin-bottom: 60px;
}

.services-intro-text {
    font-size: 1.1rem;
    line-height: 2;
    color: #666;
    margin-top: 20px;
}

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

.service-detail-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.service-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.service-detail-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-detail-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #333;
}

.service-detail-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
}

/* ========================================
   事業内容セクション
   ======================================== */
.services {
    padding: 80px 0;
    background-color: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.service-card {
    text-align: center;
    padding: 40px 30px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.service-card:hover {
    background: linear-gradient(135deg, #C9B8A3 0%, #D9CCB9 100%);
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(201, 184, 163, 0.3);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #333;
    transition: color 0.3s ease;
}

.service-card:hover .service-title {
    color: #4A4238;
}

.service-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    transition: color 0.3s ease;
}

.service-card:hover .service-description {
    color: rgba(74, 66, 56, 0.9);
}

/* ========================================
   会社紹介プレビューセクション
   ======================================== */
.about-preview {
    padding: 80px 0;
    background: linear-gradient(135deg, #C9B8A3 0%, #D9CCB9 100%);
    color: #4A4238;
}

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

.about-preview .section-title {
    color: #4A4238;
    -webkit-text-fill-color: #4A4238;
    text-align: left;
    margin-bottom: 20px;
}

.about-preview-description {
    font-size: 1.1rem;
    line-height: 2;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.95);
}

.about-preview-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.info-item {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

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

.info-label {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.8);
}

.info-value {
    font-size: 1.1rem;
    font-weight: 700;
}

/* ========================================
   不動産サービス・店舗のご案内セクション
   ======================================== */
.recommended-content {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

/* PC表示: 横3列×縦2行 */
@media (min-width: 993px) {
    .content-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 30px;
    }
}

.content-card {
    position: relative;
    height: 320px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.content-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

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

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

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

.content-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 70%, transparent 100%);
    padding: 30px 24px;
    color: #fff;
}

.content-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.content-subtitle {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

/* ========================================
   CTAセクション
   ======================================== */
.cta {
    padding: 80px 0;
    background-color: #fff;
}

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

.cta-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.cta-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   ボタン
   ======================================== */
.btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #C9B8A3 0%, #D9CCB9 100%);
    color: #4A4238;
    box-shadow: 0 4px 15px rgba(201, 184, 163, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(201, 184, 163, 0.4);
}

.btn-outline {
    border: 2px solid #C9B8A3;
    color: #4A4238;
    background: #C9B8A3;
}

.btn-outline:hover {
    background: #B8A793;
    color: #4A4238;
    border-color: #B8A793;
}

.btn-large {
    padding: 16px 48px;
    font-size: 1.1rem;
}

/* ========================================
   フッター
   ======================================== */
.footer {
    background-color: #2c3e50;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-address,
.footer-contact {
    margin-bottom: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.footer-social {
    margin-top: 20px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-links-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-links-list {
    list-style: none;
}

.footer-links-list li {
    margin-bottom: 10px;
}

.footer-links-list a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-links-list a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-license {
    font-size: 0.85rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

.footer-copyright {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ========================================
   レスポンシブ対応
   ======================================== */

/* PC（大画面） */
@media (min-width: 769px) {
    .property-grid-nine {
        grid-template-columns: repeat(3, 1fr) !important;
    }
    
    .nav {
        display: block !important;
        position: static !important;
        width: auto !important;
        height: auto !important;
        background-color: transparent !important;
        padding: 0 !important;
    }
    
    .mobile-menu-toggle {
        display: none !important;
    }
    
    .nav-list {
        display: flex !important;
        flex-direction: row !important;
        gap: 2rem !important;
    }
    
    .nav-link {
        padding: 0.5rem 0 !important;
        width: auto !important;
        text-align: left !important;
    }
}

/* タブレット */
@media (max-width: 768px) and (min-width: 577px) {
    .header-content {
        height: 70px;
    }

    .logo-image {
        height: 40px;
    }

    .logo span {
        font-size: 1.2rem;
    }

    .nav {
        position: fixed !important;
        top: 70px !important;
        left: -100% !important;
        width: 100% !important;
        height: calc(100vh - 70px) !important;
        background-color: rgba(255, 255, 255, 0.98) !important;
        transition: left 0.3s ease !important;
        padding: 40px 0 !important;
    }

    .nav.active {
        left: 0 !important;
    }

    .nav-list {
        flex-direction: column !important;
        align-items: center !important;
        gap: 0 !important;
    }

    .nav-link {
        display: block !important;
        padding: 20px !important;
        font-size: 1.1rem !important;
        width: 100% !important;
        text-align: center !important;
    }

    .mobile-menu-toggle {
        display: flex !important;
    }

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

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

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

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

    .about-preview-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .content-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px;
        max-width: 768px;
    }

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

    .property-grid-page {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .line-registration {
        padding: 40px 0;
    }

    .line-banner-wrapper {
        border-radius: 12px;
    }
}

/* ========================================
   物件フィルター
   ======================================== */

.property-filter {
    padding: 40px 0;
    background-color: #f8f9fa;
}

.filter-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 30px;
    border: 2px solid #C9B8A3;
    background-color: white;
    color: #4A4238;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background-color: #C9B8A3;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(201, 184, 163, 0.3);
}

.filter-btn.active {
    background-color: #C9B8A3;
    color: white;
}

@media (max-width: 768px) {
    .filter-buttons {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* スマートフォン */
@media (max-width: 576px) {
    .hero {
        margin-top: 70px;
    }

    .header-content {
        height: 70px;
    }

    .nav {
        position: fixed !important;
        top: 70px !important;
        left: -100% !important;
        width: 100% !important;
        height: calc(100vh - 70px) !important;
        background-color: rgba(255, 255, 255, 0.98) !important;
        transition: left 0.3s ease !important;
        padding: 40px 0 !important;
    }

    .nav.active {
        left: 0 !important;
    }

    .nav-list {
        flex-direction: column !important;
        align-items: center !important;
        gap: 0 !important;
    }

    .nav-link {
        display: block !important;
        padding: 20px !important;
        font-size: 1.1rem !important;
        width: 100% !important;
        text-align: center !important;
    }

    .mobile-menu-toggle {
        display: flex !important;
    }

    .page-hero {
        padding: 80px 0 50px;
        margin-top: 70px;
    }

    .page-title {
        font-size: 1.8rem;
    }

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

    .services-detail {
        padding: 50px 0;
    }

    .services-image-wrapper {
        border-radius: 8px;
        margin: 0 15px;
    }

    .services-description {
        padding: 50px 0;
    }

    .services-intro-text {
        font-size: 1rem;
        line-height: 1.8;
    }

    .services-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-detail-card {
        padding: 30px 20px;
    }

    .service-detail-icon {
        font-size: 2.5rem;
    }

    .service-detail-title {
        font-size: 1.2rem;
    }

    .service-detail-text {
        font-size: 0.95rem;
    }

    .logo-image {
        height: 35px;
    }

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

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

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

    .access-info {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .info-table th,
    .info-table td {
        padding: 16px;
        font-size: 0.95rem;
    }

    .info-table th {
        width: 35%;
    }

    .rental-preview {
        padding: 50px 0;
    }

    .rental-preview .container {
        padding: 0 15px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .property-grid,
    .services-grid,
    .content-grid {
        grid-template-columns: 1fr !important;
    }

    .property-grid-nine {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .property-grid-page {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .property-card {
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
    }

    .property-image {
        height: 200px;
    }

    .property-info {
        padding: 16px;
    }

    .property-name {
        font-size: 1.05rem;
        line-height: 1.5;
        -webkit-line-clamp: 2;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
        word-break: break-word;
    }

    .property-price {
        font-size: 1.3rem;
    }

    .property-price span {
        font-size: 0.9rem;
    }

    .property-access {
        font-size: 0.85rem;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .info-table th,
    .info-table td {
        display: block;
        width: 100%;
        padding: 12px 16px;
    }

    .info-table th {
        background-color: #C9B8A3;
        color: #fff;
        border-bottom: none;
    }

    .info-table td {
        border-bottom: 2px solid #f0f0f0;
        padding-bottom: 20px;
    }

    .about-section {
        padding: 50px 0;
    }

    .btn {
        width: 100%;
    }

    .footer-links {
        flex-direction: column;
        gap: 30px;
    }

    .line-registration {
        padding: 30px 0;
    }

    .line-banner-link {
        border-radius: 8px;
        margin: 0 10px;
    }

    .sp-only {
        display: inline;
    }
}

/* 極小スマートフォン */
@media (max-width: 400px) {
    .property-grid-nine {
        grid-template-columns: 1fr !important;
    }
    
    .property-card {
        width: 100%;
    }
    
    .property-image {
        height: 180px;
    }
    
    .property-name {
        font-size: 0.95rem;
    }
    
    .property-price {
        font-size: 1.2rem;
    }
}

@media (min-width: 577px) {
    .sp-only {
        display: none;
    }
}

/* タブレット専用: 不動産サービス・店舗のご案内を横2列 */
@media (min-width: 769px) and (max-width: 992px) {
    .recommended-content .content-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }
}

/* PC表示専用: 不動産サービス・店舗のご案内を横3列×縦2行 */
@media (min-width: 993px) {
    .recommended-content .content-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 30px !important;
        max-width: 100% !important;
    }
}

/* ========================================
   フローページ（住み替え・購入・売却など）
   ======================================== */
.flow-section {
    padding: 80px 0;
    background-color: #fff;
}

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

.flow-intro-text {
    font-size: 1.05rem;
    line-height: 2;
    color: #666;
}

.flow-steps {
    max-width: 900px;
    margin: 0 auto 80px;
}

.flow-step {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.flow-step:hover {
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.flow-step-number {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #C9B8A3 0%, #D9CCB9 100%);
    border-radius: 50%;
    color: #4A4238;
}

.step-num {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
}

.step-value {
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

.flow-step-content {
    flex: 1;
}

.flow-step-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
}

.flow-step-description {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
}

/* フローポイントセクション */
.flow-points {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 30px;
    background: linear-gradient(135deg, #C9B8A3 0%, #D9CCB9 100%);
    border-radius: 16px;
}

.flow-points-title {
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    color: #4A4238;
    margin-bottom: 40px;
}

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

.point-card {
    background: #fff;
    padding: 32px;
    border-radius: 12px;
    text-align: left;
}

.point-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.point-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.point-text {
    font-size: 1rem;
    line-height: 2;
    color: #555;
    letter-spacing: 0.3px;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .flow-step {
        flex-direction: column;
        gap: 20px;
        padding: 24px;
    }

    .flow-step-number {
        width: 80px;
        height: 80px;
        margin: 0 auto;
    }

    .step-value {
        font-size: 1.6rem;
    }

    .flow-step-title {
        font-size: 1.2rem;
        text-align: center;
    }

    .flow-step-description {
        font-size: 0.95rem;
        text-align: center;
    }

    .points-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .point-card {
        padding: 28px 24px;
    }
    
    .point-icon {
        font-size: 3rem;
        margin-bottom: 16px;
    }
    
    .point-title {
        font-size: 1.2rem;
        margin-bottom: 14px;
    }
    
    .point-text {
        font-size: 0.95rem;
        line-height: 1.9;
    }

    .flow-points {
        padding: 40px 20px;
    }

    .flow-points-title {
        font-size: 1.5rem;
    }
}

/* ========================================
   リフォーム例セクション
   ======================================== */
.renovation-examples {
    max-width: 1000px;
    margin: 80px auto 0;
}

.examples-title {
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    color: #333;
    margin-bottom: 40px;
}

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

.example-card {
    padding: 24px;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.example-card:hover {
    border-color: #C9B8A3;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.example-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
}

.example-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #666;
}

/* リフォーム例のレスポンシブ */
@media (max-width: 992px) {
    .examples-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .renovation-examples {
        margin: 60px auto 0;
    }

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

    .examples-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .example-card {
        padding: 20px;
    }

    .example-title {
        font-size: 1rem;
    }

    .example-text {
        font-size: 0.9rem;
    }
}

