.search-term__title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 26px;
  font-weight: 500;
  color: #655443;
}

@media screen and (max-width: 1100px) {
  .search-term__title {
    font-size: 22px;
  }
}

@media screen and (max-width: 767px) {
  .search-term__title {
    font-size: 18px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.search-term__title::before {
  content: '';
  background-image: url(../img/common/ico_search_term.svg);
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: contain;
  width: 75px;
  height: 75px;
  display: inline-block;
  margin: 0 20px 0 0;
}

@media screen and (max-width: 1100px) {
  .search-term__title::before {
    width: 62px;
    height: 62px;
    margin: 0 18px 0 0;
  }
}

@media screen and (max-width: 767px) {
  .search-term__title::before {
    width: 40px;
    height: 40px;
    margin: 0 12px 0 0;
  }
}

.result {
  position: relative;
}

.result::before {
  content: '';
  width: 60px;
  height: 101px;
  display: block;
  background-image: url(../img/search/arrow_result.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  margin: 18px auto;
}

@media screen and (max-width: 767px) {
  .result::before {
    width: 40px;
    height: 68px;
  }
}

.result__title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
/*
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
*/
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 500;
  letter-spacing: 2px;
}

@media screen and (max-width: 767px) {
  .result__title {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.result__title::before {
  content: '';
  width: 130px;
  height: 40px;
  display: inline-block;
  background-image: url(../img/search/ico_result.svg);
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: contain;
  margin: 0 30px 0 0;
}

@media screen and (max-width: 767px) {
  .result__title::before {
    margin: 0 12px 0 0;
    width: 80px;
    height: 26px;
  }
}

.result__title--text {
  font-size: 26px;
  color: #655443;
}

@media screen and (max-width: 767px) {
  .result__title--text {
    font-size: 22px;
  }
}

.result__title--num {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 20px;
  color: #fff;
  background: #00a8b7;
  border-radius: 20px;
  width: 85px;
  height: 30px;
  margin: 0 0 0 14px;
}

@media screen and (max-width: 767px) {
  .result__title--num {
    font-size: 16px;
    margin: 0 0 0 12px;
    width: 74px;
    height: 28px;
  }
}

.result__cont {
  margin: 26px 0 0;
}

@media screen and (max-width: 767px) {
  .result__cont {
    margin: 20px 0 0;
  }
}

.result__item {
  background: #fff;
  padding: 40px 42px 32px;
  border-radius: 20px;
}

@media screen and (max-width: 1100px) {
  .result__item {
    padding: 32px 30px;
  }
}

@media screen and (max-width: 767px) {
  .result__item {
    padding: 20px;
  }
}

.result__item + .result__item {
  margin: 45px 0 0;
}

@media screen and (max-width: 767px) {
  .result__item + .result__item {
    margin: 24px 0 0;
  }
}

.result__info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.result__info__block {
  display: block;
}

@media screen and (max-width: 767px) {
  .result__info {
    display: block;
  }
}

.result__img {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}

@media screen and (max-width: 864px) {
  .result__img {
    -webkit-flex-basis: 134px;
        -ms-flex-preferred-size: 134px;
            flex-basis: 134px;
  }
}

@media screen and (max-width: 767px) {
  .result__img {
    text-align: center;
  }
}

.result__info-detail {
  margin: 0 0 0 15px;
}
.result__info__block-detail {
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .result__info-detail {
    margin: 14px 0 0;
  }
}

.result__category {
  font-size: 15px;
  color: #fff;
  background: #655443;
  padding: 6px 12px;
  display: inline-block;
}

@media screen and (max-width: 1100px) {
  .result__category {
    font-size: 13px;
  }
}

@media screen and (max-width: 767px) {
  .result__category {
    font-size: 15px;
  }
}

.result__item-title {
  font-size: 26px;
  font-weight: 500;
  color: #655443;
  margin: 8px 0 0;
}

@media screen and (max-width: 1100px) {
  .result__item-title {
    font-size: 22px;
  }
}

@media screen and (max-width: 767px) {
  .result__item-title {
    font-size: 24px;
  }
}

.result__address {
  font-size: 15px;
  font-style: normal;
  margin: 8px 0 0;
}

.result__address-title {
  font-weight: 500;
  color: #655443;
}

.result__room {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 10px 0 0;
}

@media screen and (max-width: 1100px) {
  .result__room {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .result__room {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media screen and (max-width: 374px) {
  .result__room {
    display: block;
  }
}

.result__room-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.result__room-item--second {
  margin: 0 0 0 20px;
}

@media screen and (max-width: 1100px) {
  .result__room-item--second {
    margin: 10px 0 0;
  }
}

@media screen and (max-width: 767px) {
  .result__room-item--second {
    margin: 0 0 0 12px;
  }
}

@media screen and (max-width: 374px) {
  .result__room-item--second {
    margin: 10px 0 0;
  }
}

.result__room-title {
  font-size: 15px;
}

@media screen and (max-width: 767px) {
  .result__room-title {
    font-size: 14px;
  }
}

.result__room-vacant {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  color: #ff7bab;
  border: solid 2px #ff7bab;
  border-radius: 10px;
  width: 86px;
  height: 26px;
  font-size: 15px;
  margin: 0 0 0 6px;
}

.result__room-vacant .big {
  font-size: 20px;
  font-weight: 800;
}

.result__table {
  width: 100%;
  margin: 20px 0 0;
}

.result__table th, .result__table td {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.33;
  vertical-align: middle;
  border: solid 1px #655443;
}

@media screen and (max-width: 1100px) {
  .result__table th, .result__table td {
    display: block;
    line-height: 1.4;
  }
}

.result__table th {
  width: 100px;
  background: #d6f1ff;
  text-align: center;
}

@media screen and (max-width: 1100px) {
  .result__table th {
    width: 100%;
    padding: 10px;
  }
}

.result__table td {
  padding: 10px 18px;
}

@media screen and (max-width: 1100px) {
  .result__table td {
    border-top: 0;
    border-bottom: 0;
    text-align: center;
  }
}

.result__table td.result__table-tel {
  font-size: 20px;
  font-weight: 500;
}

@media screen and (max-width: 1100px) {
  .result__table td.result__table-tel {
    /*border-bottom: 1px solid #655443;*/
  }
  .result__table td.last {
    /*border-bottom: solid 1px #655443;*/
  }
  .result__table tr:last-child {
    border-bottom: solid 1px #655443;
  }
}

.result__table-price-title {
  font-weight: 500;
  color: #655443;
}

.result__table-price-detail {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.result__table-price-num {
  color: #ff7bab;
}

.result__table-price .big {
  font-size: 18px;
  font-weight: 800;
}

@media screen and (max-width: 1100px) {
  .result__table-price .big {
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) {
  .result__table-price .big {
    font-size: 18px;
  }
}

.result__option {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: 13px 0 0;
}

@media screen and (max-width: 767px) {
  .result__option {
    margin: 18px -5px 0;
  }
}

.result__option-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 10px 10px 0;
  width: 68px;
  height: 68px;
  font-size: 16px;
  font-weight: 500;
  color: #33b9ff;
  border: solid 2px #33b9ff;
  border-radius: 10px;
  background: #d6f1ff;
  line-height: 1.2;
  text-align: center;
}

@media screen and (max-width: 1100px) {
  .result__option-item {
    font-size: 14px;
    width: 64px;
    height: 64px;
  }
}

@media screen and (max-width: 767px) {
  .result__option-item {
    font-size: 15px;
    width: calc((100%/4) - 10px);
    height: 66px;
    margin: 0 5px 10px;
  }
}

.result__btn {
  margin: 8px 0 0;
  padding: 10px 0 0 0;
}

.result__btn a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  width: 334px;
  height: 56px;
  margin: 0 auto;
  background: #00a8b7;
  border-radius: 10px;
  letter-spacing: 2px;
}

@media screen and (max-width: 767px) {
  .result__btn a {
    width: 260px;
    height: 56px;
  }
}

.pagination {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 26px 0;
}

@media screen and (max-width: 767px) {
  .pagination {
    margin: 20px 0;
  }
}

.pagination__prev {
  margin: 0 20px 0 0;
}

@media screen and (max-width: 767px) {
  .pagination__prev {
    margin: 0 14px 0 0;
  }
}

.pagination__prev a {
  font-size: 20px;
  color: #4d4d4d;
}

@media screen and (max-width: 767px) {
  .pagination__prev a {
    font-size: 18px;
  }
}

.pagination__next {
  margin: 0 0 0 20px;
}

@media screen and (max-width: 767px) {
  .pagination__next {
    margin: 0 0 0 14px;
  }
}

.pagination__next a {
  font-size: 20px;
  color: #4d4d4d;
}

@media screen and (max-width: 767px) {
  .pagination__next a {
    font-size: 18px;
  }
}

.pagination__num + .pagination__num {
  margin: 0 0 0 12px;
}

@media screen and (max-width: 767px) {
  .pagination__num + .pagination__num {
    margin: 0 0 0 10px;
  }
}

.pagination__num.current {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 20px;
  font-weight: 700;
  border: solid 1px #655443;
  border-radius: 8px;
  padding: 10px 8px;
  background: #655443;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .pagination__num.current {
    font-size: 18px;
  }
}

.pagination__num a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 20px;
  font-weight: 700;
  color: #655443;
  border: solid 1px #655443;
  background: #fff;
  border-radius: 8px;
  padding: 10px 8px;
}

@media screen and (max-width: 767px) {
  .pagination__num a {
    font-size: 18px;
  }
}

.pagination__page {
	margin: 0;
	padding: 5px 15px;
	color: #fff;
	background: #655443;
	border-radius: 15px;
}

.term__jouken {
	line-height: 1.2em;
}
.search_result {
	display: inline-block;
	margin: 5px 5px 0 0;
	padding: 0 10px;
	background: #ff7bab;
	font-size: 16px;
	color: #fff;
	border-radius: 8px;
}
.no_select {
	margin: 0;
	padding: 0 5px;
	font-size: 14px;
	color:#B7B7B7;
}
@media screen and (max-width: 767px) {
	.no_select {
	}
	.price_area {
	}
}
.result_index {
  position: relative;
}
/*# sourceMappingURL=search.css.map */