/* =========================
   共通
   ========================= */

.site-header {
    border-bottom: 1px solid #e5e5e5;
    background-color: #ffffff;
}

.header-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 8px 16px 0;
}

/* ハンバーガー制御チェックボックスは非表示 */
.nav-toggle {
    display: none;
}

/* =========================
   ヘッダー（PCレイアウト）
   ========================= */

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.header-logo a {
    text-decoration: none;
}

.header-logo__text {
    font-size: 22px;
    font-weight: 700;
    color: #333;
}

/* PC用アクション */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 13px;
}

.header-actions--sp {
    display: none;
    /* PCではSP用は非表示 */
}

.header-actions__item {
    white-space: nowrap;
}

.header-actions__tel-label {
    display: block;
    font-size: 11px;
    color: #777;
}

.header-actions__tel-number {
    font-size: 18px;
    font-weight: 700;
    color: #c0392b;
    text-decoration: none;
}

.header-actions__tel-number:hover {
    text-decoration: underline;
}

.header-actions__link {
    padding: 6px 12px;
    border-radius: 16px;
    text-decoration: none;
    font-size: 13px;
    border: 1px solid #ccc;
    color: #333;
}

.header-actions__link--contact {
    background-color: #f5f7fb;
    border-color: #b5c2e1;
}

.header-actions__link--login {
    background-color: #ffffff;
}

/* 2行目グローバルナビ */
.header-bottom {
    margin-top: 8px;
    padding-bottom: 8px;
}

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

.primary-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.primary-nav .menu {
    display: inline-flex;
    gap: 24px;
}

.primary-nav .menu-item a {
    display: block;
    padding: 8px 0;
    text-decoration: none;
    font-size: 14px;
    color: #333;
}

.primary-nav .menu-item a:hover {
    color: #c0392b;
}

/* =========================
   スマホレイアウト
   ========================= */

@media (max-width: 768px) {
    .header-inner {
        padding: 8px 12px;
    }

    .header-top {
        padding-bottom: 8px;
    }

    .header-actions--pc {
        display: none;
        /* スマホではPCアクション非表示 */
    }

    .header-actions--sp {
        display: flex;
        /* スマホでSPアクション表示 */
        gap: 8px;
    }

    .header-actions__icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        border: 1px solid #ddd;
        font-size: 16px;
        text-decoration: none;
        color: #333;
        background-color: #fff;
    }

    .header-actions__icon:hover {
        background-color: #f5f5f5;
    }

    /* ハンバーガー */
    .header-hamburger {
        display: inline-flex;
        flex-direction: column;
        justify-content: center;
        gap: 4px;
        width: 32px;
        height: 32px;
        border-radius: 4px;
        border: 1px solid #ddd;
        padding: 4px;
        cursor: pointer;
        margin-left: 4px;
    }

    .header-hamburger span {
        display: block;
        width: 100%;
        height: 2px;
        background-color: #333;
    }

    /* PCナビはスマホでは一旦縦に */
    .primary-nav .menu {
        display: block;
        text-align: left;
    }

    .primary-nav .menu-item a {
        padding: 10px 12px;
        border-top: 1px solid #eee;
    }

    .header-bottom {
        display: none;
        /* デフォルト非表示 → ハンバーガーONで表示 */
    }

    /* nav-toggle がONのときだけナビ表示 */
    .nav-toggle:checked~.header-inner .header-bottom {
        display: block;
    }
}

/* スライダー */
.top-slider {
    max-width: 100%;
    margin: 0 auto 100px;
    padding-bottom: 20px;
    background-color: #f9f6f1;
}

.main-swiper {
    margin-bottom: 40px;
}

.top-slider img {
    width: 100%;
    display: block;
    height: auto;
}

.main-swiper,
.main-swiper .swiper-slide {
    height: 50vh;
    min-height: 400px;
    max-height: 550px;
}

.main-swiper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =========================
   スライダー矢印（main-swiper用）
   ========================= */

.main-swiper .swiper-button-prev,
.main-swiper .swiper-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    aspect-ratio: 1 / 1;
    /* ← 強制的に正方形にする */
    border-radius: 50%;
    /* 真円 */
    background: rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    box-sizing: border-box;
}

