/*
 * Template C｜ボールド・コミュニティ型（オレンジ）
 * コンセプト：明るく親しみやすい。大学街・若年層・地域コミュニティ重視。
 * @import は使わず完全独立CSS
 */

/* =============================================
   CSS カスタムプロパティ
   ============================================= */
:root {
  --primary:       #E8612A;
  --primary-light: #FF8A5C;
  --primary-pale:  #FFF3ED;
  --primary-dark:  #B84415;
  --accent:        #FFB800;
  --accent-dark:   #E09000;
  --text:          #1A1A1A;
  --text-light:    #6B5B52;
  --bg:            #FFFFFF;
  --bg-tint:       #FFFAF7;
  --border:        #FFD4B8;

  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-pill: 50px;

  --shadow-sm: 0 2px 8px rgba(232,97,42,0.08);
  --shadow-md: 0 4px 20px rgba(232,97,42,0.14);
  --shadow-lg: 0 8px 40px rgba(232,97,42,0.18);

  --transition: 0.22s ease;
}

/* =============================================
   リセット & ベース
   ============================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

/* =============================================
   コンテナ
   ============================================= */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =============================================
   セクション共通
   ============================================= */
.section {
  padding: 80px 0;
}

.section--tinted-c {
  background: var(--bg-tint);
}

/* セクションラベル（英語・細字・オレンジ） */
.section-en-c {
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 8px;
}

/* セクションタイトル */
.section-title-c {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.section-title-c::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 48px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

/* セクションリード文 */
.section-lead-c {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 48px;
  max-width: 680px;
}

/* =============================================
   ユーティリティ
   ============================================= */
.text-center { text-align: center; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }

@media (min-width: 768px) {
  .sp-only { display: none; }
}

/* =============================================
   フェードイン
   ============================================= */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   ボタン
   ============================================= */
/* オレンジ背景・白文字（メイン） */
.btn-c-primary {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--primary);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn-c-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: scale(1.04);
  box-shadow: var(--shadow-md);
}

/* 白枠・白文字（ヒーロー用） */
.btn-c-outline {
  display: inline-block;
  background: transparent;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  border: 2px solid rgba(255,255,255,0.8);
  transition: background var(--transition), transform var(--transition);
}

.btn-c-outline:hover {
  background: rgba(255,255,255,0.15);
  transform: scale(1.04);
}

/* オレンジ枠・オレンジ文字（一般用） */
.btn-c-outline-dark {
  display: inline-block;
  background: transparent;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px 32px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--primary);
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.btn-c-outline-dark:hover {
  background: var(--primary);
  color: #fff;
  transform: scale(1.02);
}

/* =============================================
   ヘッダー
   ============================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}

.header.scrolled {
  background: #fff;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

/* ロゴ */
.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: opacity var(--transition);
}

.header-logo:hover { opacity: 0.8; }

.logo-img {
  height: 40px;
  width: auto;
}

.logo-fallback {
  display: none;
  align-items: center;
  gap: 8px;
}

.logo-cross {
  font-size: 1.4rem;
  color: var(--primary);
  font-weight: 700;
  line-height: 1;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.logo-main {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}

/* ヘッダースクロール前はロゴ文字を白に */
.header:not(.scrolled) .logo-main,
.header:not(.scrolled) .logo-cross {
  color: #fff;
}

.logo-sub {
  font-size: 0.65rem;
  font-weight: 300;
  color: var(--text-light);
  letter-spacing: 0.1em;
  line-height: 1;
}

.header:not(.scrolled) .logo-sub {
  color: rgba(255,255,255,0.75);
}

/* ナビ */
.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.header-nav a {
  font-size: 0.88rem;
  font-weight: 500;
  color: #fff;
  transition: color var(--transition), opacity var(--transition);
  position: relative;
  padding-bottom: 3px;
}

.header:not(.scrolled) .header-nav a { color: rgba(255,255,255,0.92); }
.header.scrolled .header-nav a { color: var(--text); }

.header-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width var(--transition);
}

