/* ========================================
   Property SPEC
======================================== */

.kf-property-spec {
    margin-top: 120px;
}

/* 2カラム */
.kf-property-spec__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.kf-section-title {
    background: #e6e3dd;
    padding: 26px 30px 26px 50px;
    font-size: 20px;
    /* ← 小さく */
    font-weight: 600;
    /* ← 少し軽く */
    color: #1f4d3c;
    position: relative;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

/* 緑ライン */
.kf-section-title::before {
    content: "";
    position: absolute;
    left: 26px;
    top: 16px;
    bottom: 16px;
    width: 6px;
    /* 少し細く */
    background: #1f4d3c;
}



/* =========================
   テーブル側
========================= */

.kf-spec-table__table {
    width: 100%;
    border-collapse: collapse;
}

.kf-spec-table__table th,
.kf-spec-table__table td {
    padding: 18px 12px;
    border-bottom: 1px solid #e0e0e0;
    text-align: left;
    font-size: 15px;
    vertical-align: top;
}

.kf-spec-table__table th {
    width: 30%;
    background: #f8f8f8;
    font-weight: 600;
}


/* =========================
   マップ側
========================= */

.kf-spec-map {
    padding: 0;
    position: sticky;
    top: 120px;
}

.kf-spec-map iframe {
    width: 100%;
    height: 420px;
    border: none;
    border-radius: 6px;
}

/* =========================
   Responsive
========================= */

@media (max-width: 1024px) {

    .kf-property-spec__inner {
        grid-template-columns: 1fr;
    }

    .kf-spec-map {
        position: static;
        margin-top: 60px;
    }
}