/* ==============================================
   トリミングサロン アリス武蔵小山 - ポップ&かわいいCSS
   ============================================== */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@400;500;700;800&family=Zen+Maru+Gothic:wght@400;500;700&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --pink: #FF8FAB;
  --pink-light: #FFD1DC;
  --pink-pale: #FFF0F3;
  --lavender: #C3A6FF;
  --lavender-light: #E8DEFF;
  --mint: #7EDCB5;
  --mint-light: #D4F5E9;
  --yellow: #FFE066;
  --yellow-light: #FFF8D6;
  --peach: #FFB4A2;
  --bg: #FFFBFE;
  --bg-card: #FFFFFF;
  --text: #4A3728;
  --text-light: #8B7A6A;
  --text-muted: #B5A99A;
  --shadow-sm: 0 2px 12px rgba(255,143,171,.12);
  --shadow-md: 0 8px 30px rgba(255,143,171,.15);
  --shadow-lg: 0 12px 40px rgba(195,166,255,.18);
  --radius: 20px;
  --radius-sm: 12px;
  --font-main: 'Zen Maru Gothic', 'M PLUS Rounded 1c', 'Hiragino Sans', sans-serif;
  --font-accent: 'M PLUS Rounded 1c', sans-serif;
}

/* ---------- リセット & ベース ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-main);
  color: var(--text);
  line-height: 1.8;
  background: var(--bg);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--pink); text-decoration: none; transition: all .25s; }
a:hover { color: #e56b8a; }
ul { list-style: none; }

/* ---------- スクロールアニメーション ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s ease, transform .8s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity .8s ease, transform .8s ease;
}
.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity .8s ease, transform .8s ease;
}
.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.scale-in {
  opacity: 0;
  transform: scale(.9);
  transition: opacity .6s ease, transform .6s ease;
}
.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* ---------- 共通ユーティリティ ---------- */
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section-title {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: .5em;
  color: var(--text);
  font-family: var(--font-accent);
}
.section-title .emoji { font-size: 1.6rem; margin-right: .3em; }
.section-sub {
  text-align: center;
  font-size: .88rem;
  color: var(--pink);
  margin-bottom: 3em;
  font-weight: 500;
  letter-spacing: .1em;
}
.section-sub::before,
.section-sub::after {
  content: "- ";
  color: var(--lavender);
}
.section-sub::after { content: " -"; }

/* ---------- ボタン ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .95rem;
  transition: all .3s cubic-bezier(.25,.8,.5,1);
  text-align: center;
  border: none;
  cursor: pointer;
  font-family: var(--font-accent);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.3), transparent);
  transition: left .5s;
}
.btn:hover::before { left: 100%; }

.btn-primary {
  background: linear-gradient(135deg, var(--pink), #FF6B8A);
  color: #fff;
  box-shadow: 0 4px 15px rgba(255,143,171,.4);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255,143,171,.5);
  color: #fff;
}
.btn-outline {
  border: 2px solid var(--pink);
  color: var(--pink);
  background: transparent;
}
.btn-outline:hover {
  background: var(--pink);
  color: #fff;
  transform: translateY(-2px);
}
.btn-tel {
  background: linear-gradient(135deg, var(--mint), #5BC9A0);
  color: #fff;
  box-shadow: 0 4px 15px rgba(126,220,181,.4);
}
.btn-tel:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(126,220,181,.5);
  color: #fff;
}
.btn-lavender {
  background: linear-gradient(135deg, var(--lavender), #A87FFF);
  color: #fff;
  box-shadow: 0 4px 15px rgba(195,166,255,.4);
}
.btn-lavender:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(195,166,255,.5);
  color: #fff;
}

/* ---------- ヘッダー ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,251,254,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(255,143,171,.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text);
  font-family: var(--font-accent);
}
.logo-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--pink), var(--peach));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 3px 10px rgba(255,143,171,.3);
}
.nav-list { display: flex; gap: 6px; }
.nav-list a {
  color: var(--text);
  font-size: .88rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 50px;
  transition: all .25s;
}
.nav-list a:hover,
.nav-list a.active {
  background: var(--pink-pale);
  color: var(--pink);
}

/* モバイルメニュー */
.hamburger {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 30px; height: 24px;
  position: relative;
}
.hamburger span {
  display: block; width: 100%; height: 2.5px;
  background: var(--text);
  border-radius: 2px;
  position: absolute; left: 0;
  transition: all .3s;
}
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 11px; }
.hamburger span:nth-child(3) { bottom: 0; }

