@charset "UTF-8"; /*販売物件一覧*/
/* - - - - - - - - - - - - - - - - - - - - - - - - */
.propertyList ul {
    border-top: solid 1px var(--border-color);
}
.propertyList li a {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    padding: 20px;
    border-bottom: solid 1px var(--border-color);
    position: relative;
}
.propertyList li a::after {
    content: '';
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-left: 10px solid transparent;
    border-right: 10px solid var(--main-color);;
    border-bottom: 10px solid var(--main-color);;
    display: block;
    position: absolute;
    right: 0;
    bottom: 0;
}
.propertyList li a:hover {
    background-color: var(--color-bk);
}
/* 画像 */
.pLimg {
    width: 200px;
    height: 150px;
}
.pLimg img {
    object-fit: cover;
}
/* 情報 */
.pLBox {
    flex: 1;
    margin-left: 30px;
}
.pLheader {
    display: flex;
    align-items: center;
}
span.pLcat {/*種別*/
    display: inline-block;
    background-color: var(--sub-color);
    color: #fff;
    font-size: 12px;
    padding: 5px 7px;
    margin-top: 2px;
}
.yield p {/* 利回り表記 */
    margin: 0;
    padding-left: 10px;
    padding-top: 5px;
    color: var(--error-color);
    font-size: 14px;
    font-weight: bold;
    font-family: "UD Reimin Regular", serif;
}
.pLBox h2 {/*物件名*/
    flex: 1;
    margin: 5px auto 10px;
    font-size: 20px;
}
/*タグ*/
.propertyTagBox ul {
    display: flex;
    flex-wrap: wrap;
    border-top: none;
}
.propertyTagBox ul li {
    font-size: 12px;
    margin: 0 10px 2px 0;
    color: var(--sub-color);
}
.propertyTagBox ul li::before {
    content: '#';
    font-size: 12px;
    font-style: italic;
    margin-right: 2px;
}
.pLprice {/*販売価格*/
    text-align: right;
}
.pLprice p {
    font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
    font-weight: bold;
    font-size: 18px;
    margin: 0;
    line-height: 1.2;
}
.pLprice span {/*金額*/
    font-size: 35px;
}
.spBtn { /*スマホ用詳細ボタン*/
    display: none;
}


@media screen and (max-width:600px) {
/* - - - - - - - - - - - - - - - - - - - - - - - - */
    .propertyList li a {
        flex-direction: column;
        padding: 20px 0;
        position: inherit;
    }
    .propertyList li a::after {
        display: none;
        position: inherit;
    }
    /* 画像 */
    .pLimg {
        width: 100%;
        height: 250px;
        margin: 0 auto;
    }
    .pLimg img {
        height: 100%;
    }
    /* 情報 */
    .pLBox {
        flex: inherit;
        width: 100%;
        margin: 10px 0 0;
    }

    /* 詳細ボタン */
    .spBtn {
        display: block;
        width: 100%;
        margin-top: 10px;
        padding: 20px;
        border: solid 1px var(--main-color);
        text-align: center;
        font-weight: bold;
    }
}