@charset "UTF-8";
/**
 * search result list
 * NOTE: 一覧の結果リスト
**/
.search_result_wrap {
  margin: 0;
  padding: 0;
}
@media (max-width: 767.98px) {
  .search_result_wrap {
    margin: 0;
    padding: 0;
  }
}


/**
 * search result item
 * NOTE: 一覧の結果１つ
**/
.search_result_item {
  box-shadow: none;
  border-radius: 0;
  border-top: solid 1px var(--site-border-c);
  border-right: solid 1px var(--site-border-c);
  border-bottom: solid 1px var(--site-border-c);
  border-left: none;
  background: #fff;
  font-weight: 400;
  margin: 0 0 20px;
  padding: 12px 20px 20px;
  position: relative;
  overflow: visible;
}
.search_result_item::before {
  content: '';
  display: block;
  border-left: solid 2px var(--site-c-main);
  position: absolute;
  top: -1px;
  right: auto;
  bottom: -1px;
  left: 0;
  z-index: 1;
}
@media (max-width: 767.98px) {
  .search_result_item {
    margin: 0 0 20px;
    padding: 12px 16px 20px;
  }
}

/**
 * search no result
 * NOTE: 結果が１件も見つからない時（システム出力）
**/
.search_result_wrap>[align="center"] {
  box-shadow: none;
  border-radius: 0;
  border: solid 1px var(--site-border-c);
  background: #fff;
  font-weight: 400;
  margin: 0 0 20px;
  padding: 20px;
}
@media (max-width: 767.98px) {
  .search_result_wrap>[align="center"] {
    margin: 0 0 20px;
  }
}

/**
 * search result item inner
**/
.search_result_item_inner {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-content: stretch;
  align-items: stretch;
}


/**
 * search result item title group
**/
.search_result_wrap .title_parts {
  padding: 0;
}
.search_result_item_inner>.title_parts {
  border-bottom: solid 1px var(--site-border-c);
  color: var(--site-c-main);
  width: 100%;
  margin: 0 0 8px;
  padding: 0 0 8px;
  position: relative;
}
@media (max-width: 767.98px) {
  .search_result_wrap .title_parts {
    padding: 0 0 8px;
  }
}

.search_result_item__d_name {
  color: var(--font-c);
  font-size: 16px;
  font-weight: 400;
  font-feature-settings: "palt";
  line-height: 1.4;
  margin: 0;
  padding: 0;
}
.search_result_item__d_name a {
  color: inherit;
}
@media (max-width: 767.98px) {
  .search_result_item__d_name {
    font-size: 16px;
  }
}

/* fav heart circle button */
.search_result_wrap .title_parts .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: solid 1px #fecacf;
  background: #fecacf;
  color: #fff;
  font-size: 15px;
  text-align: center;
  width: 28px;
  height: 28px;
  padding: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  transition: all 0.2s ease;
}
.search_result_wrap .title_parts .btn.active {
  border: solid 1px #fd7686;
  background: #fd7686;
  color: #fff;
  opacity: 1;
}
@media (min-width: 768px) {
  .search_result_wrap .title_parts .btn:focus,
  .search_result_wrap .title_parts .btn:hover {
    border: solid 1px #fd7686;
    background: #fff;
    color: #fd7686;
    opacity: 1;
  }
  .search_result_wrap .title_parts .btn:active {
    border: solid 1px #fd7686;
    background: #fd7686;
    color: #fff;
    opacity: 1;
  }
}
.search_result_wrap .title_parts .btn::before {
  content: "\f443";
  display: inline-block;
  font-family: "Ionicons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-rendering: auto;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  z-index: 1;
  transform: translate(0, 2.5%) scaleX(0.9);
  color: inherit;
}
@media (max-width: 767.98px) {
  .search_result_wrap .title_parts .btn {
    top: 12px;
  }
}

/**
 * search result item company
**/
.search_result_item .company {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  padding: 0 25px;
}
@media (max-width: 767.98px) {
  .search_result_item .company {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    padding: 0 16px;
  }
}


/**
 * search result item button and button group
**/
.search_result_item .box_btn {
  margin: 8px 0 0;
  padding: 0;
  gap: 8px;
  order: 99;
}
.search_result_item .box_btn .btn {
  font-size: 12px;
  height: 30px;
  flex: 1 1;
}


/**
 * search result item grade group
**/
.search_result_wrap .grade_parts {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  margin: 0;
  gap: 4px;
  position: relative;
}
.search_result_wrap *+.grade_parts {
  margin-top: 12px;
}
@media (max-width: 767.98px) {
  .search_result_wrap .grade_parts {
    margin: 0;
  }
}


/**
 * search result item grade tag (grade item)
**/
.search_result_wrap .grade_parts .grade_parts_tags {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  gap: 4px;
}
@media (max-width: 767.98px) {
  .search_result_wrap .grade_parts .grade_parts_tags {}
}


