@charset "UTF-8";

/**
 * sp_search_panel: スマホ用検索パネル
**/
.sp_search_panel {
  display: none;
}
@media (max-width: 767.98px) {
  .sp_search_panel {
    display: block;
    background: #EFF6FF;
    padding: 16px 16px 0;
  }
  .sp_search_form {
    display: block;
  }
  .sp_search_list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .sp_search_item {
    display: block;
  }
  .sp_search_item--full {
    grid-column: 1 / -1;
  }
  .sp_search_select_wrap,
  .sp_search_input_wrap {
    display: block;
    width: 100%;
    position: relative;
  }
  .sp_search_select_wrap select,
  .sp_search_input_wrap input {
    width: 100%;
    height: 48px;
    padding: 0 16px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    background: #fff;
    border: 1px solid #CBD5E1;
    border-radius: 8px;
    appearance: none;
    -webkit-appearance: none;
    position: relative;
    z-index: 1;
    pointer-events: auto;
    touch-action: manipulation;
  }
  .sp_search_select_wrap select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23333' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 12px;
    padding-right: 36px;
  }
  .sp_search_input_wrap input::placeholder {
    color: #94A3B8;
  }
  .sp_search_bottom {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
  }
  .sp_search_count {
    margin: 0;
    font-size: 14px;
    color: #333;
    white-space: nowrap;
  }
  .sp_search_count b {
    font-size: 28px;
    font-weight: 900;
    line-height: 1;
  }
  .sp_search_clear {
    font-size: 14px;
    color: var(--site-c-main);
    text-decoration: underline;
    white-space: nowrap;
  }
  .sp_search_submit {
    flex: 1;
    height: 48px;
    background: var(--site-c-main);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }
  .sp_search_submit span::before {
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3C/svg%3E");
    background-size: contain;
    vertical-align: middle;
    margin-right: 6px;
  }
}

/**
 * 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 {
  padding: 46px 20px 20px;
  border: none;
  border-radius: 5px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  margin-bottom: 20px;
  background-image: none;
  background-color: #fff;
  position: relative;
  overflow: hidden;
}
@media (max-width: 767.98px) {
  .search_result_item {
    padding: 32px 12px 12px;
    margin: 0 0 14px;
    border-radius: 5px;
  }
}

/**
 * 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 14px;
  }
}

/**
 * search result item inner
**/
.search_result_item_inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 0 20px;
  align-items: start;
}


/**
 * search result item title group
**/
.search_result_wrap .title_parts {
  padding: 0;
}
@media (max-width: 767.98px) {
  .search_result_wrap .title_parts {
    padding: 14px 0 0;
  }
}

.search_result_item__d_name {
  color: #314158;
  font-size: 18px;
  font-weight: 700;
  font-feature-settings: "palt";
  line-height: 1.25;
  margin: 0;
  padding: 0 0 4px;
}
.search_result_item__d_name a {
  color: inherit;
}
@media (max-width: 767.98px) {
  .search_result_item__d_name {
    box-shadow: none;
    font-size: 15px;
    margin: 0;
    padding: 0 0 4px;
  }
}

