/*===========================
	mainContents
===========================*/
.mainContents {
  background: #f1ede8;
}

/*===========================
	estateList
===========================*/
.estateList {
  margin: 0 auto 10%;
}
.estateList li {
  background: #FFF;
  border-radius: 8px;
  box-sizing: border-box;
  position: relative;
}
.estateList li:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 15px 15px;
  border-color: transparent transparent #da341c transparent;
  position: absolute;
  bottom: 10px;
  right: 10px;
}

@media screen and (min-width: 768px) {
  .estateList {
    margin: 0 auto 5%;
    width: auto;
  }
}
/*===========================
	pager
===========================*/
.pager {
  text-align: center;
  margin: 0 0 16%;
}
.pager a {
  display: inline-block;
  border: solid 2px #333;
  line-height: 2;
  padding: 0 .7em;
  margin: 0 .2em;
  background: #FFF;
}
.pager span {
  display: inline-block;
  color: #FFF;
  border: solid 2px #333;
  line-height: 2;
  padding: 0 .7em;
  margin: 0 .2em;
  background: #333;
}

@media screen and (min-width: 768px) {
  .pager {
    margin: 0 0 5%;
  }
}
/*==============================
	athomeBnr
==============================*/
.athomeBnr {
  text-align: center;
  border: solid 2px #da341c;
  line-height: 2.8;
}
.athomeBnr a {
  display: inline-block;
  width: 100%;
  background: #FFF;
  color: #da341c;
  font-weight: bold;
  position: relative;
  transition: .3s;
}
.athomeBnr a:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 10px 10px;
  border-color: transparent transparent #da341c transparent;
  position: absolute;
  bottom: 5px;
  right: 5px;
}
.athomeBnr a:hover {
  background: #da341c;
  color: #FFF;
}
.athomeBnr a:hover:before {
  border-color: transparent transparent #FFF transparent;
}

@media screen and (min-width: 768px) {
  .athomeBnr {
    width: 38%;
    margin: 0 auto;
  }
}
