/* 外側ボックス */
.property_detail_contact_box {
    max-width: 1200px;
    margin: 140px auto 0;
    background: #f8f6f1;
    /* タイトルと同色 */
    padding: 60px;
    border-radius: 8px;
}

/* タイトル */
.property_detail_contact_box h4 {
    text-align: center;
    font-size: 26px;
    margin-bottom: 40px;
    color: #1f4d3c;
}

/* テーブル */
.tbl-contact {
    width: 100%;
    border-collapse: collapse;
}

/* 行 */
.tbl-contact th,
.tbl-contact td {
    padding: 22px 24px;
    text-align: left;
    vertical-align: top;
}

/* 左側 */
.tbl-contact th {
    width: 220px;
    font-weight: 600;
    color: #1f4d3c;
}

/* 区切り線 */
.tbl-contact tr+tr {
    border-top: 1px solid rgba(31, 77, 60, 0.12);
}

/* 奇数行だけ濃く */
.tbl-contact tr:nth-child(odd) {
    background: #e6e3dd;
}

/* LINEボタン */
.link-line {
    display: inline-block;
    background: #2dc100;
    color: #fff;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 12px;
}

.link-line:hover {
    background: #24a000;
}

/* LINE説明 */
.line-comment {
    margin-top: 16px;
    background: #ffffff;
    padding: 22px 26px;
    border-radius: 10px;
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    /* ← ふわっと浮く */
}