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

        body {
            font-family: 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', Meiryo, sans-serif;
            background-color: #f5f5f5;
            padding-top: 80px;
        }

        .header {
            background-color: white;
            padding: 15px 0;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
        }

        .arrow-down {
          }
          

        .nav_outer{
            text-align: center;
        }

        /* Nav Text */
.header-nav-text {
  color: #5A4C49;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 16px; /* 114.286% */
  white-space: nowrap; /* Prevent text from wrapping to second line */
}

        .header-content {
            max-width: 1632px;
            font-family: 'Zen Maru Gothic', sans-serif;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 16px;
            margin: 0 auto;
        }

        .nav_right{
            display: flex;
            gap: 32px;
        }

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

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

        .nav {
            display: flex;
            gap: 30px;
        }

        .nav.mobile-hidden {
            display: none;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 10px;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: #333;
            margin: 3px 0;
            transition: 0.3s;
        }

        .mobile-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: white;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            flex-direction: column;
            padding: 20px;
            gap: 15px;
            z-index: 999;
        }

        .mobile-menu.active {
            display: flex;
        }

        .mobile-menu .nav-item {
            padding: 10px 0;
            border-bottom: 1px solid #eee;
        }

        .mobile-menu .contact-btn {
            margin-top: 10px;
            text-align: center;
        }

        .nav-item {
            color: #5a4c49;
            text-decoration: none;
            font-size: 15px;
            /* transition: color 0.3s; */
            /* font-weight:bold; */
            font-weight: 500;
            white-space: nowrap;
            display: inline-block; /* ← アニメーションに必要 */
            transition: color 0.3s ease, transform 0.3s ease; /* ← 追加 */
        }

        .nav-item:hover {
            transform: translateY(-2px); /* ← 浮くように */
        }

        .arrow-down:hover{
            /* color: #F4792B; */
        }

        .contact-btn {
            display: flex;
            width: 180px;
            height: 52px;
            padding: 21px 26px;
            justify-content: center;
            align-items: center;
            border-radius: 12px;
            border: 1px solid #FFF;
            background: #0FA8A0;
            /* box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.32); */
            cursor: pointer;
            margin-left: 10px;
            font-size: 0.9rem;
            text-decoration: none;
            color: white;
        }


        .contact-btn:hover {
            background-color: #45b7aa;
        }

        .hero {
            background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('images/maintop.jpg');

            background-size: cover;
            background-position: center;
            height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
        }

        .hero-content h1 {
            font-size: 36px;
            margin-bottom: 20px;
            font-weight: 600;
            font-family: 'Zen Maru Gothic', sans-serif;
        }

        .hero-content p {
            font-size: 16px;
            margin-bottom: 30px;
            line-height: 1.6;
            font-family: 'Zen Maru Gothic', sans-serif;
        }

        .search-btn {
            background-color: #ff6b6b;
            color: white;
            padding: 15px 30px;
            border: none;
            border-radius: 25px;
            font-size: 16px;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .search-btn:hover {
            background-color: #ff5252;
        }

        .container {
            max-width: 1120px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        .breadcrumb {
            margin-bottom: 30px;
            font-size: 14px;
            color: #666;
        }

        .breadcrumb a {
            /* color: #4ecdc4;
            text-decoration: none; */
        }

        .results-count {
            margin-bottom: 30px;
            font-size: 18px;
            font-weight: bold;
            color: #333;
        }

        .property-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 12px;
            margin-bottom: 40px;
            justify-content: center;
        }

        .property-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
            text-decoration: none;
        }

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

        .property-image {
            width: 100%;
            height: 200px;
            background-color: #e0e0e0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #999;
            font-size: 14px;
        }

        .property-info {
            padding: 20px;
        }

        .property-type {
            background-color: #ff6b6b;
            color: white;
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 12px;
            display: inline-block;
            margin-bottom: 10px;
        }

        .property-title {
            font-size: 16px;
            font-weight: bold;
            color: #333;
            margin-bottom: 6px;
            line-height: 1.4;
        }

        .property-price {
            font-size: 24px;
            font-weight: bold;
            color: #ff6b6b;
            margin-bottom: 4px;
        }

        .property-details {
            display: flex;
            gap: 12px;
            margin-bottom: 10px;
            font-size: 14px;
            color: #666;
        }

        .detail-item {
    display: flex;
    align-items: center;
    gap: 4px;
}