.header-nav a:hover::after,
.header-nav a.active::after {
  width: 100%;
}

.header-nav a:hover { color: var(--primary); }
.header:not(.scrolled) .header-nav a:hover { color: #fff; opacity: 0.75; }

.nav-tel-link {
  background: var(--primary) !important;
  color: #fff !important;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  white-space: nowrap;
  transition: background var(--transition), transform var(--transition) !important;
}

.nav-tel-link:hover {
  background: var(--primary-dark) !important;
  transform: scale(1.04);
}

.nav-tel-link::after { display: none !important; }

/* ハンバーガー */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition), background var(--transition);
}

.header.scrolled .hamburger span { background: var(--text); }

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================
   ヒーロー（フルスクリーン・左下揃え）
   ============================================= */
.hero-c {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  overflow: hidden;
}

.hero-c-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-c-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-c-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(184,68,21,0.85) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
}

.hero-c-content {
  position: relative;
  z-index: 1;
  text-align: left;
  color: #fff;
  max-width: 700px;
}

.hero-c-tag {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  background: rgba(255,255,255,0.18);
  display: inline-block;
  padding: 5px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.3);
}

.hero-c-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.25);
}

.hero-c-sub {
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.65;
  margin-bottom: 32px;
  opacity: 0.9;
  max-width: 520px;
}

