/* 店舗詳細 — Figma 5-1 店舗详情 (node 1:393) */

.store-detail-page {
  background: #fff;
}

.store-detail-page .mall-crumb {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2rem 0.8rem;
}

.store-detail-page .mall-crumb > a.home {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 1.4rem;
  width: 1.4rem;
  height: 1.6rem;
  color: #ff4d47;
}

.store-detail-page .mall-crumb > a.home .iconfont {
  font-size: 1.4rem;
  line-height: 1;
  color: #ff4d47;
}

.store-detail-page .mall-crumb p,
.store-detail-page .mall-crumb p a {
  color: #666;
  font-size: 1rem;
  line-height: 1.6rem;
}

.store-detail-page .cd-root {
  padding: 0 0 2.4rem;
}

.store-detail-page .cd-root.is-loading,
.store-detail-page .cd-root.is-empty {
  padding: 2.4rem 2rem;
  color: var(--h5-muted, #999);
  font-size: 1.2rem;
  line-height: 2.2rem;
  text-align: center;
}

/* —— Top —— */
.sd-top {
  padding: 0 2rem 2.4rem;
}

.sd-photo {
  width: 100%;
  max-width: 33.5rem;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  overflow: hidden;
  border: 0.1rem solid #333;
  border-radius: 0.8rem;
  box-shadow: 0.4rem 0.4rem 0 rgba(0, 0, 0, 0.2);
  background: #f4f4f4;
}

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

.sd-copy h1 {
  margin-top: 2rem;
  color: #333;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2.8rem;
}

.sd-subtitle {
  display: block;
  margin-top: 0.4rem;
  color: #ff4d47;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 2.4rem;
}

.sd-divider {
  display: block;
  width: 100%;
  height: 0.1rem;
  margin: 1.2rem 0;
  border: 0;
  background: #e6e6e6;
}

.sd-meta {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sd-meta li {
  display: grid;
  grid-template-columns: 1.6rem 6rem 1fr;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.4rem 0;
}

.sd-meta img,
.sd-meta .iconfont {
  width: 1.6rem;
  height: 1.6rem;
  margin-top: 0.6rem;
  color: #ff4d47;
  font-size: 1.6rem;
  line-height: 1;
  object-fit: contain;
}

.sd-meta .label {
  color: #333;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2.8rem;
}

.sd-meta .value {
  color: #666;
  font-size: 1.2rem;
  line-height: 2.8rem;
  text-align: right;
  word-break: break-word;
}

.sd-fav {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 1.6rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: #ff4d47;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2rem;
  cursor: pointer;
}

.sd-fav svg,
.sd-fav .fav-ico {
  width: 1.6rem;
  height: 1.6rem;
  flex-shrink: 0;
  color: #ff4d47;
}

.sd-fav.is-on {
  font-weight: 700;
}

.sd-actions {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
}

.sd-actions a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-width: 0;
  min-height: 4.8rem;
  padding: 1.2rem 0.8rem;
  border: 0.2rem solid #fff;
  border-radius: 999px;
  box-shadow: 0.2rem 0.4rem 0 rgba(0, 0, 0, 0.4);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 2.4rem;
  text-align: center;
  text-decoration: none;
}

.sd-btn-red {
  background: linear-gradient(101deg, #f86864 0%, #ff4d47 100%);
  color: #fff;
}

.sd-btn-yellow {
  background: linear-gradient(101deg, #ffe478 0%, #ffd115 100%);
  color: #333;
}

.sd-phone {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  margin-top: 2.4rem;
}

.sd-phone-caption {
  color: #333;
  font-size: 1.2rem;
  line-height: 2.4rem;
}

.sd-phone a {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: #ff4d47;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2.8rem;
  text-decoration: none;
}

.sd-phone img {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
}

/* —— Mid yellow band —— */
.sd-mid {
  position: relative;
  margin-top: 5.4rem;
  padding: 0 2rem 3.2rem;
  background: linear-gradient(180deg, #fffcef 0%, #fffae3 100%);
}

.sd-mid::before {
  content: "";
  position: absolute;
  left: 0;
  top: -7.4rem;
  width: 100%;
  height: 7.4rem;
  background: url("../../assets/images/base-yellow-top-bg.png") center / 100% 100% no-repeat;
}

.sd-about {
  position: relative;
  z-index: 1;
  padding-top: 2.4rem;
}

.sd-about h2 {
  color: #1a1a1a;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2.8rem;
  text-align: center;
}

.sd-about-lead {
  margin-top: 0.8rem;
  color: #666;
  font-size: 1.4rem;
  line-height: 2.4rem;
  text-align: center;
}

.sd-gallery {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 2rem;
}

.sd-gallery figure {
  margin: 0;
  overflow: hidden;
  border: 0.6rem solid #fff;
  border-radius: 0.8rem;
  background: #f4f4f4;
  aspect-ratio: 520 / 360;
}

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

.store-detail-page .bottom-cta {
  margin-top: 0;
}

.store-detail-page .bottom-cta .btn-green > img {
  width: 2.2rem;
  height: 2.2rem;
  flex-shrink: 0;
  object-fit: contain;
}