.detail-text {
    font-size: 12px;
    color: #666;
}

        .detail-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background-color: #D9D9D9;
            color: #626262;
            font-size: 12px;
        }

        .detail-badge.none {
            background-color: #ccc;
        }

        .property-location {
            font-size: 14px;
            color: #666;
            margin-bottom: 5px;
        }

        .property-access {
            font-size: 12px;
            color: #999;
        }

        .pagination {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 40px 0;
        }

        .page-btn {
            width: 40px;
            height: 40px;
            border: 1px solid #ddd;
            background: white;
            color: #666;
            text-decoration: none;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 4px;
            transition: all 0.3s;
        }

        .page-btn:hover {
            background-color: #4ecdc4;
            color: white;
            border-color: #4ecdc4;
        }

        .page-btn.active {
            background-color: #ff6b6b;
            color: white;
            border-color: #ff6b6b;
        }

        .contact-section {
            background: white;
            color: white;
            padding: 40px 0;
            text-align: center;
            /* margin: 40px 0; */
            position: sticky;
            top: 120px;
            left: 0;
        }

        .contact-content {
            max-width: 600px;
            margin: 0 auto;
        }

/* 
        .phone-number {
            font-size: 36px;
            font-weight: bold;
            margin: 20px 0;
        } */

        .consultation-btn {
            background-color: #4ecdc4;
            color: white;
            padding: 15px 30px;
            border: none;
            border-radius: 25px;
            font-size: 16px;
            cursor: pointer;
            margin-top: 20px;
            transition: background-color 0.3s;
        }

        .consultation-btn:hover {
            background-color: #45b7aa;
        }

        .footer {
            background-color: #525252;
            color: white;
            padding: 40px 0;
            width: 100%;
            border-radius:32px 32px 0 0;
            font-family: Zen Maru Gothic,sans-serif;
        }

        .footer-content {
            max-width: 1120px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            margin-bottom: 32px;
        }

        .footer-nav {
            
            justify-content: space-between;
            /* grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); */
            gap: 30px;
            margin-bottom: 6px;
        }

        .footer-nav h3 {
            font-size: 15px;
            margin-bottom: 15px;
            /* font-weight: 500; */
            color: white;
        }

        .footer-nav ul {
            list-style: none;
        }

        .footer-nav li {
            margin-bottom: 8px;
        }

        .footer-nav a {
            color: #ccc;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s;
        }

        .footer-nav a:hover {
            color: #4ecdc4;
        }

        .footer-nav2 {
            margin-top: 32px;
            /* display: flex; */
            justify-content: space-between;
            /* grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); */
            gap: 30px;
            margin-bottom: 6px;
        }


        .footer-nav2 a{
            list-style: none;
            font-size: 12px;
            color: #a1a1a1;
            text-decoration: none;
        }


        .footer-line{
            background: #a1a1a1;
            height: 2px;
            /* margin-top: 20px; */
            width: 100%;
            text-decoration: none;
        }

        .footer-bottom {
            border-top: 1px solid #555;
            padding-top: 20px;
            text-align: center;
            font-size: 14px;
            color: #999;
        }

        /* 初期状態で非表示 */
#mobile-menu {
    display: none;
    flex-direction: column;
    gap: 16px;
    padding: 20px;
    background-color: white;
  }
  
  /* 開いたとき表示 */
  #mobile-menu.open {
    display: flex;
  }
  
  /* ハンバーガー変形用（任意） */
  #hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
  }
  #hamburger.open span:nth-child(2) {
    opacity: 0;
  }
  #hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
  }
  /* ハンバーガーメニュー開いたときのメニューリスト */

  #mobile-menu {
    display: none;
    flex-direction: column;
    gap: 16px;
    padding: 40px 20px 20px;
    background-color: white;
    position: fixed;
    top: 80px; /* ← ヘッダーの高さに合わせる */
    left: 0;
    width: 100%;
    height: calc(100vh - 80px); /* ← ヘッダーの分を引いた高さ */
    z-index: 9999;
    overflow-y: auto;
}

