@charset "UTF-8";
/* ==========================================================================
   showroom.css
   「現地見学ツアー」（/showroom）専用の拡張スタイル

   - common.css のブランド変数（--color-brand-*）のみを参照し、独自の色は持たない
   - すべて .tour- プレフィックスで名前空間を切り、既存セレクタは一切上書きしない
   - common.css のブレイクポイント（768px）に合わせてレスポンシブを定義
   ========================================================================== */

/* ==========================================================================
   1. 開催条件チップ（予約制 / 雨天決行 / 参加無料）
   ========================================================================== */
.tour-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.tour-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.tour-chip:first-child {
  background: linear-gradient(90deg, #e0b94f 0%, var(--color-brand-gold-2) 100%);
  border-color: rgba(201, 154, 46, 0.4);
  color: #111;
}

/* ==========================================================================
   2. カテゴリラベル（賃貸専用型 3階建物件）
   ========================================================================== */
.tour-category {
  display: inline-flex;
  align-items: center;
  margin-top: 0.9rem;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-soft);
  background: rgba(255, 255, 255, 0.12);
  border-left: 4px solid var(--color-brand-gold);
  font-size: clamp(0.9rem, 1.6vw, 1.15rem);
  font-weight: 900;
  color: #fff;
}

/* ==========================================================================
   3. メインビジュアル（画像未設定時はプレースホルダーを描画）
   ========================================================================== */
.tour-visual {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-card);
  background: var(--color-brand-surface);
  box-shadow: var(--shadow-card);
  aspect-ratio: 4 / 3;
}

.tour-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 実画像を表示する場合は縦横比を固定しない。
   画像内に焼き込まれた注記や建物上下が cover で切れるのを防ぐ。
   （.tour-visual 単体より詳細度が高いため、後段のメディアクエリにも勝つ） */
.tour-visual.is-image {
  aspect-ratio: auto;
  background: #fff;
}

.tour-visual.is-image img {
  height: auto;
  object-fit: contain;
}

/* 画像が未設定のときの代替表示（レイアウトを崩さないための土台） */
.tour-visual-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  height: 100%;
  padding: 1.5rem;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(214, 174, 58, 0.14) 0%, rgba(214, 174, 58, 0) 46%),
    linear-gradient(140deg, #0d2b52 0%, #123a66 58%, #18497d 100%);
  color: rgba(255, 255, 255, 0.9);
}

.tour-visual-placeholder-icon {
  font-size: 2.25rem;
  line-height: 1;
}

.tour-visual-placeholder-text {
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.tour-visual-placeholder-sub {
  font-size: 0.8rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}

.tour-visual-note {
  position: absolute;
  left: 0.75rem;
  bottom: 0.75rem;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-pill);
  background: rgba(13, 43, 82, 0.62);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
}

/* ==========================================================================
   4. キャッチコピー（見て！触れて！感じて下さい！）
   ========================================================================== */
.tour-catch {
  margin: 0 0 1.25rem;
  font-size: clamp(1.15rem, 2.4vw, 1.85rem);
  font-weight: 900;
  line-height: 1.4;
  color: var(--color-brand-gold-2);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.6);
}

/* ==========================================================================
   5. 見どころリスト（チェック ＋ マーカー線）
   ========================================================================== */
.tour-highlights {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tour-highlight {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-soft);
  background: var(--color-brand-surface);
  border-left: 4px solid var(--color-brand-cyan);
}

.tour-highlight-mark {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 0.375rem;
  background: var(--color-brand-navy);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 900;
  line-height: 1;
}

.tour-highlight-text {
  font-size: clamp(0.95rem, 1.5vw, 1.08rem);
  font-weight: 800;
  line-height: 1.6;
  color: var(--color-brand-navy);
  /* リーフレット同様、文字の下半分にマーカーを敷く */
  background: linear-gradient(transparent 62%, rgba(214, 174, 58, 0.34) 62%);
}

/* ==========================================================================
   6. 建築概要（見出しバー ＋ 項目グリッド）
   ========================================================================== */
.tour-spec {
  margin-top: 1.5rem;
  border-radius: var(--radius-soft);
  overflow: hidden;
  border: 1px solid rgba(18, 58, 102, 0.1);
}

.tour-spec-band {
  padding: 0.6rem 1rem;
  background: linear-gradient(90deg, #bb8a1d 0%, var(--color-brand-gold) 100%);
  color: #151515;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-align: center;
}

.tour-spec-grid {
  display: grid;
  grid-template-columns: 1fr;
  background: rgba(18, 58, 102, 0.1);
  gap: 1px;
}

.tour-spec-item {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  padding: 0.8rem 1rem;
  background: #fff;
}

.tour-spec-label {
  flex: 0 0 5.5rem;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--color-brand-muted);
}

.tour-spec-value {
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--color-brand-navy);
}

/* ==========================================================================
   7. 会場情報（ラベル ＋ 値の横並び）
   ========================================================================== */
.tour-meta {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.tour-meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.tour-meta-label {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 6.5rem;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, var(--color-brand-navy) 0%, var(--color-brand-navy-2) 100%);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.tour-meta-value {
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  font-weight: 800;
  line-height: 1.6;
  color: var(--color-brand-navy);
}

/* ==========================================================================
   8. 会場リンク（Google マップ）
   ========================================================================== */
.tour-map-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.75rem 1.15rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(47, 181, 230, 0.32);
  background: #fff;
  color: var(--color-brand-navy);
  font-size: 0.9rem;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.tour-map-link:hover {
  transform: translateY(-1px);
  border-color: rgba(47, 181, 230, 0.55);
  box-shadow: 0 10px 24px rgba(13, 43, 82, 0.08);
}

/* ==========================================================================
   9. ご参加にあたっての注意事項
   ========================================================================== */
.tour-notes {
  display: grid;
  gap: 0.6rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.tour-note-item {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.9rem;
  line-height: 1.85;
  color: var(--color-brand-muted);
}

.tour-note-item::before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-brand-gold-2);
  font-weight: 900;
}

/* ==========================================================================
   10. レスポンシブ（common.css と同じ 768px を採用）
   ========================================================================== */
@media (min-width: 768px) {
  .tour-spec-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tour-visual {
    aspect-ratio: 16 / 11;
  }
}