.hero-c-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* スクロールヒント */
.hero-c-scroll-hint {
  position: absolute;
  bottom: 24px;
  right: 40px;
  color: rgba(255,255,255,0.6);
  font-size: 1.5rem;
  z-index: 2;
  animation: bounce 2s infinite;
  line-height: 1;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* =============================================
   情報バー（ヒーロー直後・オレンジ背景）
   ============================================= */
.info-strip-c {
  background: var(--primary);
  color: #fff;
  padding: 16px 0;
}

.info-strip-inner {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
}

.info-item-c {
  font-size: 0.9rem;
  padding: 4px 24px;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.info-item-c strong { font-weight: 700; }

.info-sep {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.35);
  flex-shrink: 0;
}

.info-tel-c {
  font-size: 1.1rem;
  font-weight: 700;
  padding: 4px 24px;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: opacity var(--transition);
}

.info-tel-c:hover { opacity: 0.8; }

/* =============================================
   ニュースティッカー（オレンジ系）
   ============================================= */
.news-ticker-c {
  background: var(--primary-pale);
  border-bottom: 1px solid var(--border);
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.news-ticker-c-label {
  background: var(--primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  flex-shrink: 0;
}

.news-ticker-c-text {
  font-size: 0.9rem;
  color: var(--text);
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-ticker-c-link {
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
  transition: opacity var(--transition);
  flex-shrink: 0;
}

.news-ticker-c-link:hover { opacity: 0.7; }

/* =============================================
   サービス（ジグザグ大番号レイアウト）
   ============================================= */
.zz-item {
  display: grid;
  grid-template-columns: 80px 1fr 280px;
  gap: 24px;
  align-items: center;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}

.zz-item:first-of-type { padding-top: 0; }

/* 偶数：画像を左に（order で反転） */
.zz-rev .zz-num  { order: 3; }
.zz-rev .zz-body { order: 2; }
.zz-rev .zz-img  { order: 1; }

.zz-num {
  font-size: 5rem;
  font-weight: 900;
  color: var(--primary);
  opacity: 0.15;
  line-height: 1;
  font-family: 'Noto Sans JP', sans-serif;
  letter-spacing: -0.04em;
}

.zz-body h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}

.zz-body p {
  font-size: 0.93rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 8px;
}

.zz-body p:last-of-type { margin-bottom: 12px; }

.zz-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.zz-tags span {
  background: var(--primary-pale);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 3px 12px;
  border-radius: var(--radius-pill);
}

.zz-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-md);
  transition: transform var(--transition);
}

.zz-img img:hover { transform: scale(1.02); }

.zz-icon-only {
  width: 120px;
  height: 120px;
  background: var(--primary-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin: 0 auto;
}

/* =============================================
   医療DX（ステップフロー）
   ============================================= */
.dx-c-intro {
  background: #fff;
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 16px 20px;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 32px;
  box-shadow: var(--shadow-sm);
}

.dx-steps-c {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.dx-step-c {
  flex: 1;
  min-width: 140px;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 20px 16px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(232,97,42,0.12);
  transition: transform var(--transition), box-shadow var(--transition);
}

.dx-step-c:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
}

.dx-step-num-c {
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  margin: 0 auto 10px;
}

.dx-step-c strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.dx-step-c p {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.6;
}

.dx-step-arrow {
  font-size: 1.4rem;
  color: var(--primary);
  opacity: 0.4;
  padding-top: 36px;
  flex-shrink: 0;
  align-self: flex-start;
}

.dx-c-note {
  font-size: 0.78rem;
  color: var(--text-light);
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  border: 1px solid var(--border);
}

/* =============================================
   薬局案内
   ============================================= */
.about-c-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-c-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.about-c-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.about-c-img-wrap:hover .about-c-img { transform: scale(1.03); }

.about-c-philosophy {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.5;
  margin-bottom: 20px;
  font-style: italic;
}

.about-c-body p {
  font-size: 0.93rem;
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 16px;
}

.about-c-sign {
  font-size: 0.85rem !important;
  color: var(--text-light) !important;
  font-weight: 500;
  border-top: 1px solid var(--border);
  padding-top: 12px;
  margin-bottom: 24px !important;
}

/* =============================================
   アクセス
   ============================================= */
.access-c-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.map-c-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-c-wrapper iframe {
  display: block;
  border-radius: var(--radius-lg);
}

.access-c-info {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.access-c-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--primary);
}

.access-c-row {
  display: flex;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  align-items: flex-start;
}

.access-c-row:last-of-type { border-bottom: none; }

.access-c-label {
  font-weight: 700;
  color: var(--primary);
  min-width: 56px;
  flex-shrink: 0;
}

.access-c-tel {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.1rem;
  transition: opacity var(--transition);
}

.access-c-tel:hover { opacity: 0.75; }

/* =============================================
   お知らせ
   ============================================= */
.news-c-list {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.news-c-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  background: #fff;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
  transition: background var(--transition);
}

.news-c-item:last-child { border-bottom: none; }
.news-c-item:hover { background: var(--primary-pale); }

.news-c-date {
  font-size: 0.82rem;
  color: var(--text-light);
  white-space: nowrap;
  font-weight: 300;
  flex-shrink: 0;
  min-width: 90px;
}

.news-c-tag {
  background: var(--primary-pale);
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  flex-shrink: 0;
}

.news-c-tag--dx {
  background: #E8F5FF;
  color: #0070B8;
}

.news-c-text {
  font-size: 0.9rem;
  color: var(--text);
  flex: 1;
}

/* =============================================
   CTAバナー（オレンジグラデーション）
   ============================================= */
.cta-c-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  padding: 72px 0;
}

.cta-c-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-c-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.3;
}

.cta-c-sub {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
}

.cta-c-actions {
  text-align: right;
}

.cta-c-tel {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 8px;
  transition: opacity var(--transition);
}

.cta-c-tel:hover { opacity: 0.8; }

.cta-c-hours {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
}

/* =============================================
   フッター
   ============================================= */
.footer-c {
  background: #1A1A1A;
  color: rgba(255,255,255,0.7);
}

.footer-c-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding: 56px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-c-logo-img {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 16px;
}

.footer-c-desc {
  font-size: 0.82rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.55);
}

.footer-c-nav h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.footer-c-nav ul { display: flex; flex-direction: column; gap: 10px; }

.footer-c-nav a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}

.footer-c-nav a:hover { color: var(--primary-light); }

.footer-c-bottom {
  background: rgba(0,0,0,0.3);
  text-align: center;
  padding: 16px 24px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
}

/* =============================================
   レスポンシブ（767px以下）
   ============================================= */
