/* =====================================================
   store-template.css — 店舗ページ専用CSS
   本番ページ（seitai.co.jp/store/*）のデザインを模写
   ===================================================== */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

/* --- Layout --- */
.st-container { max-width: 1152px; margin: 0 auto; padding: 0 16px; }
.st-container--narrow { max-width: 800px; margin: 0 auto; padding: 0 16px; }

/* --- Section Common --- */
.st-section { padding: 80px 0; }
.st-section--light { background: #EFF4F1; }
.st-section--gray { background: #F3F4F6; }
.st-section--dark { background: rgba(0,0,0,0.8); color: #fff; }
.st-section--white { background: #fff; }

.st-section-header { text-align: center; margin-bottom: 48px; }
.st-section-title {
  font-size: 30px;
  font-weight: 700;
  color: #333;
  letter-spacing: 2.4px;
  line-height: 1.5;
}
.st-section--dark .st-section-title { color: #fff; }
.st-section-subtitle {
  font-size: 11px;
  font-weight: 600;
  color: #027F41;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  margin-top: 4px;
}

/* --- Header --- */
.st-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  height: 74px;
  display: flex;
  align-items: center;
}
.st-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.st-header-logo img { height: 40px; width: auto; }
.st-header-nav { display: flex; align-items: center; gap: 24px; }
.st-header-nav-link {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  display: flex;
  align-items: center;
  gap: 4px;
}
.st-header-tel {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  border: 1px solid #E0E0E0;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.st-header-cta {
  background: #027F41;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 12px 24px;
  border: none;
  cursor: pointer;
  height: 50px;
  display: flex;
  align-items: center;
}
.st-header-hamburger {
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
}
.st-header-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #333;
}

/* --- News Ticker --- */
.st-news-ticker {
  position: fixed;
  top: 74px;
  left: 0;
  width: 100%;
  z-index: 45;
  background: #F0F7F2;
  height: 45px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #B0D4BF;
}
.st-news-ticker-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
}
.st-news-badge {
  background: #027F41;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  letter-spacing: 1px;
}
.st-news-date { font-size: 13px; color: #333; font-weight: 500; }
.st-news-text { font-size: 13px; color: #333; flex: 1; }
.st-news-link { font-size: 13px; color: #027F41; font-weight: 500; white-space: nowrap; }

/* --- Hero (Photo Collage) --- */
.st-hero {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  margin-top: 59px; /* header 74px + ticker 45px - body padding-top 60px */
}
.st-hero-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}
.st-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.st-hero-overlay {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255,255,255,0.95);
  padding: 48px 64px;
  text-align: center;
  z-index: 2;
  max-width: 700px;
  width: 90%;
}
.st-hero-shop-badge {
  display: inline-block;
  background: #027F41;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 4px 16px;
  margin-bottom: 12px;
  letter-spacing: 1px;
}
.st-hero-h1 {
  font-size: 28px;
  font-weight: 700;
  color: #333;
  line-height: 1.5;
  letter-spacing: 2px;
  margin: 0 0 16px;
}
.st-hero-catch {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}
.st-hero-catch em {
  font-style: normal;
  color: #027F41;
  font-weight: 700;
}
.st-hero-scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.8);
  border-radius: 50%;
  cursor: pointer;
}

/* --- 3ヶ条 (Declare) --- */
.st-declare { background: #F0F7F2; padding: 80px 0 80px; }
.st-declare-intro { text-align: center; margin-bottom: 32px; font-size: 15px; color: #555; }
.st-declare-list { max-width: 800px; margin: 0 auto; }
.st-declare-item {
  border-bottom: 1px solid #E0E0E0;
  padding: 0;
}
.st-declare-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  color: #333;
  text-align: left;
}
.st-declare-num {
  font-size: 24px;
  font-weight: 900;
  color: #027F41;
  min-width: 36px;
}
.st-declare-icon {
  margin-left: auto;
  font-size: 24px;
  color: #027F41;
  transition: transform 0.3s;
}
.st-declare-item.open .st-declare-icon { transform: rotate(45deg); }
.st-declare-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 16px;
}
.st-declare-item.open .st-declare-body {
  max-height: 500px;
  padding: 0 16px 20px;
}
.st-declare-body p { font-size: 15px; line-height: 1.8; color: #555; }

/* --- Catchcopy + CTA --- */
.st-catchcopy { display: none; } /* 旧キャッチコピー非表示 */

/* --- GIFT Section (共感→訴求→CTA) --- */
.st-gift-section { padding: 80px 0 48px; text-align: center; }
.st-gift-section-heading {
  font-size: 22px;
  font-weight: 700;
  color: #333;
  line-height: 1.8;
  margin-bottom: 32px;
  border-left: none;
  padding-left: 0;
}
.st-gift-section-accent { color: #027F41; }
.st-gift-section-sub {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 32px;
}
.st-gift-section-brand {
  font-size: 14px;
  color: #555;
  margin-bottom: 8px;
}
.st-gift-section-h3 {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  margin-bottom: 24px;
  border-left: none;
  padding-left: 0;
}
.st-gift-section-note {
  font-size: 12px;
  color: #888;
  margin-top: 12px;
}

/* Compare chart */
.st-gift-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 40px;
  border: 1px solid #E0E0E0;
}
.st-gift-compare-col { padding: 32px 24px; text-align: center; }
.st-gift-compare-col--bad { background: #F5F5F5; border-right: 1px solid #E0E0E0; }
.st-gift-compare-col--good { background: #F0F7F2; }
.st-gift-compare-label { font-size: 22px; font-weight: 700; margin-bottom: 20px; }
.st-gift-compare-col--bad .st-gift-compare-label { color: #888; }
.st-gift-compare-col--good .st-gift-compare-label { color: #027F41; }
.st-gift-compare-flow { display: flex; flex-direction: column; gap: 8px; font-size: 15px; font-weight: 600; color: #333; }
.st-gift-compare-loop { color: #c00; font-size: 14px; }
.st-gift-compare-result { color: #027F41; font-size: 18px; }

.st-gift-compare-img { margin-bottom: 40px; }
.st-gift-compare-img img { width: 100%; height: auto; }
.st-gift-logo-wrap { text-align: center; margin-top: 8px; }

/* --- Persona (こんな方が来院されています) --- */
.st-persona {
  background: #F0F7F2;
  padding: 40px 32px;
  margin: 40px auto;
  max-width: 800px;
}
.st-persona-title {
  font-size: 22px;
  font-weight: 700;
  color: #333;
  text-align: center;
  margin-bottom: 24px;
}
.st-persona-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 32px;
}
.st-persona-item {
  font-size: 15px;
  color: #333;
  line-height: 1.7;
}
.st-persona-item::first-letter { color: #027F41; }

/* --- Buttons --- */
.st-btn-green {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #027F41;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  padding: 16px 48px;
  border: none;
  cursor: pointer;
  gap: 8px;
  transition: opacity 0.2s;
}
.st-btn-green:hover { opacity: 0.9; }
.st-btn-green--large {
  font-size: 22px;
  padding: 20px 56px;
  height: 72px;
}
.st-btn-green--pill {
  border-radius: 50px;
  background: linear-gradient(135deg, #027F41, #02994E);
}
.st-btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #D4A24E;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  padding: 16px 48px;
  border: none;
  cursor: pointer;
  gap: 8px;
}

/* --- Selected Reasons (Dark) --- */
.st-reasons { background: rgba(0,0,0,0.8); padding: 128px 0; color: #fff; }
.st-reasons .st-section-title { color: #fff; }
.st-reasons-text {
  text-align: center;
  font-size: 18px;
  line-height: 2;
  max-width: 800px;
  margin: 0 auto;
}

/* --- CTA Banner --- */
.st-cta-banner {
  background: linear-gradient(#fff, #F0F7F2);
  padding: 48px 0;
  text-align: center;
}
.st-cta-banner-heading { font-size: 22px; font-weight: 700; color: #333; margin-bottom: 24px; }

/* --- Comparison --- */
.st-comparison { padding: 80px 0 20px; }
.st-comparison-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 16px;
}
.st-comparison-card {
  border: 1px solid #E0E0E0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  background: #fff;
  overflow: hidden;
}
.st-comparison-card-header {
  padding: 16px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  background: #F5F5F5;
  border-bottom: 1px solid #E0E0E0;
}
.st-comparison-general,
.st-comparison-ours {
  padding: 16px;
  font-size: 14px;
  line-height: 1.7;
}
.st-comparison-general { color: #888; border-bottom: 1px solid #E0E0E0; }
.st-comparison-general::before { content: "一般的な整体"; display: block; font-weight: 700; font-size: 12px; color: #aaa; margin-bottom: 4px; }
.st-comparison-ours { color: #333; }
.st-comparison-ours::before { content: "当院"; display: block; font-weight: 700; font-size: 12px; color: #027F41; margin-bottom: 4px; }

/* --- Photo Strip --- */
.st-photo-strip { display: flex; gap: 4px; overflow: hidden; }
.st-photo-strip img { flex: 1; min-width: 0; height: 250px; object-fit: cover; }

/* --- Local Intro (NEW) --- */
.st-local-intro { padding: 48px 0 0; }
.st-local-intro-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 16px;
  font-size: 16px;
  line-height: 2;
  color: #333;
}
.st-local-intro-body p { margin-bottom: 24px; }

/* --- Symptom Top Grid (店舗固有の上位症状) --- */
.st-symptom-top-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto 48px;
  padding: 0 16px;
}
.st-symptom-top-card {
  background: #fff;
  border: 1px solid #E0E0E0;
  padding: 20px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  transition: background 0.2s;
}
.st-symptom-top-card:hover { background: #F0F7F2; }

/* --- 他の症状ページはこちら --- */
.st-symptom-all-heading {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: #333;
  margin-bottom: 24px;
  padding-top: 16px;
  border-top: 1px solid #E0E0E0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

/* --- Symptom Category Grid --- */
.st-symptom-category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto 32px;
  padding: 0 16px;
}
.st-symptom-category {
  background: #fff;
  border: 1px solid #E0E0E0;
  padding: 24px;
}
.st-symptom-category-title {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  padding-bottom: 8px;
  border-bottom: 3px solid #027F41;
  margin-bottom: 16px;
}
.st-symptom-category-link {
  display: block;
  font-size: 15px;
  color: #333;
  padding: 6px 0;
  transition: color 0.2s;
}
.st-symptom-category-link:hover { color: #027F41; }
.st-symptom-more { text-align: center; }
.st-symptom-more a { color: #027F41; font-weight: 500; font-size: 14px; }

/* --- Menu Grid --- */
.st-menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 16px;
}
.st-menu-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
}
.st-menu-card img { width: 100%; height: 200px; object-fit: cover; }
.st-menu-card-label {
  padding: 16px;
  font-size: 18px;
  font-weight: 700;
  color: #333;
  text-align: center;
}

/* --- Business Hours --- */
.st-hours-table {
  width: 100%;
  max-width: 1056px;
  margin: 0 auto;
  border-collapse: separate;
  border-spacing: 0;
}
.st-hours-table th {
  font-size: 16px;
  font-weight: 700;
  padding: 16px 4px;
  text-align: center;
  border-bottom: 2px solid #027F41;
}
.st-hours-table td {
  font-size: 15px;
  padding: 14px 12px;
  text-align: center;
  border-bottom: 1px solid #E5E7EB;
}
.st-hours-table .st-hours-closed { color: #ccc; }
.st-hours-note { font-size: 13px; color: #888; margin-top: 12px; text-align: center; }

/* --- News List --- */
.st-news-list { max-width: 800px; margin: 0 auto; padding: 0 16px; }
.st-news-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #E5E7EB;
}
.st-news-item-date { font-size: 14px; color: #888; white-space: nowrap; }
.st-news-item-title { font-size: 15px; color: #333; }

/* --- Flow --- */
.st-flow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 16px;
}
.st-flow-card { background: #fff; overflow: hidden; }
.st-flow-card img { width: 100%; height: 200px; object-fit: cover; }
.st-flow-card-body { padding: 20px; }
.st-flow-card-step {
  font-size: 13px;
  font-weight: 700;
  color: #027F41;
  margin-bottom: 4px;
}
.st-flow-card-title { font-size: 20px; font-weight: 700; color: #333; margin-bottom: 8px; }
.st-flow-card-desc { font-size: 14px; color: #555; line-height: 1.7; }

/* --- Access Map --- */
.st-access { padding: 80px 0; }
.st-access-grid {
  display: grid;
  grid-template-columns: 4.5fr 5.5fr;
  gap: 32px;
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 16px;
}
.st-access-info { font-size: 15px; line-height: 2; }
.st-access-label { font-weight: 700; color: #027F41; font-size: 13px; margin-bottom: 4px; margin-top: 16px; }
.st-access-label:first-child { margin-top: 0; }
.st-access-map { width: 100%; }
.st-access-map iframe { width: 100%; height: 400px; border: 0; }

/* --- CEO Message --- */
.st-ceo-message { padding: 80px 0; background: #fff; }
.st-ceo-card {
  max-width: 720px;
  margin: 0 auto;
  border: 1px solid #E0E0E0;
  padding: 48px 40px 32px;
  text-align: center;
}
.st-ceo-photo { margin-bottom: 12px; }
.st-ceo-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto;
}
.st-ceo-name { font-size: 18px; font-weight: 700; color: #333; margin-bottom: 2px; }
.st-ceo-title { font-size: 13px; color: #888; margin-bottom: 20px; }
.st-ceo-text {
  text-align: left;
  font-size: 14px;
  line-height: 1.9;
  color: #333;
}
.st-ceo-text p { margin-bottom: 0; }
.st-ceo-credentials {
  font-size: 11px;
  color: #888;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #E0E0E0;
  text-align: center;
}

/* --- Director Greeting --- */
.st-greeting { background: #F3F4F6; padding: 80px 0; }
.st-greeting-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 16px;
  align-items: start;
}
.st-greeting-photo { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.st-greeting-header { display: flex; align-items: baseline; gap: 16px; margin-bottom: 24px; }
.st-greeting-header-title { font-size: 24px; font-weight: 700; color: #333; }
.st-greeting-header-name { font-size: 15px; color: #555; }
.st-greeting-label { font-size: 13px; color: #888; margin-bottom: 8px; }
.st-greeting-text { font-size: 15px; line-height: 2; color: #333; border-top: 1px solid #E0E0E0; padding-top: 20px; }
.st-greeting-more {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  background: #333;
  color: #fff;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 500;
  border-top: 1px solid #E0E0E0;
}
.st-greeting .st-section-header { display: none; }

/* --- Customer Voice (NEW) --- */
.st-voice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 16px;
}
.st-voice-card {
  background: #fff;
  border: 1px solid #E0E0E0;
  padding: 24px;
}
.st-voice-attr { font-size: 13px; font-weight: 700; color: #027F41; margin-bottom: 12px; }
.st-voice-text { font-size: 15px; line-height: 1.8; color: #333; }
.st-voice-note { font-size: 11px; color: #aaa; font-style: italic; margin-top: 12px; }

/* --- Price Table --- */
.st-price { padding: 80px 0; background: #fff; }
.st-section-title--serif { font-family: "Noto Serif JP", serif; }
.st-price-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  padding: 0 16px;
  font-size: 15px;
  line-height: 1.8;
  color: #555;
}
.st-price-intro-heading {
  font-size: 16px;
  font-weight: 700;
  color: #333;
  margin-bottom: 8px;
}
.st-price-table {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-collapse: collapse;
}
.st-price-table th {
  padding: 12px 20px;
  border-bottom: 1px solid #333;
  font-size: 14px;
  font-weight: 500;
  color: #888;
  text-align: left;
}
.st-price-table td {
  padding: 20px 20px;
  border-bottom: 1px solid #E5E7EB;
  font-size: 15px;
  text-align: left;
}
.st-price-table td:last-child { text-align: right; white-space: nowrap; }
.st-price-table .st-price-highlight td { font-size: 16px; }
.st-price-table .st-price-sub { font-size: 12px; color: #888; display: block; margin-top: 4px; }
.st-price-note { font-size: 12px; color: #888; margin-top: 8px; max-width: 800px; margin-left: auto; margin-right: auto; padding: 0 16px; }

/* --- FAQ --- */
.st-faq-list { max-width: 800px; margin: 0 auto; padding: 0 16px; }
.st-faq-item { border-bottom: 1px solid #E5E7EB; }
.st-faq-q {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: #333;
}
.st-faq-q-label { color: #027F41; font-weight: 700; font-size: 16px; }
.st-faq-q-icon {
  margin-left: auto;
  font-size: 20px;
  color: #027F41;
  transition: transform 0.3s;
}
.st-faq-item.open .st-faq-q-icon { transform: rotate(45deg); }
.st-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  padding: 0 0 0 32px;
}
.st-faq-item.open .st-faq-a { max-height: 500px; padding-bottom: 20px; }

/* --- Column Carousel --- */
.st-column-carousel {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0 16px 16px;
  max-width: 1152px;
  margin: 0 auto;
}
.st-column-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.st-column-card img { width: 100%; height: 160px; object-fit: cover; }
.st-column-card-body { padding: 16px; }
.st-column-card-date { font-size: 12px; color: #888; margin-bottom: 4px; }
.st-column-card-title { font-size: 14px; font-weight: 600; color: #333; line-height: 1.5; }
.st-column-more { text-align: center; margin-top: 24px; }
.st-column-more a { color: #027F41; font-weight: 500; font-size: 14px; }

/* --- Store List --- */
.st-store-section { background: #F3F4F6; padding: 80px 0; color: #333; }
.st-store-tabs { display: flex; gap: 8px; justify-content: center; margin-bottom: 32px; }
.st-store-tab {
  padding: 12px 32px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 0;
  border: 1px solid #E0E0E0;
  color: #333;
  background: #fff;
  cursor: pointer;
  flex: 1;
  text-align: center;
}
.st-store-tab.active { background: #027F41; border-color: #027F41; color: #fff; }
.st-store-card {
  background: #fff;
  border: 1px solid #E0E0E0;
  padding: 20px 24px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.st-store-card-name { font-size: 16px; font-weight: 600; color: #333; }
.st-store-card-area { font-size: 13px; color: #888; }
.st-store-card-dist { font-size: 14px; font-weight: 600; color: #027F41; }
.st-store-card-btn {
  background: #027F41;
  color: #fff;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 500;
}

/* --- Store Info Block --- */
.st-store-info { padding: 48px 16px; text-align: center; background: #fff; }
.st-store-info-logo { margin-bottom: 24px; }
.st-store-info-logo img { margin: 0 auto 8px; }
.st-store-info-logo-sub { font-size: 13px; color: #027F41; line-height: 1.5; }
.st-store-info-detail {
  max-width: 700px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid #E0E0E0;
}
.st-store-info-name { font-size: 20px; font-weight: 700; color: #333; margin-bottom: 16px; }
.st-store-info-detail p { font-size: 14px; color: #555; line-height: 1.8; margin-bottom: 8px; }
.st-store-info-map { color: #027F41; font-weight: 500; }
.st-store-info-btns { display: flex; gap: 16px; justify-content: center; margin-top: 24px; }
.st-store-info-btn {
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  min-width: 220px;
}
.st-store-info-btn--tel { border: 1px solid #333; color: #333; background: #fff; }
.st-store-info-btn--web { background: #027F41; color: #fff; border: 1px solid #027F41; }

/* --- Footer --- */
.st-footer { background: #1F1F1F; padding: 48px 16px 100px; color: #9CA3AF; }
.st-footer-inner {
  max-width: 1152px;
  margin: 0 auto;
}
.st-footer-logo { text-align: center; margin-bottom: 32px; }
.st-footer-logo img { height: 32px; margin: 0 auto; }
.st-footer-store-info { text-align: center; margin-bottom: 32px; }
.st-footer-store-name { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.st-footer-store-addr { font-size: 14px; color: #9CA3AF; }
.st-footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 32px;
}
.st-footer-nav-heading { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 12px; }
.st-footer-nav a { display: block; font-size: 14px; color: #9CA3AF; padding: 4px 0; }
.st-footer-nav a:hover { color: #fff; }
.st-footer-copyright {
  text-align: center;
  font-size: 12px;
  color: #666;
  margin-top: 32px;
  padding-top: 16px;
  border-top: 1px solid #333;
}

/* --- Floating CTA (Mobile) --- */
.st-floating {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 35;
  box-shadow: 0 -2px 8px rgba(0,0,0,0.15);
  display: none; /* mobile only */
}
.st-floating-inner { display: grid; grid-template-columns: 1fr 1fr; }
.st-floating-phone {
  background: #fff;
  color: #027F41;
  text-align: center;
  padding: 12px 0;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.st-floating-web {
  background: #027F41;
  color: #fff;
  text-align: center;
  padding: 12px 0;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- Back to Top --- */
.st-back-top {
  position: fixed;
  bottom: 80px;
  right: 16px;
  width: 48px;
  height: 48px;
  background: #027F41;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
  cursor: pointer;
  z-index: 30;
  font-size: 20px;
}

/* --- Inline CTA (mid-page / bottom) --- */
.st-inline-cta {
  background: linear-gradient(#fff, #F0F7F2);
  padding: 64px 0;
  text-align: center;
}
.st-inline-cta--dark {
  background: #027F41;
  color: #fff;
}
.st-inline-cta-heading { font-size: 24px; font-weight: 700; margin-bottom: 8px; }
.st-inline-cta-sub { font-size: 16px; margin-bottom: 24px; }
.st-inline-cta-note { font-size: 12px; color: #888; margin-top: 16px; }
.st-inline-cta--dark .st-inline-cta-note { color: rgba(255,255,255,0.7); }

/* =====================================================
   Responsive
   ===================================================== */
@media (max-width: 1024px) {
  .st-comparison-grid { grid-template-columns: repeat(2, 1fr); }
  .st-flow-grid { grid-template-columns: repeat(2, 1fr); }
  .st-voice-grid { grid-template-columns: repeat(2, 1fr); }
  .st-greeting-grid { grid-template-columns: 200px 1fr; gap: 24px; }
}

@media (max-width: 768px) {
  .st-news-ticker { height: auto; min-height: 36px; top: 64px; }
  .st-news-ticker-inner { padding: 6px 12px; gap: 8px; }
  .st-news-text { font-size: 12px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .st-news-date { font-size: 11px; white-space: nowrap; }
  .st-news-link { font-size: 11px; }

  .st-hero { height: 80vh; margin-top: 40px; }
  .st-hero-overlay { padding: 32px 24px; }
  .st-hero-h1 { font-size: 22px; }

  .st-section { padding: 56px 0; }
  .st-section-header { margin-bottom: 32px; }
  .st-section-title { font-size: 24px; letter-spacing: 1.5px; }

  .st-catchcopy-heading { font-size: 32px; }
  .st-gift-approach-heading { font-size: 22px; }
  .st-gift-compare { grid-template-columns: 1fr; }
  .st-gift-compare-col--bad { border-right: none; border-bottom: 1px solid #E0E0E0; }
  .st-persona-grid { grid-template-columns: 1fr; }

  .st-comparison-grid { grid-template-columns: 1fr; }
  .st-flow-grid { grid-template-columns: 1fr 1fr; }
  .st-symptom-top-grid { grid-template-columns: repeat(2, 1fr); }
  .st-symptom-category-grid { grid-template-columns: 1fr; }
  .st-voice-grid { grid-template-columns: 1fr; }
  .st-menu-grid { grid-template-columns: repeat(2, 1fr); }

  .st-access-grid { grid-template-columns: 1fr; }
  .st-access-map iframe { height: 300px; }

  .st-greeting-grid { grid-template-columns: 1fr; gap: 24px; }
  .st-greeting-photo { max-width: 240px; margin: 0 auto; }

  .st-footer-nav { grid-template-columns: 1fr; gap: 24px; }

  .st-floating { display: block; }
  .st-back-top { bottom: 72px; }

  .st-header-nav { display: none; }
  .st-header-tel { display: none; }

  .st-photo-strip { flex-wrap: wrap; }
  .st-photo-strip img { flex: 1 1 calc(50% - 2px); height: 180px; }

  .st-reasons { padding: 64px 0; }
  .st-reasons-text { font-size: 16px; }

  .st-gift-section-heading { font-size: 18px; line-height: 1.9; }
  .st-gift-section-h3 { font-size: 18px; }

  .st-local-intro-body { font-size: 15px; line-height: 1.9; padding: 0 12px; }
  .st-local-intro-body p { margin-bottom: 20px; }

  .st-persona-title { font-size: 20px; }

  .st-ceo-card { padding: 24px 16px; }
  .st-ceo-text { font-size: 15px; }

  .st-faq-q span { font-size: 15px; }

  .st-store-info-cta { flex-direction: column; gap: 8px; }
  .st-store-info-cta a { width: 100%; text-align: center; white-space: nowrap; }

  .st-symptom-top-card { padding: 16px 8px; font-size: 14px; }

  .st-btn-gold { font-size: 15px; padding: 14px 24px; }

  .st-price-intro p { font-size: 14px; }

  .st-store-info-name { font-size: 18px; }
}

@media (max-width: 480px) {
  .st-hero { height: 70vh; }
  .st-hero-h1 { font-size: 20px; }

  .st-section-title { font-size: 20px; }
  .st-catchcopy-heading { font-size: 26px; }

  .st-flow-grid { grid-template-columns: 1fr; }
  .st-symptom-category-grid { grid-template-columns: 1fr; }
  .st-menu-grid { grid-template-columns: 1fr; }

  .st-btn-green { font-size: 16px; padding: 14px 32px; }
  .st-btn-green--large { font-size: 18px; padding: 16px 40px; height: auto; }
}
