.store-title-sp,
.store-title-sp img,
.store-title-sp::before,
.store-title-sp::after {
  border-radius: 0 !important;
}
.store-title-sp {
  font-size: 1.4rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
  padding: 10px 0;
  background: url("/sp/shop/img/h2_bg.png") no-repeat center / cover;
  border-radius: 0 !important; /* 角丸解除 */
  line-height: 1.4;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.6);
}

.sp-store-info{
  margin-top: 16px;
  background:#fff;
  border:1px solid #e6e6e6;
  border-radius:8px;
  padding:12px;
}

.sp-sec-ttl{
  font-size:1.1rem;
  font-weight:700;
  margin:0 0 8px;
}

.sp-info-list{
  margin:0;
  padding:0;
}

.sp-info-list .row{
  display:flex;
  gap:12px;
  padding:10px 6px;
  border-top:1px solid #eee;
}
.sp-info-list .row:first-child{ border-top:none; }

.sp-info-list dt{
  min-width:5.5em;           /* ラベル幅（日本語想定） */
  color:#666;
  font-weight:600;
  flex:0 0 auto;
}

.sp-info-list dd{
  margin:0;
  flex:1 1 auto;
  line-height:1.6;
  word-break:break-word;
}

.sp-info-list a{
  color:#0e7cc4;
  text-decoration:underline;
}

/* 端末幅が狭い時は縦積みに */
@media (max-width: 360px){
  .sp-info-list .row{ flex-direction:column; gap:4px; }
  .sp-info-list dt{ min-width:auto; }
}


.sp-store-map{
  margin-top:16px;
  background:#fff;
  border:1px solid #e6e6e6;
  border-radius:8px;
  padding:12px;
}

.map-wrap{
  position:relative;
  padding-bottom:56.25%; /* 16:9比率 */
  height:0;
  overflow:hidden;
  border-radius:6px;
}

.map-wrap iframe{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  border:0;
}

.sp-other-stores{
  margin-top:16px;
  background:#fff;
  border:1px solid #e6e6e6;
  border-radius:8px;
  padding:12px;
}

.sp-store-links{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
}

.sp-store-links .store-card{
  display:flex;
  flex-direction:column;
  text-decoration:none;
  color:#333;
  background:#fafafa;
  border:1px solid #e6e6e6;
  border-radius:8px;
  overflow:hidden;
}

.sp-store-links .store-card img{
  width:100%;
  aspect-ratio: 4 / 3;   /* 画像比率を揃える（代替：height:auto; object-fit:cover） */
  object-fit:cover;
  display:block;
}

.sp-store-links .store-card .name{
  font-size:.95rem;
  font-weight:600;
  padding:8px 10px;
  text-align:center;
}

.sp-store-links .more-link .name.underline{
  text-decoration:underline;
  position:relative;
}

.sp-store-links .more-link .name.underline::after{
  content:" →";
  font-weight:400;
}

/* 画面が狭いときは1列に（任意） */
@media (max-width: 360px){
  .sp-store-links{ grid-template-columns:1fr; }
}

/* ===== 店長コメント（吹き出し＋店長名は画像下） ===== */
.sp-manager-bubble {
  margin-top: 16px;
}

.bubble-wrap {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.bubble-avatar-wrap {
  flex: 0 0 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bubble-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid #e6e6e6;
  background: #f3f3f3;
}

.bubble-name {
  margin: 4px 0 0;
  font-weight: 700;
  font-size: .85rem;
  color: #333;
  text-align: center;
}

.bubble {
  position: relative;
  flex: 1 1 auto;
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  padding: 10px 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}

.bubble::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 16px;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 8px solid #e6e6e6; /* 外枠色 */
}

.bubble::after {
  content: "";
  position: absolute;
  left: -7px;
  top: 16px;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-right: 7px solid #fff; /* 背景色 */
}

.bubble-text {
  margin: 0;
  line-height: 1.7;
}

/* 狭幅時は縦積み */
@media (max-width: 480px) {
  .bubble-wrap {
    flex-direction: column;
    align-items: center;
  }
  .bubble-avatar-wrap {
    flex: none;
    margin-bottom: 8px;
  }
  .bubble::before,
  .bubble::after {
    display: none;
  }
}