@charset "UTF-8";
/*

  条件で探す(PLUS)

*/
.conditions {
  width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .conditions {
    padding-bottom: 10px;
  }
}

.conditions__headingbox {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  /* Safari */
  justify-content: center;
}

.conditions__headingbox__heading {
  padding-left: 34px;
  font-weight: bold;
  font-size: 2.5rem;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .conditions__headingbox__heading {
    padding-left: 25px;
    font-size: 2.1rem;
    margin-bottom: 20px;
  }
}

.conditions__headingbox__heading:before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%) translateX(0%);
  content: '';
  width: 29px;
  height: 30px;
  background: url(../img/common/icon_heading_search_gray.svg) no-repeat;
  background-size: 29px 30px;
}

@media screen and (max-width: 767px) {
  .conditions__headingbox__heading:before {
    width: 20px;
    height: 21px;
    background-size: 20px 21px;
  }
}

.conditions__list {
  width: 100%;
}

.conditions__list__item {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  /* Safari */
  justify-content: space-between;
  margin-bottom: 100px;
}

@media screen and (min-width: 768px) {
  .conditions__list__item:nth-child(odd) {
    -webkit-flex-direction: row-reverse;
    /* Safari */
    flex-direction: row-reverse;
  }
}

@media screen and (max-width: 767px) {
  .conditions__list__item {
    -webkit-flex-direction: column;
    /* Safari */
    flex-direction: column;
    margin-bottom: 60px;
  }
}

.conditions__list__item:last-child {
  margin-bottom: 0;
}

.conditions__list__item__img {
  max-width: 530px;
  width: 55%;
}

@media screen and (max-width: 767px) {
  .conditions__list__item__img {
    width: 100%;
    margin: 0 auto 20px;
  }
}

.conditions__list__item__img img {
  width: 100%;
}

.conditions__list__item__text {
  width: 40%;
}

@media screen and (min-width: 768px) {
  .conditions__list__item__text {
    max-width: 390px;
  }
}

@media screen and (max-width: 767px) {
  .conditions__list__item__text {
    width: 100%;
  }
}

.conditions__list__item__text__heading {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .conditions__list__item__text__heading {
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 15px;
  }
}

.conditions__list__item__text__read {
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .conditions__list__item__text__read {
    margin-bottom: 25px;
  }
}

.conditions__list__item__text a {
  margin-top: 8px;
  width: 100%;
}