@charset "UTF-8";
/* 物件カード（ショートコード .eslead-property-card-root のみ） */

.eslead-property-card-root {
  max-width: 1000px;
  margin: 60px auto;
}

.eslead-property-card-root .top_prop_card {
  background: #fff;
  border: 1px solid #e4ecf7;
  border-radius: 8px;
  padding: 8px;
  display: grid;
  grid-template-columns: minmax(280px, 41%) minmax(0, 1fr);
  grid-template-areas:
    "visual area"
    "visual name"
    "visual specs"
    "callout callout"
    "actions actions";
  gap: 0 18px;
}

.eslead-property-card-root .top_prop_visual { grid-area: visual; }
.eslead-property-card-root .top_prop_area { grid-area: area; }
.eslead-property-card-root .top_prop_name_row { grid-area: name; }
.eslead-property-card-root .top_prop_specs { grid-area: specs; }
.eslead-property-card-root .top_prop_callout { grid-area: callout; }
.eslead-property-card-root .top_prop_actions { grid-area: actions; }

.eslead-property-card-root .top_prop_visual {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 4px;
  background: #e8eef5;
}

.eslead-property-card-root .top_prop_visual_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.eslead-property-card-root .top_prop_overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 8px 12px;
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
  font-size: 12px;
  line-height: 1.5;
  font-weight: 600;
}

.eslead-property-card-root .top_prop_area {
  margin: 0 0 10px!important;
  font-size: 12px;
  line-height: 1.5;
  color: #888;
}

.eslead-property-card-root .top_prop_name_row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0 0 10px;
  border-bottom: 1px solid #e5e5e5;
}

.eslead-property-card-root .top_prop_name_ico {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 9px;
  border-color: transparent transparent transparent #0C5CFF;
  flex-shrink: 0;
}

.eslead-property-card-root .top_prop_name_link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: inherit;
}

.eslead-property-card-root .top_prop_name_txt {
  font-size: 20px;
  line-height: 1.3;
  font-weight: 700;
  color: #111;
}

.eslead-property-card-root .top_prop_name_link .top_prop_ico {
  flex-shrink: 0;
  color: #0C5CFF;
}

.eslead-property-card-root .top_prop_specs {
  margin: 0;
  padding-top: 8px;
}

.eslead-property-card-root .top_prop_spec {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 8px 12px;
  padding: 11px 0;
  border-bottom: 1px dotted #ccc;
  font-size: 13px;
  line-height: 1.6;
}

.eslead-property-card-root .top_prop_spec:last-child { border-bottom: none; }

.eslead-property-card-root .top_prop_spec_lbl {
  margin: 0;
  font-weight: 700;
  color: #222;
}

.eslead-property-card-root .top_prop_spec_val {
  margin: 0;
  color: #333;
  word-break: break-word;
}

.eslead-property-card-root .top_prop_callout {
  margin: 8px 20px 0;
  padding: 12px 22px 13px;
  border: 2px solid #b8d4ff;
  border-radius: 4px;
  position: relative;
}

.eslead-property-card-root .top_prop_callout_txt {
  margin: 0!important;
  color: #0C5CFF;
  font-size: 38px;
  line-height: 1.35;
  font-weight: 700;
  font-size: 14px !important; 
}

.eslead-property-card-root .top_prop_actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 22px 0 4px;
}

.eslead-property-card-root .top_prop_btn {
  width: 160px;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  line-height: 1.3;
}

.eslead-property-card-root .top_prop_btn .top_prop_ico {
  flex-shrink: 0;
  color: #fff;
}

.eslead-property-card-root .top_prop_btn_dl { background: #0b3d91; }
.eslead-property-card-root .top_prop_btn_go { background: #0d9f6e; }

@media screen and (max-width: 1000px) {
  .eslead-property-card-root .top_prop_name_txt { font-size: 32px; }
  .eslead-property-card-root .top_prop_callout_txt { font-size: 32px; }
}

@media screen and (max-width: 768px) {
  .eslead-property-card-root .top_prop_card {
    grid-template-columns: 1fr;
    grid-template-areas:
      "visual"
      "area"
      "name"
      "specs"
      "callout"
      "actions";
    gap: 0;
    padding: 10px;
  }

  .eslead-property-card-root .top_prop_name_txt {
    font-size: 20px;
  }

  .eslead-property-card-root .top_prop_spec {
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .eslead-property-card-root .top_prop_callout {
    margin: 12px 0 0;
    padding: 12px 14px 14px;
  }

  .eslead-property-card-root .top_prop_callout_txt {
    font-size: 20px;
  }

  .eslead-property-card-root .top_prop_actions {
    margin-top: 16px;
  }
}
