/* =========================================================
   CAR CLIP まるごとシリーズ LP - style.css
   フレームワーク不使用 / システムフォントのみ
   配色は統合提案書(10_まるごとシリーズ_提案書)と統一
   NAVY #1B2430 / RED #E63946 / LIGHTGRAY #F5F6F8
   ========================================================= */

:root {
  --navy: #1B2430;
  --navy-2: #263243;
  --black: #0B0F14;
  --red: #E63946;
  --red-dark: #C42B37;
  --lightgray: #F5F6F8;
  --line: #E3E6EB;
  --gray-text: #4A5058;
  --gray-muted: #8A9099;
  --white: #fff;
  --line-green: #06C755;
  --radius: 10px;
  --maxw: 1120px;
  --pad: 24px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 76px; }

body {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Noto Sans JP", sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt";
}

/* height: auto は必須。imgのwidth/height属性(場所を先に確保してレイアウトのズレを防ぐため
   全imgに付けている)は、CSSでheightを指定しないと属性値がそのまま高さになって縦長に崩れる */
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }
.container--narrow { max-width: 820px; }
.sp-only { display: none; }

/* ---------- ボタン ---------- */
.button {
  display: inline-block; padding: 15px 34px; border-radius: 999px;
  background: var(--red); color: var(--white);
  font-weight: 700; font-size: 1rem; text-decoration: none;
  border: 2px solid var(--red); cursor: pointer;
  transition: background .2s, border-color .2s, transform .2s;
}
.button:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-2px); }
.button--line { background: var(--line-green); border-color: var(--line-green); }
.button--line:hover { background: #05A948; border-color: #05A948; }
.button--ghost { background: transparent; border-color: rgba(255,255,255,.55); color: var(--white); }
.button--ghost:hover { background: rgba(255,255,255,.12); border-color: var(--white); }
.button--sm { padding: 9px 20px; font-size: .875rem; white-space: nowrap; }
.button--lg { padding: 18px 52px; font-size: 1.125rem; }

/* ---------- 上部バー ---------- */
.topbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.94); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.topbar__inner { display: flex; align-items: center; gap: 28px; height: 60px; }
.topbar__logo {
  font-weight: 800; font-size: 1.0625rem; color: var(--navy);
  text-decoration: none; letter-spacing: .02em; white-space: nowrap;
}
.topbar__logo span { font-size: .75rem; font-weight: 700; color: var(--red); margin-left: 6px; }
.topbar__nav { display: flex; gap: 22px; margin-left: auto; }
.topbar__nav a {
  color: var(--gray-text); text-decoration: none; font-size: .875rem; font-weight: 600;
  transition: color .2s;
}
.topbar__nav a:hover { color: var(--red); }

/* ---------- ヒーロー(明るい基調) ---------- */
.hero {
  background: linear-gradient(168deg, #FFFFFF 0%, #F4F7FC 48%, #E9EFF8 100%);
  color: var(--black); position: relative; overflow: hidden;
  padding: 74px 0 84px;
  border-bottom: 1px solid var(--line);
}
.hero::after {
  content: ""; position: absolute; right: -170px; top: -160px;
  width: 620px; height: 620px; border-radius: 50%;
  background: radial-gradient(circle, rgba(230,57,70,.13) 0%, rgba(230,57,70,.04) 55%, rgba(230,57,70,0) 72%);
}
.hero::before {
  content: ""; position: absolute; left: -180px; bottom: -240px;
  width: 560px; height: 560px; border-radius: 50%;
  background: radial-gradient(circle, rgba(27,36,48,.07) 0%, rgba(27,36,48,0) 68%);
}
.hero__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 52px; align-items: center;
}
.eyebrow {
  display: inline-block; font-size: .8125rem; font-weight: 700; letter-spacing: .08em;
  color: var(--red); border: 1px solid rgba(230,57,70,.5);
  border-radius: 999px; padding: 5px 16px; margin-bottom: 22px;
}
.hero__headline {
  font-size: clamp(1.9rem, 3.6vw, 2.85rem); font-weight: 800; line-height: 1.42;
  letter-spacing: .01em; margin-bottom: 22px; color: var(--navy);
}
.hero__lead { color: var(--gray-text); font-size: 1.0125rem; line-height: 1.9; margin-bottom: 30px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 18px; }
.hero__note { font-size: .8125rem; color: var(--gray-muted); }
.hero__visual-cap { margin-top: 14px; font-size: .75rem; color: var(--gray-muted); text-align: center; }