/* 左右の位置調整（お好みで距離は変えてOK） */
.main-swiper .swiper-button-prev {
    left: 16px;
}

.main-swiper .swiper-button-next {
    right: 16px;
}

/* 矢印アイコン */
.main-swiper .swiper-button-prev:after,
.main-swiper .swiper-button-next:after {
    color: #fff;
    font-size: 20px;
    font-weight: bold;
}

/* hover */
.main-swiper .swiper-button-prev:hover,
.main-swiper .swiper-button-next:hover {
    background: rgba(0, 0, 0, 0.5);
}

/* スマホ用に少し小さく */
@media (max-width: 768px) {

    .main-swiper .swiper-button-prev,
    .main-swiper .swiper-button-next {
        width: 36px;
        height: 36px;
    }

    .main-swiper .swiper-button-prev:after,
    .main-swiper .swiper-button-next:after {
        font-size: 16px;
    }
}



/* サムネイル全体を中央配置 */
.thumbs-swiper {
    width: 100%;
    max-width: 1100px;
    /* 本文幅に合わせる */
    margin: 20px auto 0px;
    /* 上余白を入れて中央へ */
}

.thumbs-swiper .swiper-wrapper {
    justify-content: center;
}

/* サムネイルスライド */
.thumbs-swiper .swiper-slide {
    width: 200px !important;
    /* 固定幅で揃える */
    margin: 0 12px;
    /* ←→ の間隔 */
    opacity: 0.6;
}

/* サムネイル画像 */
.thumbs-swiper img {
    width: 100%;
    height: 80px;
    object-fit: cover;
}

/* 選択時 */
.thumbs-swiper .swiper-slide-thumb-active {
    opacity: 1;
}



/* 特徴ボックス */
.top-about,
.top-howto,
.top-new-properties,
.top-news {
    max-width: 1100px;
    margin: 0 auto 60px auto;
    padding: 0 16px;
}

.about-boxes,
.howto-boxes {
    display: flex;
    gap: 24px;
}

/* 新着物件 */
.property-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.mosaic img {
    filter: blur(4px);
}

/* =========================
   オクル不動産って？ セクション
   ========================= */

.top-about {
    max-width: 1100px;
    margin: 0 auto 200px;
    padding: 0 16px;
}

/* h2：中央＋下線 */
.top-about h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 50px;
}

.top-about h2::after {
    content: "";
    display: block;
    width: 150px;
    height: 5px;
    border-radius: 5px;
    background: #5d4025;
    margin: 0 auto;
}

/* リード：画像＋テキスト（flex） */
.about-lead {
    display: flex;
    gap: 24px;
    align-items: center;
    margin-bottom: 100px;
}

.about-lead-img {
    flex: 0 0 40%;
}

.about-lead-img img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.about-lead-text {
    flex: 1 1 auto;
}

.about-text {
    font-size: 18px;
    line-height: 1.9;
}

/* 3つの特徴ボックス */
.about-boxes {
    display: flex;
    gap: 24px;
}

.about-box {
    flex: 1 1 0;
    background: #f9f6f1;
    border-radius: 10px;
    padding: 20px 18px;
    text-align: center;
}

.about-box h3 {
    font-size: 120x;
    font-weight: 700;
    margin-bottom: 12px;
    color: #5d4025;
}

.about-box-img {
    margin-bottom: 12px;
}

.about-box-img img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.about-box-text {
    font-size: 14px;
    line-height: 1.8;
    text-align: left;
}

/* スマホ対応 */
@media (max-width: 768px) {
    .about-lead {
        flex-direction: column;
    }

    .about-lead-img {
        width: 100%;
    }

    .about-boxes {
        flex-direction: column;
    }
}

/* =========================
   ご利用方法 セクション
   ========================= */

.top-howto {
    max-width: 1100px;
    margin: 0 auto 200px;
    padding: 0 16px;
}

/* h2：中央＋太めの下線（top-about と同じ） */
.top-howto h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 50px;
}

.top-howto h2::after {
    content: "";
    display: block;
    width: 150px;
    height: 5px;
    border-radius: 5px;
    background: #5d4025;
    margin: 0 auto;
}

/* ボックス配置 */
.howto-boxes {
    display: flex;
    gap: 32px;
    margin-top: 40px;
}