/* fav heart circle button */
.search_result_wrap .title_parts .btn {
  position: absolute;
  right: 0;
  top: 4px;
  z-index: 1;
  display: flex;
  align-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: solid 1px #fecacf;
  background: #fecacf;
  color: #fff;
  font-size: 15px;
  text-align: center;
  padding: 0;
  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 {
  margin: 0;
  padding: 0 25px 0 25px;
  line-height: 1.6;
  font-size: 14px;
}
@media (max-width: 767.98px) {
  .search_result_item .company {
    margin: 0;
    padding: 0 16px;
    line-height: 1.6;
    font-size: 14px;
  }
}


/**
 * search result item button and button group
**/
.search_result_item .box_btn {
  margin: 0;
  padding: 20px 0 0;
  overflow: hidden;
  order: 99;
  display: none;
}


/**
 * 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;
  gap: 10px;
  padding: 0 0 10px;
  position: static;
}

@media (max-width: 767.98px) {
  .search_result_wrap .grade_parts {
    padding: 0 0 8px;
  }
}


/**
 * search result item grade tag (grade item)
**/
.search_result_wrap .grade_parts .grade_parts_tags {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
}

@media (max-width: 767.98px) {
  .search_result_wrap .grade_parts .grade_parts_tags {
    width: auto;
    padding-right: 0;
    margin: 0;
  }
}


/**
 * search result item grade タグ・カテゴリ（グレードタグ）
 * ※詳細ページと共通のスタイル
**/
.grade_parts_tags > label {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  border: none;
  background: #2A7FAA;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  padding: 0 8px;
  height: 30px;
  border-radius: 0;
  text-align: center;
  position: relative;
  z-index: 1;
  cursor: pointer;
}
.grade_parts_tags > label:last-child {
  border-bottom-right-radius: 10px;
}

.grade_parts_tags > label:focus,
.grade_parts_tags > label:hover {
  opacity: 1;
}

.grade_parts_tags > label > button {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 5;
  border: none;
  background: transparent;
  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: auto;
    height: 22px;
    padding: 0 8px;
  }
  .grade_parts_tags > label > button {
    top: 0;
    right: 0;
  }
}
.grade_parts_tags .grade_parts_tag1 {
  background: #DC2626;
  color: #fff;
}
.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 {
  background: #2A7FAA;
  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;
  }
}


/* エリア名 .ddd_parts */
.search_result_wrap .grade_parts .ddd_parts {
  font-size: 14px;
  padding: 4px 8px;
  background: #DBEAFE;
  border-radius: 6px;
  margin: 0 10px 0 0;
  position: static;
  order: 10;
}

@media (max-width: 1300.98px) {
  .search_result_wrap .grade_parts .ddd_parts {
    padding: 2px 8px;
  }
}
@media (max-width: 767.98px) {
  .search_result_wrap .grade_parts .ddd_parts {
    padding: 2px 8px;
    font-size: 12px;
  }
}
.search_result_wrap .grade_parts .ddd_parts > span {
  font-weight: 700;
  color: var(--site-c-main);
}

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

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

.search_result_item .img_parts {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: stretch;
  align-items: stretch;
  gap: 10px;
}
.search_result_item .img_parts .main_img {
  width: 100%;
  border-radius: 5px;
  overflow: hidden;
}
.search_result_item .img_parts .main_img img {
  max-width: none;
  width: 100%;
  height: 100%;
  aspect-ratio: 31 / 23;
  object-fit: cover;
}
.search_result_item .img_parts .sub_img {
  width: calc((100% - 10px) / 2);
  overflow: hidden;
  border-radius: 5px;
}
.search_result_item .img_parts .sub_img img {
  max-width: none;
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  vertical-align: middle;
}

@media (max-width: 767.98px) {
  .search_result_item .img_parts {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-content: flex-start;
    align-items: flex-start;
    background: #fff;
    width: 100%;
    height: auto;
    gap: 6px;
  }
  .search_result_item .img_parts .main_img {
    position: relative;
    width: 100%;
    height: auto;
    margin: 0;
  }
  .search_result_item .img_parts .main_img img {
    border-radius: 6px;
    max-width: none;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
  }
  .search_result_item .img_parts .main_img:only-child {
    width: 100%;
  }
  .search_result_item .img_parts .sub_img {
    flex: initial;
    width: calc(50% - 3px);
    height: auto;
    margin: 0;
    position: relative;
  }
  .search_result_item .img_parts .sub_img + .sub_img {
    margin-top: 0;
  }
  .search_result_item .img_parts .sub_img img {
    border-radius: 6px;
    max-width: none;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }
}
.search_result_item .text_parts {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: flex-start;
  margin: 0;
  position: static;
}
/* 画像無しの場合 */
.search_result_item .text_parts:first-child {
  width: 100%;
  flex: none;
}
@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: 1;
  margin-bottom: 10px;
}
.search_result_item .text_parts > .grade_parts {
  /* NOTE: order以外記述禁止 */
  order: 0;
  position: static;
  width: 100%;
}

