.midashi {
  position: relative;
  display: inline-block;
/*  padding: 0 2em;*/
  padding: 0 1.2em;
margin-left: 1.05em;
  text-align: center;
}

.midashi:before,
.midashi:after {
  font-family: 'Font Awesome 5 Free';
  line-height: 1;
  position: absolute;
  top: calc(50% - .5em);
  color: #eb6100;
}

.midashi:before {
  left: 0;
  content: "\f101" !important;
}

.midashi:after {
  right: 0;
  content: "\f100" !important;
}

.fontChange{
    font-size: 17px;
}

/* 物件一覧のレスポンシブ設定 */
.listing_wrapper {
    width: 33.333333%; /* PCで3列表示 */
    float: left;
    padding: 15px;
    box-sizing: border-box;
}

/* SP表示時の設定 */
@media screen and (max-width: 767px) {
    .listing_wrapper {
        width: 100%; /* SPで1列表示 */
        float: none;
    }
}