/* 各ボックスのデザイン */
.howto-box {
    flex: 1 1 0;
    padding: 32px 28px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}


/* 売りたい（青） */
.howto-box:nth-child(1) {
    background: linear-gradient(135deg, #fafcfd 0%, #c8e7ff 100%);
    border-left: 8px solid #8ab7d9;
}

/* 買いたい（緑） */
.howto-box:nth-child(2) {
    background: linear-gradient(135deg, #f2faf5 0%, #c9f3db 100%);
    border-left: 8px solid #87c7a1;
}


/* 見出し */
/* .howto-box h3 {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 32px;
    color: #5d4025;
} */
/* h3全体 */
.howto-box h3 {
    font-size: 24px; /* ベースフォントは少し下げて */
    font-weight: 700;
    text-align: center;
    margin-bottom: 32px;
    color: #5d4025;
    line-height: 1.4;
}

/* 「売りたい」を強調する */
.howto-em {
    font-size: 36px;       /* ← ここで大きく強調 */
    font-weight: 700;
    position: relative;
    padding-top: 14px;     /* 傍点分のスペース */
    display: inline-block;
}

/* 傍点（てんてん）をつける */
.howto-em::before {
    content: "・・・・";   /* 必要な数に調整可能 */
    position: absolute;
    top: 0;
    left: 52%;
    transform: translateX(-50%);
    letter-spacing: 10px;   /* 点の間隔調整 */
    font-size: 24px;       /* 傍点の大きさ */
    color: red;
}



/* STEP 全体の横並び */
.howto-step {
    display: flex;
    gap: 16px;
    align-items: center;
    margin: 12px 0;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    width: 100%;
    height: 150px;
}

.howto-step-icon {
    width: 100px;
    height: 100px;
    background-color: red;
}

/* STEP のアイコン（左側） */
.howto-step-icon img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
}

/* STEP のテキスト（右側） */
.howto-step-text {
    font-size: 15px;
    line-height: 1.6;
    font-weight: 600;
    width: 300px;
}

.howto-step-text h4 {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 4px;
}

.howto-step-text p {
    font-size: 14px;
    font-weight: 400;
    margin: 0;
    line-height: 1.6;
}

.howto-arrow {
    text-align: center;
    font-size: 24px;
    color: #555;
    margin: 6px 0 12px;
}

.howto-step-uri {
    display: flex;
    gap: 16px;
    align-items: center;
    margin: 12px auto 40px auto;
    padding: 12px 14px;
    width: 100%;
    height: 200px;
}

.howto-step-uri-icon {
    width: 150px;
    height: 150px;
    background-color: red;
}

.howto-step-uri-icon img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
}

.howto-step-uri-text {
    width: 250px;
    text-align: center;
}

.howto-step-uri-text p {
    font-size: 24px;
    color: #5d4025;
    line-height: 1.9;
    font-weight: 700;
}

.howto-step-link {
    width: 100%;
    /* background-color: #c0392b; */
    text-align: center;
}

.howto-step-link p {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #5a1c00;
    font-weight: 700;
}

.howto-step-link p::before,
.howto-step-link p::after {
    width: 3px;
    height: 40px;
    background-color: #5a1c00;
    content: '';
}

.howto-step-link p::before {
    transform: rotate(-35deg);
    margin-right: 30px;
}

.howto-step-link p::after {
    transform: rotate(35deg);
    margin-left: 30px;
}


.howto-step-link a {
    display: block;
    width: 90%;
    padding: 10px;
    margin: 0 auto;
    background-color: #c0392b;
    border-radius: 50px;
    font-size: 18px;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.howto-step-link a:hover {
    opacity: 0.7;
}

/* スマホ対応 */
@media (max-width: 768px) {
    .howto-boxes {
        flex-direction: column;
        gap: 20px;
    }

    .howto-step {
        flex-direction: row;
        /* ← スマホでも横並びでOK */
    }
}

/* =========================
   新着物件 セクション
   ========================= */

.top-new-properties {
    max-width: 1100px;
    margin: 0 auto 200px;
    padding: 0 16px;
}

/* h2：中央＋太めの下線（top-about と同じ） */
.top-new-properties h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 50px;
}