@media (max-width: 767px) {

  /* ヘッダー */
  .hamburger { display: flex; }

  .header-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26,26,26,0.97);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    z-index: 999;
  }

  .header-nav.open { display: flex; }

  .header-nav a {
    font-size: 1.1rem;
    color: #fff !important;
  }

  .header-nav a:hover { color: var(--primary-light) !important; opacity: 1 !important; }

  .nav-tel-link {
    padding: 12px 28px !important;
    font-size: 1rem !important;
  }

  /* ヒーロー */
  .hero-c {
    padding-bottom: 60px;
    min-height: 100svh;
  }

  .hero-c-title { font-size: 2.2rem; }
  .hero-c-actions { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero-c-scroll-hint { right: 20px; bottom: 16px; }

  /* 情報バー */
  .info-strip-inner { flex-direction: column; gap: 8px; }
  .info-sep { display: none; }
  .info-item-c, .info-tel-c { padding: 4px 0; }

  /* セクション */
  .section { padding: 56px 0; }
  .section-title-c { font-size: 1.6rem; }

  /* ジグザグ（縦1列） */
  .zz-item,
  .zz-item.zz-rev {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 32px 0;
  }

  .zz-item.zz-rev .zz-num,
  .zz-item.zz-rev .zz-body,
  .zz-item.zz-rev .zz-img {
    order: unset;
  }

  .zz-num { font-size: 3.5rem; }
  .zz-img img { height: 180px; }
  .zz-icon-only { width: 90px; height: 90px; font-size: 2.2rem; }

  /* DXステップ（縦並び） */
  .dx-steps-c { flex-direction: column; gap: 16px; }
  .dx-step-c { min-width: unset; width: 100%; }
  .dx-step-arrow { padding-top: 0; align-self: center; transform: rotate(90deg); }

  /* 薬局案内 */
  .about-c-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-c-img { height: 240px; }

  /* アクセス */
  .access-c-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* CTA */
  .cta-c-inner { flex-direction: column; text-align: center; }
  .cta-c-actions { text-align: center; }
  .cta-c-tel { font-size: 1.5rem; justify-content: center; }

  /* フッター */
  .footer-c-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 24px;
  }
}

/* =============================================
   タブレット（768px〜1024px）
   ============================================= */
@media (min-width: 768px) and (max-width: 1024px) {

  .zz-item {
    grid-template-columns: 60px 1fr 200px;
    gap: 16px;
  }

  .dx-steps-c { gap: 6px; }
  .dx-step-c { padding: 16px 12px; min-width: 120px; }

  .about-c-grid { gap: 32px; }
  .about-c-img { height: 280px; }

  .access-c-grid { gap: 24px; }

  .footer-c-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-c-brand { grid-column: 1 / -1; }
}

/* ============================================================
   PAGE HERO（内ページ共通バナー）
   ============================================================ */
.page-hero-c {
  background: linear-gradient(135deg, var(--primary) 0%, #C0471A 100%);
  padding: 72px 0 52px;
  color: #fff;
  margin-top: 0; /* transparent header overlaps */
  padding-top: calc(72px + var(--header-h, 64px));
}

.page-hero-c .breadcrumb ol {
  display: flex;
  gap: 8px;
  list-style: none;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 16px;
}
.page-hero-c .breadcrumb li:not(:last-child)::after {
  content: '›';
  margin-left: 8px;
}
.page-hero-c .breadcrumb a { color: rgba(255,255,255,0.75); text-decoration: none; }
.page-hero-c .breadcrumb a:hover { color: #fff; }

.page-hero-c-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900;
  letter-spacing: 0.02em;
}

.page-hero-c-sub {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.12em;
  margin-top: 6px;
}

/* ギャラリーグリッド（about.htmlで使用） */
.gallery-c-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.gallery-c-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 12px;
}
.gallery-c-caption {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 8px;
}
@media (max-width: 767px) {
  .gallery-c-grid { grid-template-columns: 1fr; }
}