/* 明るい背景では白フチのゴーストボタンが見えないため、紺の輪郭に切り替える */
.hero .button--ghost { border-color: var(--navy); color: var(--navy); }
.hero .button--ghost:hover { background: var(--navy); border-color: var(--navy); color: var(--white); }

/* ヒーローの見せ札: 在庫バナーをスマホモックの背後に重ねる */
.hero__stack { display: flex; align-items: center; justify-content: center; }
/* 重なりは浅く。バナー右側にある価格が隠れないようにする */
.hero__banner { margin: 0 -6px 0 0; width: 190px; transform: rotate(-5deg) translateY(16px); z-index: 1; }
.hero__banner img {
  /* width/height属性(1080x1080)を追加した際、heightを明示しないとHTML属性の
     height値がそのまま使われて縦長に崩れるため、heightをautoで明示して比率を保つ */
  width: 100%; height: auto; border-radius: 10px; background: var(--white);
  border: 1px solid var(--line); box-shadow: 0 14px 30px rgba(27,36,48,.20);
}
.hero__stack .phone-frame { margin: 0; z-index: 2; width: 236px; }

/* スマホモック */
.phone-frame {
  width: 260px; margin: 0 auto; padding: 11px;
  background: #0D131B; border-radius: 34px;
  box-shadow: 0 18px 40px rgba(27,36,48,.24), inset 0 0 0 1px rgba(255,255,255,.09);
  position: relative;
}
.phone-frame--sm { width: 220px; }
.phone-frame__notch {
  position: absolute; top: 17px; left: 50%; transform: translateX(-50%);
  width: 82px; height: 17px; background: #0D131B; border-radius: 999px; z-index: 2;
}
.phone-frame__screen {
  border-radius: 24px; overflow: hidden; background: #000;
  aspect-ratio: 9 / 16;
}
.phone-frame__screen video { width: 100%; height: 100%; object-fit: cover; }