.top-new-properties h2::after {
    content: "";
    display: block;
    width: 150px;
    height: 5px;
    border-radius: 5px;
    background: #5d4025;
    margin: 0 auto;
}

/* =========================
   お知らせ セクション
   ========================= */

.top-news {
    max-width: 1100px;
    margin: 0 auto 200px;
    padding: 0 16px;
}

/* h2：中央＋太めの下線（top-about と同じ） */
.top-news h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 50px;
}

.top-news h2::after {
    content: "";
    display: block;
    width: 150px;
    height: 5px;
    border-radius: 5px;
    background: #5d4025;
    margin: 0 auto;
}

.fs-36 {
    font-size: 42px;
}

/* =========================
   フッター
   ========================= */


   /* =======================
   フッター
   ======================= */

.site-footer {
    background-color: #5d4025;   /* メインカラー */
    color: #ffffff;
    padding: 60px 20px;
    margin-top: 120px;
    font-family: "Hiragino Sans", sans-serif;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

/* ロゴ部分 */
.footer-logo {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

/* 住所・会社情報 */
.footer-info p {
    margin: 3px 0;
    font-size: 14px;
    opacity: 0.9;
}

/* フッターナビ */
.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.footer-nav li {
    display: inline-block;
    margin: 0 14px;
}

.footer-nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
}

.footer-nav a:hover {
    opacity: 1;
    text-decoration: underline;
}

/* コピーライト */
.footer-copy {
    font-size: 12px;
    opacity: 0.7;
    margin-top: 25px;
}

/* スマホ対応 */
@media (max-width: 768px) {
    .footer-nav li {
        display: block;
        margin: 8px 0;
    }
}


/* =========================
   物件詳細ページ（上部レイアウト）
   ========================= */

.property-main {
    max-width: 1100px;
    margin: 60px auto 120px;
    padding: 0 16px;
}

.property-wrapper {
    margin-bottom: 60px;
}

/* タイトル＆カテゴリ */
.property-header {
    margin-bottom: 24px;
    border-bottom: 1px solid #e0d5c8;
    padding-bottom: 16px;
}

.property-header .property-title {
    font-size: 26px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.property-category-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.property-category-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 12px;
    line-height: 1;
    background-color: #f5f2e9;
    color: #5d4025;
}

.property-category-badge-type {
    background-color: #e9f3ff;
    color: #274b7a;
}

.property-category-badge-area {
    background-color: #f5f2e9;
    color: #5d4025;
}

.property-category-badge-floor {
    background-color: #efe9ff;
    color: #4b2e7a;
}

.property-category-badge-feature {
    background-color: #f0f5f0;
    color: #38502b;
}

/* 上部 2カラム */
.property-top {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

/* 左：画像 */
.property-top-image {
    flex: 0 0 48%;
}

.property-main-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.property-main-image-placeholder {
    padding: 40px 16px;
    text-align: center;
    background-color: #f7f3ec;
    border-radius: 8px;
    color: #777;
}

.property-sub-images {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.property-sub-image-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
}

.property-sub-image-item {
    cursor: pointer;
}

.property-sub-image-item img.is-active {
    outline: 2px solid #5d4025;
    outline-offset: 2px;
}

/* 右：紹介＋価格＋ボタン＋コメント */
.property-top-summary {
    flex: 1 1 0;
}

.property-intro-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #5d4025;
}

.property-intro-text {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 12px;
}

/* 後でアイコンを入れるスペース */
.property-feature-icons {
    margin-bottom: 16px;
}

/* 価格ボックス */
.property-price-box {
    border: 2px solid #e0b89b;
    border-radius: 6px;
    padding: 10px 14px;
    margin-bottom: 16px;
    background-color: #fffaf3;
}

.property-price-label {
    font-size: 12px;
    color: #5d4025;
    margin-bottom: 4px;
}

.property-price-value {
    font-size: 22px;
    font-weight: 700;
    color: #a31f0b;
}

/* ボタン */
.property-action-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.property-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    border-radius: 999px;
    font-size: 14px;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.property-btn-favorite {
    background-color: #f0f0f0;
    color: #333;
}

.property-btn-contact {
    background-color: #5d4025;
    color: #fff;
}

.property-btn:hover {
    opacity: 0.8;
}

/* 担当者コメント */
.property-staff-comment {
    border-top: 1px solid #e0d5c8;
    padding-top: 14px;
}

.property-staff-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #5d4025;
}