/* ---------- ヒーロー ---------- */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img,
.hero-bg video {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(255,240,243,.88) 0%,
    rgba(255,209,220,.75) 40%,
    rgba(232,222,255,.65) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 40px 20px;
}
.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--lavender), var(--pink));
  color: #fff;
  padding: 6px 22px;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: .08em;
  animation: float 3s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.hero h1 {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 18px;
  font-family: var(--font-accent);
}
.hero h1 .highlight {
  background: linear-gradient(transparent 60%, var(--yellow) 60%);
  padding: 0 4px;
}
.hero-lead {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 12px;
  line-height: 1.9;
}
.hero-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}
.hero-info {
  margin-top: 32px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-info-item {
  background: rgba(255,255,255,.8);
  backdrop-filter: blur(6px);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: .82rem;
  color: var(--text);
  font-weight: 500;
  box-shadow: var(--shadow-sm);
}

/* 浮遊デコレーション */
.hero-deco {
  position: absolute;
  border-radius: 50%;
  animation: float 4s ease-in-out infinite;
  z-index: 0;
}
.hero-deco-1 {
  width: 80px; height: 80px;
  background: rgba(255,143,171,.2);
  top: 15%; left: 8%;
  animation-delay: 0s;
}
.hero-deco-2 {
  width: 50px; height: 50px;
  background: rgba(195,166,255,.25);
  top: 25%; right: 10%;
  animation-delay: 1s;
}
.hero-deco-3 {
  width: 60px; height: 60px;
  background: rgba(126,220,181,.2);
  bottom: 20%; left: 15%;
  animation-delay: 2s;
}

/* ---------- 写真ギャラリー（トップ） ---------- */
.photo-strip {
  display: flex;
  gap: 0;
  overflow: hidden;
  position: relative;
}
.photo-strip-inner {
  display: flex;
  animation: scroll-photos 30s linear infinite;
}
@keyframes scroll-photos {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.photo-strip img {
  width: 260px;
  height: 200px;
  object-fit: cover;
  flex-shrink: 0;
}

/* ---------- カード ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  transition: all .3s cubic-bezier(.25,.8,.5,1);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  border-radius: var(--radius) var(--radius) 0 0;
}
.card:nth-child(1)::before { background: linear-gradient(90deg, var(--pink), var(--peach)); }
.card:nth-child(2)::before { background: linear-gradient(90deg, var(--lavender), var(--pink)); }
.card:nth-child(3)::before { background: linear-gradient(90deg, var(--mint), var(--lavender)); }
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--pink-light);
}
.card-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 16px;
}
.card:nth-child(1) .card-icon { background: var(--pink-pale); }
.card:nth-child(2) .card-icon { background: var(--lavender-light); }
.card:nth-child(3) .card-icon { background: var(--mint-light); }
.card h3 {
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: 10px;
  font-weight: 700;
}

/* ---------- ビフォーアフター ---------- */
.ba-section { background: var(--pink-pale); }
.ba-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}
.ba-item {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .3s;
}
.ba-item:hover { transform: translateY(-4px); }
.ba-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: col-resize;
}
.ba-slider img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.ba-slider .ba-after {
  clip-path: inset(0 50% 0 0);
  z-index: 2;
}
.ba-slider .ba-before { z-index: 1; }
.ba-slider .ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 4px;
  background: #fff;
  z-index: 3;
  transform: translateX(-50%);
  box-shadow: 0 0 10px rgba(0,0,0,.3);
}
.ba-slider .ba-handle::after {
  content: "< >";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--pink);
  color: #fff;
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 2px;
  box-shadow: 0 2px 10px rgba(255,143,171,.5);
}
.ba-label {
  position: absolute;
  bottom: 10px;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 700;
  color: #fff;
  z-index: 4;
}
.ba-label-before { left: 10px; background: var(--lavender); }
.ba-label-after { right: 10px; background: var(--pink); }
.ba-info {
  padding: 16px 20px;
  text-align: center;
}
.ba-info .breed { font-weight: 700; color: var(--text); }
.ba-info .desc { font-size: .85rem; color: var(--text-light); }