/**
 * search result item grade タグ・カテゴリ（グレードタグ）
 * ※詳細ページと共通のスタイル
**/
.grade_parts_tags > label {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 2px;
  border: solid 1px var(--site-border-c);
  background: #fff;
  color: inherit;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.1;
  text-align: center;
  min-width: 120px;
  margin: 0;
  padding: 4px 12px;
  position: relative;
  z-index: 1;
  cursor: pointer;
}

.grade_parts_tags > label:focus,
.grade_parts_tags > label:hover {
  opacity: 1;
}
.grade_parts_tags > label > button {
  border: none;
  background: transparent;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 5;
  cursor: pointer;
}
.grade_parts_tags > label > [data-balloon]::after {
  content: attr(data-balloon);
  border-radius: 4px;
  background: rgba(17, 17, 17, .9);
  color: #fff;
  font-size: 12px;
  font-feature-settings: 'palt';
  font-weight: 400;
  line-height: 1.4;
  white-space: normal;
  min-width: 112px;
  padding: 4px;
  margin-bottom: 11px;
}
.grade_parts_tags > label:focus > button,
.grade_parts_tags > label:hover > button,
.grade_parts_tags > label > button:focus,
.grade_parts_tags > label > button:hover {
  opacity: 1;
}
.grade_parts_tags > label > button > img {
  display: none;
}
.grade_parts_tags > label > button > [class*="fa-"] {
  display: none;
}
@media (max-width: 767.98px) {
  .grade_parts_tags > label {
    font-size: 12px;
    min-width: 96px;
  }
  .grade_parts_tags > label > button {
    top: 6px;
    right: 5px;
  }
}
.grade_parts_tags .grade_parts_tag1,
.grade_parts_tags .grade_parts_tag2,
.grade_parts_tags .grade_parts_tag3,
.grade_parts_tags .grade_parts_tag4,
.grade_parts_tags .grade_parts_tag5,
.grade_parts_tags .grade_parts_tag6,
.grade_parts_tags .grade_parts_tag7,
.grade_parts_tags .grade_parts_tag8,
.grade_parts_tags .grade_parts_tag9,
.grade_parts_tags .grade_parts_tag10,
.grade_parts_tags .grade_parts_tag11,
.grade_parts_tags .grade_parts_tag12,
.grade_parts_tags .grade_parts_tag13,
.grade_parts_tags .grade_parts_tag14,
.grade_parts_tags .grade_parts_tag15,
.grade_parts_tags .grade_parts_tag16,
.grade_parts_tags .grade_parts_tag17,
.grade_parts_tags .grade_parts_tag18,
.grade_parts_tags .grade_parts_tag19,
.grade_parts_tags .grade_parts_tag20,
.grade_parts_tags .grade_parts_tag21,
.grade_parts_tags .grade_parts_tag22,
.grade_parts_tags .grade_parts_tag23,
.grade_parts_tags .grade_parts_tag99 {
  /*border: solid 1px #C70000;*/
  /*background: #C70000;*/
  /*color: #fff;*/
  border: solid 1px var(--site-c-main-light);
  background: var(--site-c-main-light);
  color: #fff;
}


/**
 * search result item grade スコア
**/
/* .grade_parts_score */
.search_result_wrap .grade_parts .grade_parts_score {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-end;
  align-content: center;
  align-items: center;
  color: var(--site-c-gray);
  margin-left: auto;
  padding-right: 28px;
}
@media (max-width: 767.98px) {
  .search_result_wrap .grade_parts .grade_parts_score {
    padding-right: 36px;
  }
}
.search_result_wrap .grade_parts .grade_parts_score label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  text-align: center;
  width: 100%;
  position: relative;
  z-index: 1;
  opacity: 0.66;
}

.search_result_wrap .grade_parts .grade_parts_score p {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  width: 100%;
}

.search_result_wrap .grade_parts .grade_parts_score b {
  display: inline-block;
  font-size: 10px;
  font-weight: inherit;
  line-height: 14px;
}

.search_result_wrap .grade_parts .grade_parts_score b > a {
  display: inline-block;
  color: #e2ac40;
  font-size: 14px;
  font-weight: inherit;
  line-height: 14px;
}

.search_result_wrap .grade_parts .grade_parts_score small {
  display: inline-block;
  font-size: 10px;
  font-weight: inherit;
  line-height: 14px;
}

.search_result_wrap .grade_parts .grade_parts_score b + small {
  margin-left: 4px;
}