/* ---------- 制作物の帯(ヒーロー直下) ---------- */
.strip { background: var(--white); padding: 42px 0 46px; }
.strip__label {
  text-align: center; font-size: 1rem; font-weight: 800; color: var(--navy);
  margin-bottom: 22px; line-height: 1.6;
}
.strip__row { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
/* 見本ごとに縦横比が違う(バナー4:5 / POP A4 / カルーセル1:1)ため、
   高さを揃えて contain で収め、キャプションの位置を揃える */
.strip__item { margin: 0; display: flex; flex-direction: column; align-items: center; }
.strip__item img {
  height: 208px; width: auto; max-width: 100%; object-fit: contain;
  border-radius: 8px; border: 1px solid var(--line); background: var(--white);
  box-shadow: 0 5px 14px rgba(11,15,20,.08);
}
.strip__item figcaption {
  margin-top: 7px; font-size: .6875rem; color: var(--gray-muted);
  text-align: center; letter-spacing: .02em;
}
.strip__note { margin-top: 16px; text-align: center; font-size: .75rem; color: var(--gray-muted); }

/* ---------- セクション共通 ---------- */
.section { padding: 84px 0; }
.section--light { background: var(--lightgray); }
.section--dark { background: var(--navy); color: var(--white); }
.section-label {
  font-size: .75rem; font-weight: 800; letter-spacing: .18em; color: var(--red);
  margin-bottom: 10px;
}
.section__title {
  font-size: clamp(1.5rem, 2.6vw, 2rem); font-weight: 800; line-height: 1.5;
  color: var(--navy); margin-bottom: 34px;
}
.section--dark .section__title { color: var(--white); }
.section__closing {
  margin-top: 30px; font-size: 1rem; color: var(--gray-text); line-height: 1.85;
}
.section--dark .section__closing { color: #C9CDD3; }
.subhead {
  margin: 52px 0 20px; font-size: 1.1875rem; font-weight: 800; color: var(--navy);
  padding-left: 13px; border-left: 4px solid var(--red); line-height: 1.5;
}
.section--dark .subhead { color: var(--white); }
.note { margin-top: 12px; font-size: .8125rem; color: var(--gray-muted); line-height: 1.7; }
.note--dark { color: #8A94A3; }
.note--center { text-align: center; margin-top: 26px; }

/* ---------- 番号つきリスト ---------- */
.numbered { list-style: none; display: grid; gap: 12px; }
.numbered li {
  display: flex; align-items: center; gap: 18px;
  background: var(--white); border-radius: var(--radius); padding: 18px 24px;
}
.numbered__num {
  flex: 0 0 34px; height: 34px; border-radius: 50%;
  background: var(--navy); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .9375rem;
}
.numbered--red .numbered__num { background: var(--red); }
.numbered__body { font-size: 1rem; line-height: 1.7; }
.numbered__body strong { color: var(--navy); }

/* ---------- カードグリッド ---------- */
.card-grid { display: grid; gap: 20px; }
.card-grid--2 { grid-template-columns: repeat(2, 1fr); }
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }

/* サービスカード */
.svc-card {
  background: var(--lightgray); border-radius: var(--radius); padding: 28px 26px 26px;
  text-decoration: none; display: flex; flex-direction: column;
  border: 2px solid transparent; transition: border-color .2s, transform .2s;
}
.svc-card:hover { border-color: var(--red); transform: translateY(-3px); }
.svc-card__tag { font-size: .875rem; font-weight: 800; color: var(--red); margin-bottom: 8px; }
.svc-card__num { font-size: 1.0625rem; margin-right: 4px; }
.svc-card__name { font-size: 1.375rem; font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.svc-card__desc { font-size: .9375rem; color: var(--gray-text); line-height: 1.75; flex: 1 1 auto; }
.svc-card__price { margin-top: 18px; font-size: 1rem; font-weight: 700; color: var(--navy); }
.svc-card__price strong { font-size: 1.875rem; font-weight: 800; margin: 0 2px; }

/* ---------- 価格バンド ---------- */
.price-band {
  margin-top: 28px; background: var(--navy); color: var(--white);
  border-radius: var(--radius); padding: 18px 26px; text-align: center;
  font-size: 1.0625rem; font-weight: 800; line-height: 1.6;
}
.price-band--light { background: var(--red); }
.price-band--multi { font-size: 1rem; }

/* ---------- サービス見出し ---------- */
.svc-head { display: flex; align-items: baseline; flex-wrap: wrap; gap: 12px; margin-bottom: 8px; }
.svc-head__num { font-size: 1.75rem; font-weight: 800; color: var(--red); line-height: 1; }
.svc-head__name { font-size: 1.375rem; font-weight: 800; color: var(--navy); }
.svc-head__tag {
  font-size: .8125rem; font-weight: 700; color: var(--red);
  border: 1px solid rgba(230,57,70,.45); border-radius: 999px; padding: 3px 14px;
}

/* ---------- なぜ大事か ---------- */
.why {
  background: var(--lightgray); border-left: 4px solid var(--red);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 26px 28px; margin-bottom: 38px;
}
.section--light .why { background: var(--white); }
.why__lead { font-size: 1.1875rem; font-weight: 800; color: var(--navy); margin-bottom: 14px; line-height: 1.6; }
.why__list { list-style: none; display: grid; gap: 9px; }
.why__list li {
  font-size: .9375rem; color: var(--gray-text); line-height: 1.8;
  padding-left: 20px; position: relative;
}
.why__list li::before {
  content: ""; position: absolute; left: 2px; top: .72em;
  width: 7px; height: 7px; border-radius: 50%; background: var(--red);
}

/* ---------- ステップ ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.steps--4 { grid-template-columns: repeat(4, 1fr); }
.step {
  background: var(--lightgray); border-radius: var(--radius); padding: 26px 22px;
  text-align: center;
}
.section--light .step { background: var(--white); }
.section--dark .step { background: rgba(255,255,255,.06); }
.step__number {
  width: 42px; height: 42px; margin: 0 auto 14px; border-radius: 50%;
  background: var(--red); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.125rem;
}
.step__title { font-size: 1.0625rem; font-weight: 800; color: var(--navy); margin-bottom: 9px; line-height: 1.5; }
.section--dark .step__title { color: var(--white); }
.step__body { font-size: .875rem; color: var(--gray-text); line-height: 1.75; }
.section--dark .step__body { color: #C9CDD3; }

/* ---------- 見本ショット ---------- */
.shots { display: grid; gap: 18px; }
.shots--2 { grid-template-columns: repeat(2, 1fr); }
.shots--3 { grid-template-columns: repeat(3, 1fr); }
.shots--4 { grid-template-columns: repeat(4, 1fr); }
.shot { margin: 0; }
.shot img {
  width: 100%; height: auto; border-radius: 8px;
  border: 1px solid var(--line); background: var(--white);
  box-shadow: 0 6px 18px rgba(11,15,20,.08);
}
.shot figcaption {
  margin-top: 9px; font-size: .8125rem; color: var(--gray-muted);
  text-align: center; line-height: 1.6;
}

.lead-box {
  margin-top: 24px; background: var(--lightgray); border-radius: var(--radius);
  padding: 22px 26px; font-size: .9375rem; line-height: 1.85; color: var(--gray-text);
}
.section--light .lead-box { background: var(--white); }
.lead-box strong { color: var(--navy); }

/* ---------- 左右分割 ---------- */
.split { display: grid; grid-template-columns: 1.2fr .8fr; gap: 34px; align-items: center; }
.split__text h4 { font-size: 1.1875rem; font-weight: 800; color: var(--navy); margin-bottom: 14px; line-height: 1.55; }
.split__text p { font-size: .9375rem; color: var(--gray-text); line-height: 1.85; }
.split__badge {
  display: inline-block; margin-top: 16px; font-size: .8125rem; font-weight: 800;
  color: var(--red); border: 1px solid rgba(230,57,70,.4);
  border-radius: 999px; padding: 5px 16px;
}

/* ---------- チェックリスト ---------- */
.tick { list-style: none; display: grid; gap: 10px; }
.tick li { position: relative; padding-left: 28px; font-size: .9375rem; line-height: 1.75; color: var(--gray-text); }
.tick li::before {
  content: ""; position: absolute; left: 4px; top: .5em;
  width: 13px; height: 7px; border-left: 2.5px solid var(--red);
  border-bottom: 2.5px solid var(--red); transform: rotate(-45deg);
}
.tick--center { margin-top: 28px; justify-items: center; }

/* ---------- 特徴グリッド ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.feature { background: var(--lightgray); border-radius: var(--radius); padding: 24px 26px; }
.section--light .feature { background: var(--white); }
.feature__title { font-size: 1.0625rem; font-weight: 800; color: var(--red); margin-bottom: 9px; line-height: 1.5; }
.feature__body { font-size: .9375rem; color: var(--gray-text); line-height: 1.8; }

/* ---------- 連携特典 ---------- */
.combo {
  background: rgba(230,57,70,.1); border: 1px solid rgba(230,57,70,.45);
  border-radius: var(--radius); padding: 28px 26px;
}
.combo__pair { font-size: .8125rem; font-weight: 800; color: #FF8F98; margin-bottom: 10px; }
.combo__name { font-size: 1.25rem; font-weight: 800; color: var(--white); margin-bottom: 12px; }
.combo__desc { font-size: .9375rem; color: #C9CDD3; line-height: 1.8; }

/* ---------- 料金表 ---------- */
.table-wrap { overflow-x: auto; }
.ptable { width: 100%; border-collapse: collapse; min-width: 640px; }
.ptable th, .ptable td {
  border-bottom: 1px solid var(--line); padding: 20px 18px;
  text-align: left; vertical-align: middle; font-size: .9375rem; line-height: 1.7;
}
.ptable thead th {
  background: var(--navy); color: var(--white); font-size: .875rem;
  font-weight: 700; border-bottom: none;
}
/* td.ptable__price と重ねて指定の強さを上げている。.ptable__price だけだと
   上の `.ptable th, .ptable td { text-align: left }` に負けて左揃えのままになる */
.ptable thead th:last-child, .ptable td.ptable__price { text-align: right; }
.ptable tbody th { font-weight: 800; color: var(--navy); font-size: 1rem; white-space: nowrap; }
.ptable__num { color: var(--red); margin-right: 3px; }
.ptable td { color: var(--gray-text); }
.ptable__price { font-weight: 800; color: var(--navy); font-size: 1.125rem; white-space: nowrap; }
.ptable__sub { display: inline-block; margin-top: 4px; font-size: .8125rem; color: var(--gray-muted); }
.ptable__set { background: var(--lightgray); }
.ptable__set th, .ptable__set .ptable__price { color: var(--red); }

/* ---------- デモ動画 ---------- */
.demo__tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; }
.demo__tab {
  font-family: inherit; font-size: .875rem; font-weight: 700;
  padding: 9px 20px; border-radius: 999px; cursor: pointer;
  background: var(--white); color: var(--gray-text);
  border: 1.5px solid var(--line); transition: background .2s, border-color .2s, color .2s;
}
.demo__tab:hover { border-color: var(--red); color: var(--red); }
.demo__tab.is-active { background: var(--red); border-color: var(--red); color: var(--white); }
.demo__stage { display: flex; gap: 40px; align-items: flex-start; justify-content: center; }
.shot--banner { max-width: 300px; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 12px; max-width: 860px; }
.faq__item { background: var(--white); border-radius: var(--radius); overflow: hidden; }
.faq__item summary {
  cursor: pointer; list-style: none; padding: 20px 52px 20px 24px;
  font-weight: 800; color: var(--navy); font-size: 1rem; position: relative; line-height: 1.6;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+"; position: absolute; right: 22px; top: 50%; transform: translateY(-50%);
  color: var(--red); font-size: 1.5rem; font-weight: 700; line-height: 1;
}
.faq__item[open] summary::after { content: "−"; }
.faq__item p { padding: 0 24px 22px; font-size: .9375rem; color: var(--gray-text); line-height: 1.85; }

/* ---------- プロフィール ---------- */
.profile { display: flex; gap: 32px; align-items: flex-start; max-width: 900px; }
/* width を明示する。SP(640px以下)で .profile が flex-direction: column になると
   flex-basis の 132px が「高さ」の指定になり、幅が auto になる。中身は両方 absolute で
   幅を持たないため、指定しないと枠が幅0に潰れて写真が消える */
.profile__photo-wrap { flex: 0 0 132px; width: 132px; height: 132px; position: relative; }
.profile__fallback {
  position: absolute; inset: 0; border-radius: 50%; background: var(--navy);
  color: var(--white); display: flex; align-items: center; justify-content: center;
  font-size: 2.75rem; font-weight: 800;
}
.profile__photo {
  position: absolute; inset: 0; width: 132px; height: 132px;
  border-radius: 50%; object-fit: cover; opacity: 0; transition: opacity .3s;
}
.profile__photo.is-loaded { opacity: 1; }
.profile__name { font-size: 1.375rem; font-weight: 800; color: var(--navy); }
.profile__role { font-size: .875rem; color: var(--red); font-weight: 700; margin: 4px 0 14px; }
.profile__bio { font-size: .9375rem; color: var(--gray-text); line-height: 1.9; }

/* ---------- CTA ---------- */
/* 本文途中に置くCTA。ヒーローと最下部コンタクトの間が長すぎて、
   途中で申し込みたくなった読者が動けないため。ネイビー帯にして
   白背景・薄灰背景のどちらのセクションに置いても目立つようにする */
.cta-inline {
  margin-top: 44px; padding: 30px 26px;
  background: var(--navy); border-radius: var(--radius);
  text-align: center; color: var(--white);
}
.cta-inline__lead {
  font-size: 1.0625rem; font-weight: 700; line-height: 1.7; margin-bottom: 20px;
}
.cta-inline__buttons { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.cta-inline__note { margin-top: 16px; font-size: .8125rem; color: #98A2AF; }

/* CTAが4本続くので、ネイビーとレッドを交互にして単調さを避ける */
.cta-inline--red { background: var(--red); }
.cta-inline--red .cta-inline__note { color: rgba(255,255,255,.82); }

.section--cta .offers { margin-bottom: 34px; }
.offer {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius); padding: 24px 22px;
}
.offer__num { font-size: 1.125rem; font-weight: 800; color: var(--red); margin-bottom: 4px; }
.offer__title { font-size: 1.0625rem; font-weight: 800; color: var(--white); margin-bottom: 8px; line-height: 1.5; }
.offer__desc { font-size: .875rem; color: #C9CDD3; line-height: 1.7; }
.cta__lead { font-size: 1.0625rem; color: #E7E9EC; text-align: center; margin-bottom: 20px; }
.cta__line { text-align: center; margin-bottom: 46px; }
.cta__email { margin-top: 22px; font-size: .875rem; color: #98A2AF; text-align: center; }
.cta__email a { color: #C9CDD3; }

/* ---------- フォーム ---------- */
.contact-form-wrap { max-width: 620px; margin: 0 auto; }
.contact-form__or { text-align: center; font-size: .875rem; color: #98A2AF; margin-bottom: 22px; }
.contact-form__honeypot { position: absolute; left: -9999px; }
.form-field { margin-bottom: 20px; }
.form-field label, .form-field legend {
  display: block; font-size: .875rem; font-weight: 700; color: #E7E9EC; margin-bottom: 8px;
}
.form-required {
  display: inline-block; margin-left: 8px; font-size: .6875rem; font-weight: 700;
  background: var(--red); color: var(--white); border-radius: 3px; padding: 1px 7px;
  vertical-align: 2px;
}
.form-field input[type="text"], .form-field textarea {
  width: 100%; font-family: inherit; font-size: 1rem; padding: 13px 15px;
  border-radius: 6px; border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.07); color: var(--white); line-height: 1.6;
}
.form-field input::placeholder, .form-field textarea::placeholder { color: #7A8494; }
.form-field input:focus, .form-field textarea:focus {
  outline: none; border-color: var(--red); background: rgba(255,255,255,.11);
}
.form-field--checks { border: none; }
.check { display: inline-flex !important; align-items: center; gap: 7px; margin: 0 16px 10px 0; font-weight: 500 !important; }
.check input { accent-color: var(--red); width: 17px; height: 17px; }
.contact-form__submit { width: 100%; margin-top: 6px; }
.form-status { margin-top: 16px; font-size: .875rem; color: #FF98A0; text-align: center; line-height: 1.8; }
.form-status a { color: #FF98A0; }
.form-success {
  background: rgba(255,255,255,.1); border-radius: var(--radius);
  padding: 26px; text-align: center; font-weight: 700; color: var(--white);
}

/* ---------- フッター ---------- */
.footer { background: var(--black); color: #98A2AF; padding: 44px 0 38px; font-size: .8125rem; }
.footer__line { line-height: 1.9; }
.footer__line a { color: #C9CDD3; }
.footer__copyright { margin-top: 10px; color: #6B7480; }
.footer__privacy { margin-top: 18px; border-top: 1px solid rgba(255,255,255,.08); padding-top: 14px; }
.footer__privacy summary { cursor: pointer; font-weight: 700; color: #C9CDD3; }
.footer__privacy p { margin-top: 12px; line-height: 1.95; color: #8A94A3; }

/* ---------- スクロール連動(script.js と対応) ---------- */
.js .reveal { opacity: 0; transform: translateY(18px); }
.js .reveal.is-visible {
  opacity: 1; transform: none;
  transition: opacity .6s ease, transform .6s cubic-bezier(.22,.61,.36,1);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; }
}

/* =========================================================
   レスポンシブ
   ========================================================= */
@media (max-width: 900px) {
  /* 1カラムでは「キャッチコピー → デモ動画 → リード文 → CTA」の順に並べる。
     hero__text を display:contents にして、その子要素とhero__visualを直接並び替える。
     余白は各要素の margin をそのまま使うため gap は 0 にする */
  .hero__inner { display: flex; flex-direction: column; gap: 0; }
  .hero__text { display: contents; }
  .eyebrow { order: 1; }
  .hero__headline { order: 2; }
  .hero__visual { order: 3; margin: 4px 0 30px; }
  .hero__lead { order: 4; }
  .hero__cta { order: 5; }
  .hero__note { order: 6; }
  .card-grid--3, .card-grid--2 { grid-template-columns: 1fr; }
  .steps, .steps--4 { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 24px; }
  .shots--4 { grid-template-columns: repeat(2, 1fr); }
  .topbar__nav { display: none; }
  /* 制作物の帯: 6枚並べると小さくなりすぎるので横スクロールにする。
     左右の負マージンで画面端まで見せ、padding で最初と最後の内側余白を戻す */
  /* scroll-snap は付けない。snap が padding を飛ばして1枚目が画面端に貼りつくため。
     スクロールバーは見た目を損ねるので隠す(右端で見切れることが続きの合図になる) */
  .strip__row {
    display: flex; gap: 12px; overflow-x: auto;
    padding: 0 var(--pad); margin: 0 calc(var(--pad) * -1);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; -ms-overflow-style: none;
  }
  .strip__row::-webkit-scrollbar { display: none; }
  .strip__item { flex: 0 0 134px; }
  .strip__item img { height: 166px; }

  /* お問い合わせの①〜③(offers): 3枚縦積みだと高さを食い過ぎてLINEボタンが画面外に出るため、
     横スクロールに変える。②が右端からのぞく幅にして「まだ続きがある」ことを示す。
     .strip__row と同じ考え方: 負マージンで画面端まで見せ、paddingで内側の余白を戻す。
     scroll-snapは付けない(snapがpaddingを飛ばして1枚目が画面端に貼りつくため) */
  .offers {
    display: flex; gap: 12px; overflow-x: auto;
    padding: 0 var(--pad); margin: 0 calc(var(--pad) * -1);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; -ms-overflow-style: none;
  }
  .offers::-webkit-scrollbar { display: none; }
  /* 幅は % ではなく px 固定。% だと flex-basis と shrink の解釈がブラウザで揺れて
     2枚目以降が潰れ、文字が折り返して逆に背が高くなる。実績のある .strip__item と同じ書き方 */
  /* 番号とタイトルを同じ行に並べてカードの縦幅を詰める。説明文だけ flex-basis:100% で次の行に回す。
     HTMLは触らず、.offer 自身を flex コンテナにして実現している */
  .offer {
    flex: 0 0 260px;
    display: flex; flex-wrap: wrap; align-items: baseline;
    column-gap: 7px; padding: 18px;
  }
  .offer__num, .offer__title { margin-bottom: 0; }
  .offer__desc { flex: 0 0 100%; margin-top: 6px; }
  .section--cta .offers { margin-bottom: 20px; }

  /* コンタクトは「飛んできた直後にフォームの入力欄が少し見える」ことを優先して余白を詰める。
     他のセクションに影響しないよう .section--cta に限定する */
  .section--cta { padding-top: 44px; }
  .section--cta .section__title { margin-bottom: 20px; }
  .section--cta .cta__lead { margin-bottom: 16px; }
  .section--cta .cta__line { margin-bottom: 26px; }
  .section--cta .contact-form__or { margin-bottom: 14px; }
}

@media (max-width: 640px) {
  :root { --pad: 18px; }
  .sp-only { display: inline; }
  .section { padding: 60px 0; }
  .hero { padding: 52px 0 62px; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .button { text-align: center; }
  .steps, .steps--4, .shots--3, .shots--2 { grid-template-columns: 1fr; }
  .shots--4 { grid-template-columns: repeat(2, 1fr); }
  .numbered li { align-items: flex-start; gap: 14px; padding: 16px 18px; }
  .numbered__body { font-size: .9375rem; }
  .demo__stage { flex-direction: column; align-items: center; gap: 30px; }
  .profile { flex-direction: column; align-items: center; text-align: center; gap: 20px; }
  .price-band { font-size: .9375rem; padding: 16px 18px; }
  .price-band--multi { font-size: .875rem; }
  .subhead { font-size: 1.0625rem; margin: 40px 0 18px; }
  .check { margin-right: 12px; }
  /* ヒーロー: モックとバナーを小さくして見出しを早く見せる */
  .phone-frame { width: 210px; }
  .hero__stack .phone-frame { width: 172px; }
  .hero__banner { width: 144px; margin-right: -2px; }
  .eyebrow { font-size: .75rem; padding: 5px 13px; }
  /* 上部バー: ロゴの副題を隠してLINEボタンを1行に収める */
  .topbar__inner { gap: 12px; }
  .topbar__logo { font-size: .9375rem; }
  .topbar__logo span { display: none; }
  .button--sm { padding: 8px 15px; font-size: .8125rem; }
  .cta-inline { padding: 24px 18px; }
  .cta-inline__buttons { flex-direction: column; align-items: stretch; }
  .cta-inline__buttons .button { text-align: center; }
}
