/* 店舗紹介（TOP埋め込み・/shop/ ページ共通） */
.shop-intro {
  max-width: 960px;
  margin: 0 auto;
}

.shop-intro__title {
  font-size: 1.375rem;
  margin: 0 0 1rem;
  text-align: center;
  color: #113c91;
}

.shop-intro__gallery {
  display: grid;
  gap: .75rem;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  margin-bottom: 1.25rem;
}

.shop-intro__photo {
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  background: #edf2f7;
  aspect-ratio: 4 / 3;
}

.shop-intro__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.shop-intro__body {
  line-height: 1.75;
  margin-bottom: 1.25rem;
  color: #334155;
}

.shop-intro__meta {
  margin: 0 0 1.25rem;
  display: grid;
  gap: .75rem;
}

.shop-intro__meta > div {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: .75rem;
  padding: .625rem 0;
  border-bottom: 1px solid #e2e8f0;
}

.shop-intro__meta dt {
  margin: 0;
  font-weight: 700;
  color: #475569;
}

.shop-intro__meta dd {
  margin: 0;
}

.shop-intro__meta a {
  color: #113c91;
}

.shop-intro__map {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .08);
}

.shop-intro__map iframe {
  display: block;
  width: 100%;
}

.shop-intro__link {
  text-align: center;
  margin: 0;
}

.shop-intro__link a {
  color: #113c91;
  font-weight: 700;
}

.shop-intro__back {
  margin: 1.5rem 0 0;
  text-align: center;
}

.shop-intro__back a {
  color: #113c91;
}

.shop-intro--loading {
  min-height: 4rem;
}

@media (min-width: 768px) {
  .shop-intro__title { font-size: 1.625rem; }
  .shop-intro__gallery { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
}
