/* ===== store.css: 店舗専用ページ（錦糸町店・新宿店） ===== */
/* 住所・TEL・アクセス・地図・写真まわりは shop.css の .sp-* クラスを流用し、ここでは不足分のみ追加する */

.st-lead {
  padding: 0 18px 20px;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,0.75);
}

.st-lead-small {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}

/* ===== セクション共通 ===== */
.st-section {
  padding: 24px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.st-section-label {
  font-size: 9px;
  letter-spacing: 0.3em;
  color: #b82020;
  border: 1px solid #b82020;
  border-radius: 2px;
  padding: 2px 8px;
  display: inline-block;
  margin-bottom: 14px;
}
.st-section-title {
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

/* ===== 営業時間カード ===== */
.st-hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}
.st-hours-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 14px 12px;
  text-align: center;
}
.st-hours-card-label {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 6px;
}
.st-hours-card-time {
  font-size: 15px;
  font-weight: bold;
  color: #fff;
}

/* ===== 料金表（system.blade.phpの表記・金額をそのまま使う） ===== */
.st-price-table-wrap {
  overflow-x: auto;
  margin-bottom: 18px;
}
.st-price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.st-price-table th {
  text-align: right;
  font-weight: normal;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  padding: 6px 8px;
}
.st-price-table td {
  padding: 10px 8px;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: right;
  color: #fff;
  white-space: nowrap;
}
.st-price-table td:first-child {
  text-align: left;
  white-space: normal;
}
.st-price-label {
  display: block;
  font-weight: bold;
}
.st-price-note {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.5);
}

/* ===== リンクボタン ===== */
.st-link-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  background: linear-gradient(135deg, #8a1818, #c82020);
  color: #fff;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 0.04em;
  text-align: center;
}
.st-link-btn:active { opacity: 0.8; }

/* ===== この店のイベント ===== */
.st-event-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}
.st-event-card {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 44px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
}
.st-event-card:active { opacity: 0.8; }
.st-event-date {
  font-size: 12px;
  color: #e8c85a;
  flex-shrink: 0;
  white-space: nowrap;
}
.st-event-title {
  font-size: 14px;
  line-height: 1.5;
}
.st-event-none {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}

/* ===== 最近の来店予告（引用・本文のみ） ===== */
.st-visit-label {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
  margin: 14px 0 10px;
}
.st-visit-list {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.st-visit-item {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  padding: 10px 14px;
}

/* ===== もう一方の店舗・MAP一覧へ ===== */
.st-store-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px 18px;
}
.st-store-link {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 14px;
}
.st-store-link:active { opacity: 0.8; }