/* ---------- お客様の声 ---------- */
.testimonials-section { background: var(--lavender-light); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform .3s;
}
.testimonial-card:hover { transform: translateY(-4px); }
.testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: 16px; left: 24px;
  font-size: 3rem;
  color: var(--pink-light);
  font-family: Georgia, serif;
  line-height: 1;
}
.testimonial-stars {
  color: var(--yellow);
  font-size: 1rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}
.testimonial-text {
  font-size: .92rem;
  color: var(--text);
  line-height: 1.9;
  margin-bottom: 16px;
  padding-left: 4px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--pink-light);
}
.testimonial-name {
  font-weight: 700;
  font-size: .88rem;
}
.testimonial-pet {
  font-size: .78rem;
  color: var(--text-muted);
}

/* ---------- 料金テーブル ---------- */
.price-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.price-table thead {
  background: linear-gradient(135deg, var(--pink), var(--peach));
  color: #fff;
}
.price-table th {
  padding: 16px 20px;
  font-weight: 700;
  font-size: .9rem;
  text-align: left;
}
.price-table td {
  padding: 14px 20px;
  border-bottom: 1px solid #f5f0eb;
  font-size: .92rem;
}
.price-table tbody tr {
  transition: background .2s;
}
.price-table tbody tr:hover { background: var(--pink-pale); }
.price-table tbody tr:last-child td { border-bottom: none; }
.price-table .price {
  font-weight: 800;
  color: var(--pink);
  white-space: nowrap;
  font-family: var(--font-accent);
}

/* ---------- CTA ---------- */
.cta-section {
  background: linear-gradient(135deg, var(--pink), var(--lavender));
  color: #fff;
  text-align: center;
  padding: 70px 20px;
  border-radius: 30px;
  margin: 0 20px;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  top: -50%; right: -20%;
  width: 400px; height: 400px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
}
.cta-section::after {
  content: "";
  position: absolute;
  bottom: -30%; left: -15%;
  width: 300px; height: 300px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
}
.cta-section h2 {
  font-size: 1.7rem;
  font-weight: 800;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
  font-family: var(--font-accent);
}
.cta-section p {
  opacity: .9;
  margin-bottom: 30px;
  font-size: .95rem;
  position: relative;
  z-index: 1;
}
.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.cta-buttons .btn-primary {
  background: #fff;
  color: var(--pink);
  box-shadow: 0 4px 15px rgba(0,0,0,.1);
}
.cta-buttons .btn-primary:hover {
  background: var(--yellow-light);
  color: var(--pink);
}
.cta-buttons .btn-tel {
  background: rgba(255,255,255,.2);
  backdrop-filter: blur(4px);
  border: 2px solid rgba(255,255,255,.5);
  box-shadow: none;
}
.cta-buttons .btn-tel:hover {
  background: rgba(255,255,255,.35);
}

/* ---------- アクセスマップ ---------- */
.map-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.map-wrapper iframe { width: 100%; height: 400px; border: none; }
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.info-box {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--pink);
  transition: transform .3s;
}
.info-box:hover { transform: translateY(-3px); }
.info-box:nth-child(2) { border-left-color: var(--lavender); }
.info-box:nth-child(3) { border-left-color: var(--mint); }
.info-box h3 {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}

/* ---------- フォーム ---------- */
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block;
  font-weight: 700;
  font-size: .9rem;
  color: var(--text);
  margin-bottom: 8px;
}
.form-group label .required {
  background: var(--pink);
  color: #fff;
  font-size: .7rem;
  padding: 2px 8px;
  border-radius: 50px;
  margin-left: 8px;
}
.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #f0e8e3;
  border-radius: var(--radius-sm);
  font-size: .95rem;
  font-family: var(--font-main);
  transition: all .3s;
  background: #fff;
}
.form-control:focus {
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 0 4px rgba(255,143,171,.12);
}
textarea.form-control { min-height: 140px; resize: vertical; }