#mobile-menu.open {
    display: block;
    padding: 40px 20px 20px;
    background-color: #fff;
    text-align: left;
}

#mobile-menu .nav-item {
    /* font-weight: bold; */
    font-weight: 600;
    font-size: 16px;
    padding: 18px 0;
    border-bottom: 1px solid #F4792B;
    color: #3d3d3d;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#mobile-menu .nav-item::after {
    content: "›";
    /* font-size: 18px; */
    /* color: #F4792B; */
}

/* 電話セクション */
.mobile-phone-section {
    text-align: center;
    margin-top: 40px;
}

.mobile-phone-section p {
    color: #333;
    /* margin-bottom: 10px; */
}

.mobile-phone-section .phone-number {
    color: #F4792B;
    font-size: 50px;
    font-weight: bold;
    line-height: 1.2;
}

.mobile-phone-section_ttl{
    font-size: 24px;
    font-weight: 600;
    margin-left: 6px;
}

.mobile-phone_flex{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 6px;
}
  
.mobile-phone_flex img{
    width: 24px;
    height: 24px;
}

.mobile-call-icon {
    display: none;
    margin-right: 10px;
}

.mobile-call-icon img {
    width: 28px;
    height: 28px;
}

/* .mobile_right{
    display: flex;
    align-items: center;
} */

.mobile-icons {
    display: none; /* PCでは非表示 */
    flex-direction: row;
    align-items: center;
    /* justify-content: center;
    margin: 0 auto; */
    /* gap: 12px; */
}

/* 電話アイコンのサイズ調整 */
.mobile-call-icon img {
    width: 26px;
    height: 26px;
}


.contact_btn{
    transition: opacity 0.2s ease-in-out;
}
.contact_btn:hover{
    opacity: 0.8;

}

.property-free-label {
    display: inline-block;
    border: 1px solid #0FA8A0;
    color: #0FA8A0;
    font-size: 12px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 12px;
    margin-bottom: 2px;
    background-color: #f0fffc; /* 背景少し薄めの緑 */
}



/* スマホビューで表示 */
@media (max-width: 1000px) {
    .mobile-icons {
        display: flex;
    }
}




        

        @media (min-width:800px) {
            .footer-nav{
            display: flex;
            }
        
            .footer-nav2{
                display: flex;
                }
        }


        @media (max-width: 1000px) {

            body{
                padding-top: 32px;
            }

            .header{
                padding:6px 0px;
            }


        .logo-image {
            height: 32px;
            width: auto;
        }
        
            .header-content {
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
            }

            .nav {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .contact-btn {
                display: none;
            }

            @media (max-width: 1000px) {
                .mobile-call-icon {
                    display: block;
                }
            }
            
        }

        @media (max-width: 600px) {
            .header-content {
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
            }

            .nav {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .contact-btn {
                display: none;
            }

            .hero-content h1 {
                font-size: 28px;
            }

            .container {
                padding: 40px 16px;
            }

            .property-grid {
                grid-template-columns: 1fr;
                gap: 12px;
                justify-content: center;
            }

            .property-card {
                width: 100%;
                max-width: none;
            }

            .phone-number {
                font-size: 28px;
            }

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

            .breadcrumb{
                display: none;
            }

            .footer-nav{
                /* display: flex; */

            }

            .footer-nav2 h3{
                margin-bottom: 12px;
            }

            @media (max-width: 1000px) {
                .mobile-call-icon {
                    display: block;
                }
            }
            

        
        }

        @media (min-width: 769px) and (max-width: 1120px) {
            .property-grid {
                grid-template-columns: repeat(4, 271px);
                gap: 12px;
                justify-content: center;
            }

            @media (max-width: 1000px) {
                .mobile-call-icon {
                    display: block;
                }
            }
            
        }