@media (max-width: 767.98px) {
  .search_result_wrap .grade_parts .grade_parts_score {
    width: calc(100% - 88px);
  }
  .search_result_wrap .grade_parts .grade_parts_score label {
    text-align: left;
    width: auto;
    margin-right: 4px;
  }
  .search_result_wrap .grade_parts .grade_parts_score p {
    justify-content: flex-end;
    width: auto;
  }
  .search_result_wrap .grade_parts .grade_parts_score b {
    font-size: 10px;
    line-height: 16px;
  }
  .search_result_wrap .grade_parts .grade_parts_score b > a {
    font-size: 16px;
    font-weight: 700;
    line-height: 16px;
  }
  .search_result_wrap .grade_parts .grade_parts_score small {
    font-size: 10px;
    line-height: 16px;
  }
}


/**
 * search result item grade 新着マーク
**/
.grade_parts_latest {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 2px;
  border: solid 1px var(--site-c-main-light);
  background: var(--site-c-main-light);
  /*color: var(--site-c-main-hue);*/
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.1;
  text-align: center;
  min-width: 44px;
  margin: 0;
  padding: 4px 4px;
}


/* エリア名 .ddd_parts */
.search_result_wrap .grade_parts .ddd_parts {
  font-size: 10px;
  padding: 0 8px;
}

@media (max-width: 1300.98px) {
  .search_result_wrap .grade_parts .ddd_parts {
    padding: 0 8px;
  }
}
@media (max-width: 767.98px) {
  .search_result_wrap .grade_parts .ddd_parts {
    padding: 0 8px;
    width: 8, 80px;
  }
}
.search_result_wrap .grade_parts .ddd_parts > span {
  font-weight: 700;
}

.search_result_wrap .grade_parts .ddd_parts > span:empty {
  display: none;
}

.search_result_wrap .grade_parts .ddd_parts > span::before {
  content: "\f3a3";
  display: inline-block;
  font-family: "Ionicons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-rendering: auto;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--site-c-main);
  transform: translate(0, 16.66%) scale(1.5, 1.5);
  margin: 0 8px 0 0;
}

.search_result_item .img_parts {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: stretch;
  align-items: stretch;
  width: 240px;
  gap: 8px;
}
.search_result_item .img_parts .main_img {
  width: 100%;
}
.search_result_item .img_parts .main_img img {
  border-radius: 0;
  max-width: none;
  width: 100%;
  height: auto;
  aspect-ratio: 12 / 11;
  object-fit: cover;
}
.search_result_item .img_parts .sub_img {
  width: auto;
  height: auto;
  flex: 1 1;
}
.search_result_item .img_parts .sub_img img {
  border-radius: 0;
  max-width: 250px;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  vertical-align: middle;
}

@media (max-width: 767.98px) {
  .search_result_item .img_parts {
    display: flex;
    flex-flow: column wrap;
    justify-content: flex-start;
    align-content: flex-start;
    align-items: flex-start;
    background: #fff;
    width: 100%;
    height: 40vw;
  }
  .search_result_item .img_parts .main_img {
    position: relative;
    width: calc(66.66% - 4px);
    height: 100%;
    margin: 0;
  }
  .search_result_item .img_parts .main_img img {
    max-width: none;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
  }
  .search_result_item .img_parts .main_img:only-child {
    width: 100%;
  }
  .search_result_item .img_parts .sub_img {
    flex: initial;
    width: calc(33.33% - 4px);
    height: calc(50% - 4px);
    margin: 0 0 0 8px;
    position: relative;
  }
  .search_result_item .img_parts .sub_img + .sub_img {
    margin-top: 8px;
  }
  .search_result_item .img_parts .sub_img img {
    max-width: none;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
  }
}
.search_result_item .text_parts {
  width: calc(100% - 252px);
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: flex-start;
  margin: 0;
  position: relative;
}
/* 画像無しの場合 */
.search_result_item .text_parts:first-child {
  width: 100%;
}
@media (max-width: 767.98px) {
  .search_result_item .text_parts {
    width: 100%;
    padding: 14px 0 0;
  }
}
.search_result_item .text_parts > * {
  /*order: 5;*/
  width: 100%;
}
.search_result_item .text_parts > .title_parts {
  /* NOTE: order以外記述禁止 */
  /*order: 0;*/
}
.search_result_item .text_parts > .grade_parts {
  /* NOTE: order以外記述禁止 */
  /*order: 0;*/
}

.search_result_item__pr_title {
  color: var(--site-c-main);
  font-size: 20px;
  font-weight: 700;
  font-feature-settings: "palt";
  line-height: 28px;
  margin: 0 0 14px;
}
*+.search_result_item__pr_title {
  border-top: solid 1px var(--site-border-c);
  padding: 16px 0 0;
}
.search_result_item__pr_title a {
  color: inherit;
}
@media (max-width: 767.98px) {
  .search_result_item__pr_title {
    font-size: 16px;
    margin: 0 0 6px;
  }
  *+.search_result_item__pr_title {
    border-top: none;
    padding: 12px 0 0;
  }
  .search_result_item__pr_title a {
    color: #fa5882;
    font-weight: 700;
    text-decoration: underline;
  }
  .search_result_item__pr_title a * {
    color: inherit;
  }
}

