@charset "utf-8";
/* CSS Document */
    
.lead {
    padding: 0;
    text-align: center;
}

@media (min-width: 992px){
    .lead {
        margin: 0 auto;
/*         width: 60%; */
    }
}

/*物件情報--------------------------------------*/
.picup h2+p {
    text-align: center;
}


.topics {
    display:-webkit-box;
    display:-ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-line-pack: start;
	align-content: flex-start;
}

.topic {
    background: #fff;
    margin-bottom: 20px;
    margin-left: 4%;
    position: relative;
    width: 48%;
}

@media (min-width: 768px){
    .topic {
        width: 32%;
    }
}

@media (min-width: 992px){
    .topic {
        width: 24%;
    }
}

.topic:nth-of-type(odd) {
    margin-left: 0;
}

@media (min-width: 768px){
    .topic {
        margin-left: 2%;
    }

    .topic:nth-of-type(odd) {
        margin-left: 2%;
    }

    .topic:first-child,
    .topic:nth-child(3n+1) {
        margin-left: 0;
    }
}

@media (min-width: 992px){
    .topic {
        margin-left: 1.3%;
    }

    .topic:nth-of-type(odd) {
        margin-left: 1.3%;
    }

    .topic:nth-child(3n+1) {
        margin-left: 1.3%;
    }

    .topic:first-child,
    .topic:nth-child(4n+1) {
        margin-left: 0;
    }
}


.topic a {
    transition: all .2s ease;
}

.topic a:hover {
    opacity: .8;
}

.topic img {
/*
    height: auto;
    width: 100%;
*/
}

.topic_detail {
    color: #333;
    margin-bottom: 0;
    padding: 10px 5px;
    width: 100%;
}

.topic_detail p {
    color: #555;
    font-size: .9rem;
    line-height: 1.3;
    margin-bottom: 0;
    transition: all .2s ease;
}

.topic a {
	display: block;
	position: relative;
}

.topic span.sell::after {
	color: #fff;
	display: block;
    font-size: .9rem;
    font-weight: bold;
    height: 30px;
    line-height: 30px;
    text-align: center;
    width: 55px;
    position: absolute;
    top: 0;
    left: 0;
}

.topic span.sell::after {
	background-color: orangered;
	content: "売物件"
}
