/* 共通フォント */
div {
    font: normal normal medium Zen Kaku Gothic New;
    color: #000000;
}

.button {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    right: 0;
    bottom: 0;
}

/* サイドバーの余白 */
.sidebar_margin {
    margin-left: 194px;
}

/* 全体の構成 */
.container {
    max-width: 1106px;
    width: 100%;
    margin: 0 auto;
    text-align: left;
}


/* 物件一覧につながるリンク部 */
.property_links {
    display: flex;
    margin-top: 31px;
    width: 100%;
    justify-content: space-between;
}

.property_links .property_type_list {
    max-width: 420px;
    width: 100%;
    margin-top: 12px;
}

.property_type_list .item {
    border-top: 1px solid #cccccc;
    height: 70px;
    width: 100%;
    position: relative;
    padding: 0 35px;
    font-size: 18px;
    letter-spacing: 0.72px;
    line-height: 31px;
    display: flex;
    align-items: center;
}

.property_type_list .item:nth-child(6) {
    border-bottom: 1px solid #cccccc;
}

.property_type_list .item span {
    position: absolute;
    right: 35px;
}

.property_type_list .item img {
    width: 28px;
    height: 33.5px;
    margin-right: 26px;
}

/* おすすめ物件 */
.recommend_property {
    margin-top: 80px;
    max-width: 1106px;
    width: 100%;
}

.recommend_property .header {
    margin-bottom: 39px;
    position: relative;
}

.recommend_property .header h1 {
    font-size: 32px;
    letter-spacing: 2.56px;
    line-height: 56px;
    font-weight: normal;
}

.recommend_property .header span {
    color: #dc000c;
}

.recommend_property .bg_recommend {
    bottom: -36px;
    right: 0;
}

.recommend_property .property_cards {
    width: 368px;
    height: auto;
}

.recommend_property .list_button {
    width: 100%;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f5f5f5;
    border-top: 0.3px solid #6b68684b;
    border-bottom: 0.3px solid #6b68684b;
    font-size: 18px;
    letter-spacing: 1.44px;
}


/*========================================
= 検索タイプ全体ラッパー
========================================*/
.search-type-wrapper {
    position: relative;
    margin-left: 0; /* 左のメニューなどとの間隔を確保 */
    margin-bottom: 0; /* 下の要素との余白 */
    border-bottom: 1px solid #cccccc;
    display: inline-block;
    width: 100%; /* 全体幅調整 */
    border-bottom: none;
}

/*========================================
= タブ型の検索タイプボタン群
========================================*/
.search-type {
    display: flex;
    gap: 20px; /* 各ボタン間のスペース */
    justify-content: flex-start; /* 左寄せ配置 */
    border-bottom: 1px solid #cccccc;
}

/* 各検索タイプボタン */
.search-type span {
    position: relative;
    padding: 6px 12px;
    cursor: pointer;
    font-size: 18px;
    color: #888; /* 通常時はグレー文字 */
}

/*========================================
= 選択中の検索タイプ（アクティブ状態）
========================================*/
.search-type span.active {
    color: red; /* 選択中は赤文字に変更 */
}

/* アクティブ状態の下線装飾 */
.search-type span.active::after {
    content: "";
    position: absolute;
    bottom: -1px; /* 要素下端に下線を配置 */
    left: 0;
    width: 100%;
    height: 2px;
    background: red; /* 下線も赤色 */
}

/* ページ全体 */
.page_header {
    position: relative;
    margin-top: 25px;
}

/* コラム＋横線＋タイトル（右上配置） */
.column-header {
    display: flex;
    align-items: center;
    justify-content: flex-end; /* 右寄せ */
    gap: 8px; /* 各要素の間隔 */
    margin-bottom: 10px;
}

/* コラムラベル */
.column-label {
    font-size: 16px;
    color: #888888;
    font-weight: 500;
}

/* コラムとタイトルの間の16px横線 */
.column-connector {
    width: 16px;
    height: 2px;
    background-color: #c3c3c3;
}

/* タイトル（右上の細字タイトル部分） */
.column-title-top {
    font-size: 16px;
    color: #888888;
    opacity: 0.5; /* タイトルのみ50% */
}

/* グレーのタイトルボーダー（下線部分） */
.title-line {
    width: 100%;
    height: 2px;
    background-color: #ccc;
    margin-top: 5px;
}

/* 本文タイトル（見出し） */
.column-title {
    font-weight: normal;
    color: #000;
    font-size: 32px;
    margin-top: 16px;
    margin-bottom: 16px;
    text-align: left;
}

/* 日付 */
.column-date {
    color: #000;
    font-size: 14px;
    margin-bottom: 20px;
}

.article_body {
    margin-top: 20px;
    line-height: 1.8;
}

/* カテゴリアイコン共通（NEW・事業用・投資用を統一） */
.category_label {
    display: flex;
    align-items: center;
    gap: 8px; /* ラベル間の隙間 */
    margin-top: 25px; /* 上部の余白 */
}

/* NEWラベル */
.new-label {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 72px;
    height: 32px;
    background-color: #ffff00;
    color: #000;
    font-size: 14px;
    font-weight: 500;
    border-radius: 16px;
    box-sizing: border-box;
}

/* 事業用不動産ラベル */
.category-business {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    color: #619949;
    border: 1px solid #619949;
    background-color: #fff;
    border-radius: 16px;
    padding: 4px 12px;
    height: 32px;
    box-sizing: border-box;
}

/* 投資用不動産ラベル */
.category-investment {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    color: #005dad;
    border: 1px solid #005dad;
    background-color: #fff;
    border-radius: 16px;
    padding: 4px 12px;
    height: 32px;
    box-sizing: border-box;
}

/* カテゴリ未設定用（同じ高さ・体裁） */
.category-none {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    color: #999;
    border: 1px solid #ccc;
    background-color: #f8f8f8;
    border-radius: 16px;
    padding: 4px 12px;
    height: 32px;
    box-sizing: border-box;
}

@media screen and (min-width: 960px) {
}
@media screen and (min-width: 520px) and (max-width: 959px) {
}
@media screen and (max-width: 519px) {
    .container {
        padding: 10px;
    }
}
