@charset "UTF-8";
/*======================================================================
 * 検索ページ レイアウト
======================================================================*/
.search-box {
  padding: 20px;
  border-radius: 5px;
  background-color: #fff;
}
.search-box p.main-heading {
  margin-bottom: 0;
  position: relative;
}
.main-heading:before, .main-heading:after {
  content: "";
  display: block;
  width: 16px;
  height: 1px;
  border-radius: 5px;
  background: #707070;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.main-heading:after {
  -webkit-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.search-box .main-heading.-active:after {
  -webkit-transform: rotate(0);
  transform: rotate(0);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.search-box .link-button-group {
  justify-content: center;
  margin-top: 10px;
  margin-bottom: 0;
}

.search-tab.-floor {
  margin-top: 4rem;
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .search-tab.-floor {
    margin-bottom: 2rem;
  }
}

.l-content-list {
  margin-top: 0;
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .l-content-list {
    margin-top: 10px;
    margin-bottom: 2rem;
  }
}

.no_data {
  padding: 40px 0;
}
@media screen and (max-width: 768px) {
  .no_data {
    padding: 30px 0 10px;
  }
}