/* ===================================================================
   Estate Icons — 完全版（ゴール合わせ）
   前提：Font Awesome 5 Free を読み込済み（fa5-free）
   目的：
     - single-estate（個別ページ） → 中央揃え
     - style_normal（一覧ページ） → 左揃え
   =================================================================== */

/* ========== 共通部分（構造やアイコンの形） ========== */

/* メタ全体 */
.tt-hero .tt-hero__meta,
.style-normal .tt-hero__meta {
  display: inline-flex;
  flex-direction: column;
  gap: 8px;
  margin: .4em 0 1em;
  padding: 0;
  list-style: none;
}

/* 各行 */
.tt-hero .tt-hero__meta .tt-hero__line {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
  padding: 0;
  font-size: 16px;
  line-height: 1.8;
  color: inherit;
}

iframe {
  width: 100%;
}

.style-normal .tt-hero__meta .tt-hero__line {
  display: inline-flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0 12px;
  margin: 0;
  padding: 0;
  font-size: 14px;
  line-height: 1.2;
  color: inherit;
}

.style-normal .tt-hero__meta .tt-hero__line.tt--addr {
  gap: 0 10px;
}

.style-normal .tt-hero__meta .tt-hero__line.tt--info {
  gap: 0;
}

/* 住所（Font Awesome: map-marker-alt） */
.tt-hero .tt-hero__meta .tt-hero__line.tt--addr::before,
.style-normal .tt-hero__meta .tt-hero__line.tt--addr::before {
  content: "\f3c5";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  font-size: 1.2em;
  line-height: 1;
  transform: translateY(0.05em);
  flex: 0 0 auto;
}

/* 徒歩（Font Awesome: walking） */
.tt-hero .tt-hero__meta .tt-hero__line.tt--walk::before,
.style-normal .tt-hero__meta .tt-hero__line.tt--walk::before {
  content: "\f554";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  font-size: 1.2em;
  line-height: 1;
  flex: 0 0 auto;
}

/* 家（SVG） */
.tt-hero .tt-hero__meta .tt-hero__line.tt--info>svg,
.style-normal .tt-hero__meta .tt-hero__line.tt--info>svg {
  width: 1.5em;
  height: 1.5em;
  max-width: none;
  display: inline-block;
  vertical-align: -0.125em;
  fill: currentColor;
  flex: 0 0 auto;
  transform: translate(-0.35em, -0.00em);
  /* ← 左へ微調整。-0.04〜-0.10em お好みで */
}

/* ========== レイアウト差分 ========== */

/* single-estate（中央揃え） */
.tt-hero .tt-hero__meta {
  align-items: center;
}

.tt-hero .tt-hero__meta .tt-hero__line {
  justify-content: center;
  text-align: center;
}

/* style_normal（左揃え） */
.style-normal {
  margin-top: 16px;
}

.style-normal .tt-hero__meta {
  align-items: flex-start;
}

.style-normal .tt-hero__meta .tt-hero__line {
  justify-content: flex-start;
  text-align: left;
}

/* ===== 微調整（レスポンシブ） ===== */
@media (max-width: 480px) {
  .tt-hero .tt-hero__meta .tt-hero__line {
    font-size: 13.5px;
  }

  .style-normal .tt-hero__meta .tt-hero__line {
    font-size: 13.5px;
  }
}