@charset "UTF-8";
/*======================================================================
 * 検索ページ レイアウト
======================================================================*/
.link-button.-pdf {
  margin-top: 17px;
}
@media screen and (max-width: 768px) {
  .link-button.-pdf {
    margin: 24px auto 30px;
    max-width: 100%;
  }
}
.search-box .main-heading.-active:after,
.category .sub-heading.-active:after, .floor .sub-heading.-active:after {
  -webkit-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.sub-heading {
  position: relative;
  text-align: center;
  margin: 0;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .sub-heading {
    text-align: left;
  }
}
.main-heading:before, .main-heading:after,
.sub-heading:before, .sub-heading:after {
  content: "";
  display: block;
  width: 16px;
  height: 1px;
  border-radius: 5px;
  background: #14AECC;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.main-heading:after,
.sub-heading:after {
  -webkit-transform: rotate(0);
  transform: rotate(0);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.search-box {
  background: #F4F4F4;
  padding: 15px 20px 10px;
  margin: 4rem 0;
}
@media screen and (max-width: 768px) {
  .search-box {
    margin: 0 calc(50% - 50vw) 30px;
  }
}
.search-box p.main-heading {
  text-align: center;
  margin-bottom: 0;
  padding-bottom: 0;
  position: relative;
}
.search-box p.main-heading.-active {
  padding-bottom: 5px;
}
.search-box .category-wrap {
  margin-top: 1em;
  display: none;
}
.search-box .category {
  background: #ffffff;
  border-radius: 5px;
  padding: 20px 40px;
}
@media screen and (max-width: 768px) {
  .search-box .category {
    padding: 20px 25px;
  }
}
/* .search-box .category .category-list {
  margin-top: 15px;
} */
.search-box ul {
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.search-box ul li {
  margin-right: 13px;
  width: calc((100% - 39px) / 4);
  font-size: 1.4rem;
}
.search-box ul li input[type=checkbox] {
  display: none;
}
.search-box ul li input[type=checkbox]:checked + label {
  background: #E0F6FA;
}
.search-box ul li label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 50px;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  background: #ffffff;
  text-decoration: none;
  color: #14AECC;
  padding: 5px;
  text-align: center;
  cursor: pointer;
  border: 1px solid #14AECC;
  border-radius: 5px;
}
@media screen and (max-width: 768px) {
  .search-box ul li {
    width: calc((100% - 11px) / 2);
    margin-right: 11px;
  }
  .search-box ul li:nth-child(2n) {
    margin-right: 0;
  }
}
.search-box ul li a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 50px;
  width: 100%;
  border: 1px solid #14AECC;
  border-radius: 5px;
  max-width: 320px;
  margin: 0 auto;
  background: #ffffff;
  text-decoration: none;
  color: #14AECC;
  padding: 5px;
  text-align: center;
}
.search-box ul li:nth-child(4n) {
  margin-right: 0;
}
.search-box ul li:nth-child(n+5) {
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  .search-box ul li:nth-child(n+5) {
    margin-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .search-box ul li:nth-child(n+3) {
    margin-top: 10px;
  }
}
.search-box .link-button-group {
  margin-top: 30px;
}
.search-box .show-button {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 60px;
  border: 1px solid #14AECC;
  border-radius: 5px;
  max-width: 320px;
  width: 100%;
  background: #ffffff;
  -webkit-box-shadow: 0 3px 12px rgba(0, 0, 0, 0.12);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.12);
  text-decoration: none;
  color: #14AECC;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .search-box .show-button {
    width: 100%;
    max-width: none;
  }
}
.search-box .show-button:before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  top: 50%;
  right: 30px;
  -webkit-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
  background: url("../images/common/icon-search.svg") no-repeat;
  background-size: 100%;
}
.search-box .clear-button {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 60px;
  border: 1px solid #D6D6D6;
  border-radius: 5px;
  max-width: 320px;
  width: 100%;
  background: #ffffff;
  -webkit-box-shadow: 0 3px 12px rgba(0, 0, 0, 0.12);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.12);
  text-decoration: none;
  color: #000000;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .search-box .clear-button {
    width: 100%;
    max-width: none;
    margin-top: 10px;
  }
}

.search-tab.-floor {
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .search-tab.-floor {
    margin-bottom: 2rem;
  }
}

.search-box {
  margin-top: 0;
  margin-bottom: 0;
}
.search-box .show-button {
  margin: 0 auto;
}

.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;
  }
}