.search_result_item__pr_title {
  color: var(--site-c-main);
  font-size: 16px;
  font-weight: 700;
  font-feature-settings: "palt";
  line-height: 24px;
  margin: 0 0 10px;
}
*+.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 0 20px;
  font-size: 16px;
  color: var(--site-c-main);
  line-height: 1.6;
  order: 2;
}
@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;
  }
}


/**
 * 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;
}
.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) {}


/**
 * タグ・カテゴリ（住所下のタグ）
**/
.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: 30px;
  top: 30px;
  z-index: 1;
  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: 26px;
  width: calc(1em + 20px);
  height: calc(1em + 20px);
}

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


/**
 * result-guidance (会員登録CTA)
**/
.result-guidance {
  margin-bottom: 20px;
  padding: 35px;
  background: #F1F5F9;
  border: 1px solid #D1D5D8;
  border-radius: 5px;
  overflow: hidden;
}
.result-guidance__head {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.result-guidance__head-icon {
  width: 32px;
  flex-shrink: 0;
}
.result-guidance__head-icon img {
  width: 100%;
  height: auto;
}
.result-guidance__head-ttl {
  font-size: 24px;
  font-weight: 700;
  color: var(--site-c-main);
}
.result-guidance__btn {
  margin-inline: auto;
  width: 100%;
  max-width: 480px;
  height: 60px;
}
.result-guidance__btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 100%;
  height: 100%;
  background: #091645;
  border-radius: 5px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  text-decoration: none;
}
.result-guidance__lead {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}
.result-guidance__icon {
  width: 24px;
  margin-left: 6px;
}
.result-guidance__icon img {
  width: 100%;
  height: auto;
}
.result-guidance__txt {
  margin-top: 20px;
  text-align: center;
  font-size: 16px;
  color: #314158;
}
@media (max-width: 767.98px) {
  .result-guidance {
    margin-bottom: 20px;
    padding: 50px 24px;
    border-radius: 5px;
  }
  .result-guidance__head {
    gap: 10px;
    margin-bottom: 10px;
  }
  .result-guidance__head-icon {
    width: 24px;
  }
  .result-guidance__head-ttl {
    font-size: 18px;
  }
  .result-guidance__btn {
    width: 100%;
    max-width: 100%;
    height: 40px;
  }
  .result-guidance__lead {
    font-size: 13px;
  }
  .result-guidance__icon {
    width: 20px;
  }
  .result-guidance__txt {
    margin-top: 15px;
    font-size: 12px;
  }
}


/**
 * address_parts (カード内住所・アクセス)
**/
.search_result_item .address_parts {
  display: flex;
  flex-flow: column nowrap;
  align-content: flex-start;
  align-items: flex-start;
  gap: 6px;
  width: 100%;
  order: 3;
  margin-top: 0;
  margin-bottom: 25px;
}
.address_parts_item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #314158;
}
.address_parts_icon {
  width: 18px;
  height: 18px;
  background: no-repeat center center / contain;
  flex-shrink: 0;
}
.address_parts_icon.icon01 {
  background-image: url("/common/images/result_icon01.png");
}
.address_parts_icon.icon02 {
  background-image: url("/common/images/result_icon02.png");
}
.address_parts_icon.icon03 {
  background-image: url("/common/images/result_icon03.png");
}
.address_parts_text {
  flex: 1;
}
.address_parts_text:empty {
  display: none;
}
.address_parts_item:has(.address_parts_text:empty) {
  display: none;
}
@media (max-width: 767.98px) {
  .address_parts_item {
    font-size: 12px;
  }
  .address_parts_icon {
    width: 12px;
    height: 12px;
  }
}


