/* ============================================================
   demos/soleil-piano/style.css
   ソレイユピアノ教室 — カラー・フォント上書き
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap');

:root {
  --color-primary:        #1a1a1a;
  --color-accent:         #F5F0E8;
  --color-gold:           #C9A84C;
  --color-bg:             #FAFAFA;
  --color-bg-alt:         #F2F2F2;
  --color-text:           #1a1a1a;
  --color-text-sub:       #666;
  --color-border:         #DDDCDA;
  --font-main:            'Noto Sans JP', sans-serif;
  --font-heading:         'Noto Sans JP', sans-serif;
  --radius:               4px;
  --radius-lg:            8px;
  --color-btn-solid-text: #ffffff;
}

/* ============================================================
   セクション見出し
   ============================================================ */
.sec-head {
  text-align: center;
  margin-bottom: 2.5rem;
}
.sec-head__en {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--color-gold);
  font-weight: 700;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
}
.sec-head__title {
  font-size: clamp(1.3rem, 2.5vw, 1.875rem);
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* ============================================================
   デモバー（全デモサイト共通・固定フッター）
   ============================================================ */
.demo-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #1a1a1a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 0.75rem 1.5rem;
  z-index: 9999;
  font-size: 0.8rem;
}
.demo-bar__text { color: rgba(255,255,255,0.55); white-space: nowrap; }
.demo-bar__btn {
  display: inline-block;
  padding: 0.4em 1.2em;
  background: #9B4A34;
  color: #fff;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.8rem;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.demo-bar__btn:hover { opacity: 0.8; }
body { padding-bottom: 52px; }

@media (max-width: 480px) {
  .demo-bar { gap: 0.75rem; padding: 0.75rem 1rem; }
  .demo-bar__text { display: none; }
}
