     

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

        .hero-content p {
            font-size: 16px;
            margin-bottom: 30px;
            line-height: 1.6;
            
        }

        .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: #f4792b;
            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;
            
            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;
           
        }

        .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_2 {
    display: inline-block;
    color: #f4792b;
    font-size: 12px;
    font-weight: 500;
    padding: 2px 8px;
    border-radius: 12px;
    margin-bottom: 2px;
    background: #fff;
    border: 1px solid #f4792b;
}

.property-free-label {
    display: inline-block;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    padding: 2px 8px;
    border-radius: 12px;
    margin-bottom: 2px;
    background: #f4792b;
}



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




        

        @media (min-width:800px) {
        }



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














        /* 2025.08.24 new */


        /* ヘッダー全体 */
.pc_site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background-color: #f7f6f4;
    border-bottom: 1px solid #ddd;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08); /* ← スクロール時に影が出て少し浮く */
  }
  
  
  /* 中央揃え用コンテナ */
  .header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center; /* 追加で中央寄せ */
}
  
  /* 1段目：ロゴ + SNS + TEL + CTA */
  .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
  }
  
  /* 2段目：メニュー */
  .nav-menu {
    display: inline-flex;
    align-items: center;
    gap: 54px;
    height: 40px;
  }

  .nav-menu a {
    text-decoration: none;
    color: #575757;
    font-weight: 600;
    font-size: 14px;
    padding: 0 8px;
    position: relative;
    transition: color 0.3s ease; /* ✅ opacityじゃなく color にする */
  }

  .nav-menu a:hover {
    color: #F4792B;
  }
  

  
  /* 縦区切り線を保つ場合 */
  .nav-menu a:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -32px;
    top: 50%;
    transform: translateY(-50%);
    height: 16px;
    width: 1px;
    background-color: #ccc;
    
  }

  .external-icon {
    height: 14px;           /* アイコンサイズ調整 */
    width: auto;
    vertical-align: middle; /* テキスト中央に揃える */
    margin-bottom: 4px;
  }

  
  
  /* 左セクション */
  .left-section {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  
  /* SNSアイコン */
  .sns-icons{
    display: flex;
    gap: 8px; /* ← ここでアイコンの間隔を調整 */
  }
  .sns-icons img {
    height: 25px;
    transition: opacity 0.2s ease; /* ← フェード効果追加 */
  }
  
  .sns-icons img :hover{
    opacity: 0.6; /* ← hover時に薄くする */
  }

/* すべてのSNSアイコン画像にフェード */
.sns_logo {
    transition: opacity 0.3s ease;
  }
  
  .sns_logo:hover {
    opacity: 0.6;
  }

  
  /* ロゴ */
  .header_logo {
    height: 40px;
  }
  
  /* 右セクション（TEL＋ボタン） */
  .right-section {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  
  .tel-box {
    /* display: flex;
    flex-direction: column; */
    line-height: 1.2;
  }
  
  .tel-icon {
    height: 32px;
  }
  
  .tel-number {
    color: #F4792B;
    font-size: 38px;
    font-weight: bold;
    letter-spacing: 0.00;
  }
  
  .tel-hours {
    font-size: 12px;
    color: #666;
    letter-spacing: 0.00;
  }
  
  .cta-button img {
    margin-top: 12px;
    width: 210px;
    transition: opacity 0.3s ease; /* フェード用 */
  }

  .cta-button:hover img {
    opacity: 0.8; /* ホバー時に少し薄く */
  }

  .header_logo{
    margin-top: 12px;
    /* width: 210px; */
    transition: opacity 0.2s ease; /* フェード用 */
  }

  .header_logo:hover{
    opacity: 0.6; /* ホバー時に少し薄く */
  }


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