@charset "utf-8";

/* =========================================================
   店舗詳細ページ (shop/store/)
   - 2カラムレイアウト
   - 左: ブランドロゴ + 店舗名 + 情報テーブル
   - 右: Google マップ + ルート検索ボタン + 注意書き
   ========================================================= */

.sec-store-detail {
  padding: 0 0 200px;
  background: var(--white);
}

.store-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* ----- 左: 店舗情報 ----- */
.store-info { padding: 0; }
.store-brand-logo {
  display: block;
  max-width: 180px;
  height: auto;
  margin-bottom: 16px;
}
.store-name {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.4;
}
.store-info-table {
  border-top: 1px solid var(--gray);
}
.store-info-table > div {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--gray);
  align-items: start;
}
.store-info-table dt {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
}
.store-info-table dd {
  margin: 0;
  font-size: 18px;
  line-height: 1.8;
  color: var(--text);
}

/* ----- 右: マップ + ルート検索 ----- */
.store-map { display: flex; flex-direction: column; gap: 16px; }
.store-map-embed {
  width: 100%;
  height: 280px;
  background: #e5e3d8;
  border-radius: 4px;
  overflow: hidden;
}
.store-map-embed iframe { width: 100%; height: 100%; border: 0; }

.btn-route {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 18px 32px;
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  font-size: 20px;
  border-radius: 999px;
  transition: opacity .2s;
}
.btn-route:hover { opacity: .9; }
.btn-route img {
  display: block;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.store-map-notes {
  font-size: 14px;
  color: var(--text);
  line-height: 1.8;
}
.store-map-notes p { margin: 0; }

/* ===========================================================
   レスポンシブ
   =========================================================== */
@media (max-width: 768px) {
  .sec-store-detail {
  padding: 0 0 100px;
  background: var(--white);
}
  .store-detail-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .store-name { font-size: 18px; }
  .store-info-table > div { grid-template-columns: 70px 1fr; gap: 12px; padding: 14px 0; }
  .store-map-embed { height: 240px; }
}