/**
 * result_contact (カード内ボタンエリア — text_parts内に配置)
**/
.result_contact {
  display: flex;
  gap: 10px;
  width: 100%;
  order: 99;
  padding-top: 16px;
  border-top: none;
  margin-top: auto;
}
.result_contact__btn {
  flex: 1;
  display: block;
  height: 40px;
  text-align: center;
}
.result_contact__btn a {
  width: 100%;
  height: 100%;
  padding: 0 10px;
  color: #62748C;
  font-size: 14px;
  font-weight: 700;
  background: #F1F5F9;
  border: 1px solid #F1F5F9;
  border-radius: 5px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.result_contact__btn.bg01 a {
  color: #fff;
  background: var(--site-c-main);
  border: 1px solid var(--site-c-main);
}
@media (max-width: 767.98px) {
  .result_contact {
    padding-top: 12px;
  }
  .result_contact__btn {
    height: 32px;
  }
  .result_contact__btn a {
    font-size: 12px;
  }
}
/* 空のボタンセルを非表示 */
.result_contact__btn:empty {
  display: none;
}
/* 空のPR説明文を非表示 */
.search_result_item__pr_desc:empty {
  display: none;
}


/**
 * box_btn 旧ボタン非表示
**/
.search_result_item .box_btn {
  display: none;
}


/**
 * h1タイトル非表示
**/
.search_center_wrap__title {
  display: none;
}

/**
 * PR title 非表示（デザインにないため）
**/
.search_result_item__pr_title {
  display: none;
}

/**
 * 口コミスコア・ハート非表示（デザインにないため）
**/
.search_result_wrap .grade_parts .grade_parts_score {
  display: none;
}
.search_result_wrap .title_parts .btn {
  display: none;
}


/**
 * カードデザイン改修（デザインサイト準拠）
**/

/* grade_parts: カード上部バッジ（absolute配置） */
.search_result_item > .search_result_item_inner > .grade_parts {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  width: auto;
  padding: 0;
}
.search_result_item > .search_result_item_inner > .grade_parts .grade_parts_tags {
  position: static;
  display: flex;
}
.search_result_item > .search_result_item_inner > .grade_parts .ddd_parts {
  display: none;
}

/* ランクバッジ */
.grade_parts_tag_rank {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  border: none;
  background: #2A7FAA;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  padding: 0 8px;
  height: 30px;
  border-radius: 0;
  border-bottom-right-radius: 10px;
}
@media (max-width: 767.98px) {
  .grade_parts_tag_rank {
    font-size: 12px;
    height: 22px;
    padding: 0 8px;
  }
}

/* Grid配置: title_partsは2カラム全幅、img/text/contactは右カラム */
.search_result_item > .search_result_item_inner > .title_parts {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  margin-bottom: 15px;
}
.search_result_item > .search_result_item_inner > .img_parts {
  grid-column: 1;
  grid-row: 2 / 4;
}
.search_result_item > .search_result_item_inner > .text_parts {
  grid-column: 2;
  grid-row: 2;
  align-items: flex-start;
  justify-content: flex-start;
}
.search_result_item > .search_result_item_inner > .result_contact {
  grid-column: 2;
  grid-row: 3;
  align-self: end;
}
.search_result_item > .search_result_item_inner > .text_parts > .grade_parts {
  display: none;
}
.search_result_item_inner:has(.search_result_private_overlay) > .title_parts,
.search_result_item_inner:has(.search_result_private_overlay) > .text_parts,
.search_result_item_inner:has(.search_result_private_overlay) > .result_contact {
  filter: blur(6px);
  pointer-events: none;
  user-select: none;
}
.search_result_private_overlay {
  grid-column: 2;
  grid-row: 2 / 4;
  z-index: 30;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: 6px;
  padding: 24px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.search_result_private_overlay .material-symbols-outlined {
  font-size: 28px;
  color: #6b7280;
}
.search_result_private_overlay p {
  margin: 0;
  color: #6B737E;
  font-size: 18px;
  font-weight: 700;
}
.search_result_private_overlay a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 46px;
  padding: 10px 20px;
  border-radius: 999px;
  background: #F97316;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

/* access_badge: デザイン準拠 */
.access_badge {
  display: block;
  padding: 4px 8px;
  width: max-content;
  max-width: 250px;
  height: 30px;
  background: #DBEAFE;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--site-c-main);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex-shrink: 0;
}
.access_badge:empty {
  display: none;
}
@media (max-width: 767.98px) {
  .search_result_item > .search_result_item_inner > .title_parts {
    gap: 8px;
    margin-bottom: 10px;
    flex-wrap: wrap;
  }
  .access_badge {
    font-size: 12px;
    padding: 3px 8px;
    height: auto;
  }
}

/* PR説明文 */
.search_result_item .text_parts > .search_result_item__pr_desc {
  order: 2;
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.6;
}

/* address_parts: 左寄せ・デザイン準拠 */
.search_result_item .address_parts {
  display: flex;
  flex-flow: column nowrap;
  align-content: flex-start;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
  margin-bottom: 25px;
}
.address_parts_item {
  gap: 10px;
  font-size: 16px;
  margin-bottom: 6px;
}
.address_parts_item:last-child {
  margin-bottom: 0;
}
.address_parts_icon {
  width: 21px;
  height: 20px;
}

/* 賃料テーブル — デザイン準拠 */
.price_row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px;
  height: 45px;
  background: #FEF2F2;
  border: 1px solid #FEE2E3;
  border-radius: 6px;
  width: 100%;
  margin-bottom: 10px;
}
.price_row--area {
  background: #F8FAFC;
  border: 1px solid #F1F5F9;
  margin-bottom: 0;
}
.price_row__label {
  font-size: 14px;
  font-weight: 400;
  color: #62748C;
}
.price_row__num {
  font-size: 14px;
  font-weight: 700;
  color: #DC2626;
  line-height: 1;
}
.price_row__num strong {
  font-size: 24px;
  font-weight: 700;
  color: #DC2626;
}
.price_row--area .price_row__num {
  color: #314158;
}
.price_row--area .price_row__num strong {
  font-size: 20px;
  font-weight: 700;
  color: var(--site-c-main);
}
@media (max-width: 767.98px) {
  .price_row {
    padding: 0 12px;
    height: 38px;
  }
  .price_row__label {
    font-size: 12px;
  }
  .price_row__num {
    font-size: 12px;
  }
  .price_row__num strong {
    font-size: 20px;
  }
  .price_row--area .price_row__num strong {
    font-size: 16px;
  }
}

/* result_contact: ボタン — デザイン準拠 */
.result_contact {
  padding-top: 12px;
  margin-top: auto;
}
.result_contact__btn a {
  font-size: 16px;
}
@media (max-width: 767.98px) {
  .search_result_item_inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 0 10px;
  }
  .search_result_item > .search_result_item_inner > .title_parts {
    grid-column: 1 / -1;
    width: 100%;
    gap: 6px;
    margin-bottom: 8px;
  }
  .search_result_item > .search_result_item_inner > .img_parts {
    grid-column: 1;
    grid-row: 2 / 4;
    width: 100%;
  }
  .search_result_item > .search_result_item_inner > .text_parts {
    grid-column: 2;
    grid-row: 2;
    width: 100%;
    padding: 0;
  }
  .search_result_item > .search_result_item_inner > .result_contact {
    grid-column: 1 / -1;
    grid-row: 4;
    width: 100%;
    display: flex;
    gap: 8px;
    border-top: 1px solid #E2E8F0;
    margin-top: 12px;
    padding-top: 12px;
  }
  .result_contact__btn a {
    font-size: 12px;
  }
  .search_result_item .text_parts {
    padding: 0;
  }
  .search_result_item .text_parts > .search_result_item__pr_desc {
    margin-bottom: 6px;
    font-size: 12px;
    line-height: 1.5;
  }
  .search_result_item .address_parts {
    margin-bottom: 8px;
    gap: 4px;
  }
  .address_parts_item {
    margin-bottom: 0;
  }
  .search_result_private_overlay {
    grid-column: 2;
    grid-row: 2 / 4;
    padding: 10px;
    border-radius: 6px;
    gap: 4px;
  }
  .search_result_private_overlay .material-symbols-outlined {
    font-size: 20px;
  }
  .search_result_private_overlay p {
    font-size: 12px;
  }
  .search_result_private_overlay a {
    min-height: 0;
    padding: 6px 10px;
    font-size: 11px;
  }
}