.search_result_item .text_parts>h4:not([class]),
.search_result_item .text_parts>h5:not([class]) {
  color: inherit;
  font-size: inherit;
  font-weight: 700;
  font-feature-settings: "palt";
  margin: 0 0 8px;
}
.search_result_item .text_parts>*+h4:not([class]),
.search_result_item .text_parts>*+h5:not([class]) {
  padding: 16px 0 0;
}
.search_result_item .text_parts>h4:not([class]) a,
.search_result_item .text_parts>h5:not([class]) a {
  color: inherit;
  text-decoration: underline;
}


.search_result_item__pr_desc {
  margin: 0;
}
@media (max-width: 767.98px) {
  .search_result_item__pr_desc {
    font-size: 12px;
    line-height: 18px;
  }
  .search_result_item__pr_desc a {
    color: inherit;
    font-size: inherit;
    font-weight: 400;
    text-decoration: underline;
    opacity: 0.75;
    margin-left: 3px;
  }
}


/**
 * price
 * NOTE: 所在地、交通、価格など
**/
.price_parts {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  font-size: 12px;
  width: 100%;
  gap: 4px 0;
  order: 5;
}
*+.price_parts {
  margin-top: 8px;
}
.price_parts .icon_img {
  display: inline-block;
}
.price_parts .price_title {
  display: block;
  width: 4em;
}
.price_parts *+.price_title {
  margin-left: 2em;
}
.price_parts .price_text {
  display: block;
  flex: initial;
}
.price_parts b {
  color: var(--site-c-darkred);
  font-size: 16px;
  font-weight: 400;
}


/**
 * address
 * NOTE: 所在地、交通、価格など
**/
.address_parts {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  font-size: 12px;
  width: 100%;
  gap: 4px 0;
  order: 5;
}
*+.address_parts {
  margin-top: 12px;
}
.price_parts+.address_parts {
  margin-top: 2px;
}
.address_parts .icon_img {
  display: inline-block;
}
.address_parts .address_title {
  display: block;
  width: 4em;
}
.address_parts .address_text {
  display: block;
  width: calc( 100% - 4em );
}
@media (max-width: 767.98px) {}


/**
 * info
 * NOTE: 様々な情報
**/
.info_parts {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  background: var(--site-bg-c-underlayer);
  font-size: 12px;
  width: 100%;
  padding: 8px 12px;
  gap: 4px 0;
  order: 5;
}
*+.info_parts {
  margin-top: 8px;
}
.info_parts .icon_img {
  display: inline-block;
}
.info_parts .info_title {
  display: block;
  width: 4.5em;
}
.info_parts .info_text {
  display: block;
  width: calc( 100% - 4.5em );
}
@media (max-width: 560.98px) {
  .info_parts .info_title {
    display: block;
    width: 5em;
  }
  .info_parts .info_text {
    display: block;
    width: calc( 100% - 5em );
  }
}


/**
 * タグ・カテゴリ（住所下のタグ）
**/
.search_result_item .tag_parts {
  width: 100%;
  order: 4;
}


/**
 * もっとみるボタン
**/
.search_result_wrap .view_more {
  margin: 28px 0 16px;
}
.search_result_wrap .view_more .view_more_btn {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  border: solid 1px var(--site-c-sub);
  background: #fff;
  color: var(--site-c-sub);
  font-size: 18px;
  font-weight: 700;
  width: 80%;
  max-width: 300px;
  min-height: 60px;
  margin: 0 auto;
}
@media (max-width: 767.98px) {
  .search_result_wrap .view_more .view_more_btn {
    width: 80%;
  }
}


/**
 * 閲覧履歴ページ
**/
/* 閲覧履歴ページ削除ボタン */
.search_result_item .btn_bookmark_delete {
  display: block;
  color: var(--site-c-gray);
  position: absolute;
  right: 0;
  top: 0;
  z-index: 999;
  transform: translate(50%, -50%);
}

/* 削除ボタン アイコン */
.search_result_item .btn_bookmark_delete::before {
  content: "\f12a";
  display: inline-flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  font-family: "Ionicons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-rendering: auto;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  border-radius: 50%;
  border: solid 1px var(--site-bg-c-underlayer);
  box-shadow: 0 4px 8px -2px rgba(0, 0, 0, 0.2);
  background: #fff;
  font-size: 16px;
  width: calc(1em + 8px);
  height: calc(1em + 8px);
}

/* 削除ボタン 文言 */
.search_result_item .btn_bookmark_delete > span {
  display: none;
  margin-left: 4px;
}