/* ---------- フッター ---------- */
.footer {
  background: linear-gradient(135deg, #3a2e22, #4a3c30);
  color: rgba(255,255,255,.7);
  padding: 60px 0 30px;
  position: relative;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--pink), var(--lavender), var(--mint), var(--yellow));
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
  max-width: 1100px;
  margin: 0 auto 40px;
  padding: 0 20px;
}
.footer h4 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 16px;
  font-weight: 700;
}
.footer-nav a {
  display: block;
  color: rgba(255,255,255,.65);
  padding: 5px 0;
  font-size: .88rem;
  transition: all .2s;
}
.footer-nav a:hover { color: var(--pink-light); transform: translateX(4px); }
.footer-copy {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .8rem;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* ---------- パンくずリスト ---------- */
.breadcrumb {
  padding: 14px 0;
  font-size: .82rem;
  color: var(--text-muted);
}
.breadcrumb a { color: var(--pink); }
.breadcrumb span { margin: 0 6px; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 2px solid transparent;
  transition: border-color .3s;
}
.faq-item:hover { border-color: var(--pink-light); }
.faq-q {
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .95rem;
}
.faq-q::before {
  content: "Q";
  flex-shrink: 0;
  width: 30px; height: 30px;
  background: linear-gradient(135deg, var(--pink), var(--peach));
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem;
  font-weight: 800;
}
.faq-q::after {
  content: "+";
  margin-left: auto;
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: var(--pink-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--pink);
  transition: all .3s;
}
.faq-a {
  padding: 0 24px;
  color: var(--text-light);
  line-height: 1.8;
}
.faq-a-inner { padding: 0 0 20px 40px; }

/* ---------- ページヒーロー（下層） ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--pink-pale), var(--lavender-light));
  padding: 55px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  width: 200px; height: 200px;
  background: rgba(255,143,171,.1);
  border-radius: 50%;
  top: -60px; right: -40px;
}
.page-hero::after {
  content: "";
  position: absolute;
  width: 150px; height: 150px;
  background: rgba(195,166,255,.1);
  border-radius: 50%;
  bottom: -50px; left: -30px;
}
.page-hero h1 {
  font-size: 1.9rem;
  color: var(--text);
  margin-bottom: 8px;
  font-weight: 800;
  font-family: var(--font-accent);
  position: relative;
  z-index: 1;
}
.page-hero p {
  color: var(--text-light);
  font-size: .9rem;
  position: relative;
  z-index: 1;
}

/* ---------- 注意書き ---------- */
.note {
  background: var(--yellow-light);
  border-left: 4px solid var(--yellow);
  padding: 16px 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 20px 0;
  font-size: .88rem;
  color: var(--text);
}

/* ---------- 施術ステップ ---------- */
.step-list { max-width: 680px; margin: 0 auto; }
.step-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px dashed var(--pink-light);
}
.step-item:last-child { border-bottom: none; }
.step-num {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--pink), var(--lavender));
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 1rem;
}
.step-content h3 {
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
  font-size: 1rem;
}
.step-content p {
  font-size: .88rem;
  color: var(--text-light);
}

/* ---------- レスポンシブ ---------- */
@media (max-width: 768px) {
  .nav-list { display: none; }
  .hamburger { display: block; }
  .nav-list.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: rgba(255,251,254,.98);
    backdrop-filter: blur(12px);
    padding: 16px 20px;
    gap: 4px;
    box-shadow: 0 8px 30px rgba(255,143,171,.12);
    border-bottom: 3px solid var(--pink-light);
  }
  .nav-list.active a {
    padding: 12px 16px;
    font-size: .95rem;
  }
  .hero { min-height: 70vh; }
  .hero h1 { font-size: 1.7rem; }
  .hero-lead { font-size: .92rem; }
  .section { padding: 50px 0; }
  .section-title { font-size: 1.45rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .hero-info { flex-direction: column; align-items: center; gap: 10px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-buttons .btn { width: 80%; }
  .card-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .ba-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .price-table { font-size: .85rem; }
  .price-table th, .price-table td { padding: 12px 14px; }
  .cta-section { border-radius: 20px; margin: 0 10px; }
  .hero-deco { display: none; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.4rem; }
  .section-title { font-size: 1.25rem; }
  .page-hero h1 { font-size: 1.5rem; }
}