.property-staff-text {
    font-size: 14px;
    line-height: 1.7;
}

/* スマホ */
@media (max-width: 768px) {
    .property-main {
        margin-top: 30px;
    }

    .property-top {
        flex-direction: column;
    }

    .property-top-image {
        flex: 1 1 auto;
    }
}

/* =========================
   物件間取・図面
   ========================= */

.property-floor-plan {
    margin-top: 24px;
}

.property-floor-plan-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
}

.property-floor-plan-thumb img {
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    display: block;
}

/* =========================
   物件用ライトボックス
   ========================= */

.property-lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    display: none;              /* 通常は非表示 */
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.property-lightbox-overlay.is-open {
    display: flex;              /* 表示時は中央寄せ */
}

.property-lightbox-overlay img {
    max-width: 90vw;
    max-height: 90vh;
    box-shadow: 0 8px 24px rgba(0,0,0,0.5);
    border-radius: 6px;
}

/* クリックできるよ感を少しだけ */
.property-lightbox-overlay::after {
    content: "クリックで閉じる";
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 12px;
    opacity: 0.8;
}

/* =========================
   物件概要 共通
   ========================= */

.property-spec {
    margin-bottom: 100px;
}
/* 物件ページのセクション見出し */
.property-section-title {
    position: relative;
    display: inline-block;  /* ← 下線を文字幅に合わせる */
    padding-bottom: 10px;
    margin: 15px 25px;
    font-size: 28px;
    font-weight: 700;
    color: #5d4025;
}

/* 下線（メインカラー） */
.property-section-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;        /* 文字幅にフィット */
    height: 6px;        /* 太めのライン */
    border-radius: 3px;
    background-color: #5d4025;
}

/* h2 の背面用の帯（薄い背景色） */
.property-section-title-wrap {
    background: #f9f6f1;
    padding: 0px 0; 
    margin-bottom: 40px;
}

.property-spec-list,
.property-detail-dl {
    margin: 0 auto;
    padding: 0;
    max-width: 900px; /* ← 全体を中央寄せ */
}

.spec-row,
.property-detail-row {
    display: flex;
    border-bottom: 1px solid #eee;
    padding: 14px 0;  /* ← 行の余白を広げる */
    align-items: flex-start;
}

.spec-row dt,
.property-detail-row dt {
    width: 300px;        /* ← dt を広げた（従来 130px） */
    font-weight: 600;
    color: #5d4025;
    flex-shrink: 0;
    padding-right: 20px; /* ← 右の余白を増やす */
    padding-left: 80px;
}

.spec-row dd,
.property-detail-row dd {
    margin: 0;
    flex-grow: 1;
    padding-left: 10px;  /* ← 少しだけ左余白 */
}

.property-spec-list .spec-row:nth-child(odd),
.property-detail-dl .property-detail-row:nth-child(odd) {
    background-color: #f9f6f1; /* ← やわらかいベージュ */
}

/* スマホ用 */
@media (max-width: 768px) {
    .spec-row,
    .property-detail-row {
        flex-direction: column;
        padding: 12px 0;
    }
    .spec-row dt, 
    .property-detail-row dt {
        width: 100%;
        padding-right: 0;
        margin-bottom: 4px;
    }
    .spec-row dd,
    .property-detail-row dd {
        padding-left: 0;
    }
}


/* =========================
   物件アーカイブ 共通
   ========================= */

.property-archive-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px 80px;
}

/* =========================
   物件一覧：検索フォーム
   ========================= */

.property-search {
  background: #f9f6f1;
  padding: 24px 16px;
  margin-bottom: 40px;
}

.property-search-title {
  font-size: 22px;
  font-weight: 700;
  color: #5d4025;
  margin: 0 0 16px;
}


.property-search-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.property-search-form {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: flex-end;
}

.property-search-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 180px;
}

.property-search-field--wide {
  flex: 1 1 260px;
}

.property-search-field--price {
  min-width: 220px;
}

.property-search-label {
  font-size: 13px;
  color: #5d4025;
  font-weight: 600;
}

/* 高さを揃える共通コントロール */
.property-search-control {
  width: 100%;
  height: 44px;                 /* ← 高さを固定 */
  padding: 0 10px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

/* select の矢印崩れ対策（必要に応じて） */
.property-search-control::-ms-expand {
  display: none;
}

.property-search-price-range {
  display: flex;
  align-items: center;
  gap: 6px;
}

.property-search-price-separator {
  font-size: 14px;
}

/* ボタン */
.property-search-action {
  margin-left: auto;
}

.property-search-submit {
  height: 44px;
  padding: 0 24px;
  border: none;
  border-radius: 4px;
  background: #5d4025;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.property-search-submit:hover {
  opacity: 0.9;
}

/* スマホ */
@media (max-width: 768px) {
  .property-search-form {
    flex-direction: column;
    align-items: stretch;
  }

  .property-search-action {
    margin-left: 0;
  }

  .property-search-submit {
    width: 100%;
  }
}
/* --- 一覧タイトル --- */

.property-archive-title {
  margin: 0 0 16px;
  font-size: 24px;
  font-weight: 700;
  color: #5d4025;
}



/* =========================
   物件一覧：カードレイアウト（Flex版）
   ========================= */

.property-card-list {
    max-width: 1100px;
    margin: 40px auto 60px;
    padding: 0 15px;

    display: flex;
    flex-wrap: wrap;
    gap: 24px;

    justify-content: flex-start; /* 左寄せ */
}

/* 各カードの最小幅を指定（260px〜可変） */
.property-card {
    width: calc(33.333% - 24px);  /* PC 3列 */
    min-width: 260px;
    max-width: 100%;
}

/* スマホ・タブレットの調整 */
@media (max-width: 1024px) {
    .property-card {
        width: calc(50% - 24px); /* 2列 */
    }
}

@media (max-width: 768px) {
    .property-card {
        width: 100%;  /* 1列 */
    }
}

.property-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.property-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
    height: 100%;
}

.property-card-thumb {
    position: relative;
    overflow: hidden;
}

.property-card-thumb img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

/* ホバーアニメーション */
.property-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.property-card:hover .property-card-thumb img {
    transform: scale(1.03);
}

/* ステータス＆事故レベルバッジ */
.property-card-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    background: rgba(0,0,0,0.55);
}

.property-card-badge-status {
    background: #5d4025;
}

/* 状況ごとに色を変えたければ */
.property-card-badge-status.status-on_sale {
    background: #c36935;  /* 販売中：暖色 */
}
.property-card-badge-status.status-negotiation {
    background: #e0a800;  /* 商談中：黄色系 */
}
.property-card-badge-status.status-closed {
    background: #777;     /* 成約済み：グレー */
}

.property-card-badge-accident {
    right: 10px;
    left: auto;
    background: #b00020;  /* 事故レベル：赤系 */
}

/* 本文部分 */
.property-card-body {
    padding: 14px 16px 16px;
}

.property-card-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 8px;
    color: #333;
}

/* タイプ＆エリア */
.property-card-meta-top {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 8px;
}

.property-card-tag {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 999px;
    font-size: 11px;
    border: 1px solid #d3c4b3;
    background: #f9f6f1;
    color: #5d4025;
}

/* 価格 */
.property-card-price {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 4px;
    color: #c36935;
}

/* 最寄駅 */
.property-card-station {
    font-size: 13px;
    margin: 0 0 6px;
    color: #666;
}

/* 紹介文 */
.property-card-intro {
    font-size: 13px;
    margin: 0;
    color: #555;
    line-height: 1.6;
}

/* スマホ調整 */
@media (max-width: 768px) {
    .property-card-list {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-top: 24px;
    }

    .property-card-thumb img {
        height: 180px;
    }
}


/* 物件検索結果 */

.property-search-header {
    max-width: 1100px;
    margin: 0 auto 30px;
    padding: 0 15px;
}

.property-search-header .page-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #5d4025;
}

.property-archive-count {
    font-size: 14px;
    color: #666;
}

.property-archive-sort {
  margin: 10px 0 20px;
  text-align: right;
}

.property-sort-label {
  font-size: 13px;
  color: #5d4025;
  margin-right: 6px;
}

.property-sort-select {
  height: 32px;
  padding: 0 8px;
  font-size: 13px;
  border: 1px solid #ccc;
  border-radius: 4px;
}