/* ============================================
 * リスト屋 LP メインスタイル v3
 * - 黒い太罫線・黒オフセットシャドウ撤廃
 * - 薄いグレーボーダー + 自然なドロップシャドウ
 * - 背景は白・薄いクリーム・薄い青・薄い紫のみ
 * - 軽やかで清潔感のある印象
 * ============================================ */

:root {
  /* ブランドカラー (厳格な青パレット) */
  --brand-primary: #2563eb;
  --brand-primary-dark: #1d4ed8;
  --brand-secondary: #1e40af;       /* 旧purple → dark blue */
  --brand-secondary-dark: #1e3a8a;  /* 旧purple dark → blue 900 */
  --brand-pink: #1d4ed8;            /* 旧pink → dark blue */
  --brand-orange: #2563eb;          /* 旧orange → blue (キャンペーンバナーはhc-label内で#f97316を直書き) */
  --brand-yellow: #0ea5e9;          /* 旧yellow → sky blue */
  --brand-green: #2563eb;           /* 旧green → primary blue */
  --brand-green-dark: #1d4ed8;      /* 旧green dark → dark blue */
  --brand-red: #ef4444;             /* del取り消し線のみで使用 */
  --brand-cyan: #0ea5e9;            /* 旧cyan → sky blue */

  /* テキスト */
  --text: #0f172a;
  --text-on-dark: #ffffff;

  /* セクション背景 — 白・極薄グレー・極薄ブルーのみ */
  --bg-white: #ffffff;
  --bg-cream: #f8fafc;              /* 旧cream → light gray */
  --bg-blue-soft: #eff6ff;
  --bg-purple-soft: #f1f5f9;        /* 旧purple → gray */
  --bg-pink-soft: #f8fafc;          /* 旧pink → gray */
  --bg-mint-soft: #eff6ff;          /* 旧mint → blue */

  /* 罫線 */
  --border: #e2e8f0;
  --border-soft: #f1f5f9;

  /* シャドウ (自然なドロップシャドウ) */
  --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 6px 20px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 12px 32px rgba(15, 23, 42, 0.10);
  --shadow-xl: 0 20px 48px rgba(15, 23, 42, 0.12);
  --shadow-brand: 0 8px 24px rgba(37, 99, 235, 0.18);
  --shadow-brand-lg: 0 12px 32px rgba(37, 99, 235, 0.25);

  /* 角丸 */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* レイアウト (カードの折り返しを避けるため広めに) */
  --container-w: 1340px;
  --container-narrow: 920px;
}

html { font-size: 17px; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN",
    "Hiragino Sans", "Yu Gothic", Meiryo, sans-serif;
  color: var(--text);
  background: var(--bg-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "palt";
  line-height: 1.85;
  font-size: 17px;
}

/* 本文テキストは黒に統一 */
p, li, td, th, label, span, div, dd, dt, a, button, input, select, textarea {
  color: inherit;
}

.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}
.container.narrow { max-width: var(--container-narrow); }
.center { text-align: center; }

/* ============================================
 * Header
 * ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  height: 76px;
  gap: 32px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}
.logo-mark {
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: contain;
  box-shadow: var(--shadow-brand);
}
.logo-text {
  font-size: 22px;
  color: var(--text);
  letter-spacing: -0.01em;
}
.global-nav {
  display: flex;
  gap: 32px;
  margin-left: auto;
}
.nav-link {
  font-size: 15px;
  color: var(--text);
  font-weight: 600;
  padding: 10px 0;
  position: relative;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--brand-primary); }
.nav-link.active { color: var(--brand-primary); }
.nav-link.active::after,
.nav-link:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-secondary));
  border-radius: 2px;
}
.header-cta { margin-left: 8px; }
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

/* ============================================
 * Buttons
 * ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.btn-primary {
  background: var(--brand-primary);
  color: #fff;
  box-shadow: var(--shadow-brand);
}
.btn-primary:hover {
  background: var(--brand-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-brand-lg);
}
.btn-outline {
  background: #fff;
  color: var(--brand-primary);
  border: 1.5px solid var(--brand-primary);
  box-shadow: var(--shadow-xs);
}
.btn-outline:hover {
  background: var(--brand-primary);
  color: #fff;
  border-color: var(--brand-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-brand);
}
.btn-pop {
  background: var(--brand-yellow);
  color: #fff;
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.35);
}
.btn-pop:hover {
  background: #d97706;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(245, 158, 11, 0.45);
}
.btn-sm { padding: 10px 22px; font-size: 14px; }
.btn-lg { padding: 18px 44px; font-size: 17px; }
.btn-block { width: 100%; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; box-shadow: none; }

/* ============================================
 * Sections common
 * ============================================ */
section { padding: 100px 0; position: relative; }

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  color: var(--brand-secondary);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 18px;
  padding: 6px 16px;
  background: rgba(139, 92, 246, 0.10);
  border-radius: 999px;
}
.eyebrow-wrap.center { text-align: center; margin-bottom: 0; }

.section-title {
  font-size: 48px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--text);
}
.section-title .accent {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-lead {
  font-size: 19px;
  color: var(--text);
  text-align: left;
  max-width: 920px;
  margin: 0 auto 64px;
  font-weight: 500;
  line-height: 1.9;
}
.section-icon {
  display: block;
  margin: 0 auto 24px;
  width: 72px;
  height: 72px;
  color: var(--brand-secondary);
}

/* ============================================
 * Hero (phase5p: 100vh 拘束撤廃 / 上空き圧縮)
 * ============================================ */
.hero {
  position: relative;
  background: linear-gradient(180deg, #fbfcff 0%, #ffffff 70%);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.hero-slides {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 12px 0 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.6s ease;
  pointer-events: none;
}
.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}
.hero-title {
  font-size: 54px;
  font-weight: 900;
  line-height: 1.22;
  letter-spacing: -0.025em;
  margin-bottom: 32px;
  color: var(--text);
}
.hero-line { display: block; white-space: nowrap; }
.hero-line.accent {
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 50%, var(--brand-pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-lead {
  font-size: 19px;
  color: var(--text);
  line-height: 1.95;
  margin-bottom: 40px;
  font-weight: 500;
}
.hero-cta { display: flex; gap: 16px; margin-bottom: 24px; flex-wrap: wrap; }
.hero-note {
  font-size: 14px;
  color: var(--text);
  font-weight: 600;
}

.hero-visual { display: flex; justify-content: center; }
.hero-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  width: 100%;
  max-width: 620px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.3s;
}
.hero-card:hover { transform: translateY(-4px); }
.hero-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-secondary));
}
.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot-red { background: #ff5f57; }
.dot-yellow { background: #febc2e; }
.dot-green { background: #28c840; }
.hero-card-title {
  margin-left: 8px;
  font-size: 13px;
  color: #fff;
  font-weight: 600;
}
.hero-card-body { padding: 32px; }
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 26px;
}
.stat {
  background: var(--bg-blue-soft);
  padding: 16px 10px;
  border-radius: var(--radius-sm);
  text-align: center;
  border: 1px solid var(--border);
}
.stat-label { display: block; font-size: 13px; color: var(--text); margin-bottom: 6px; font-weight: 700; }
.stat-val { display: block; font-size: 26px; font-weight: 900; color: var(--brand-primary); }
.stat-val.accent-green { color: var(--brand-green); }
.stat-val.accent-red { color: var(--brand-red); }
.stat-val.accent-purple { color: var(--brand-secondary); }
.progress {
  height: 10px;
  background: #e2e8f0;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 18px;
}
.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-secondary), var(--brand-pink));
  border-radius: 999px;
}
.log {
  background: #f8fafc;
  color: var(--text);
  padding: 18px 20px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-family: "SF Mono", Menlo, Consolas, monospace;
  line-height: 1.95;
  max-height: 195px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.log p { margin: 2px 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: var(--text); }
.log-name { color: var(--text); font-weight: 700; }
.log-arrow { color: var(--brand-green); font-weight: 700; }

/* ============================================
 * Problem section (cream bg)
 * ============================================ */
.problem { background: var(--bg-cream); }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
  align-items: stretch;
}
.problem-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 44px 40px;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s;
  min-height: 240px;
  display: flex;
  flex-direction: column;
}
.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.problem-num {
  position: absolute;
  top: 24px;
  right: 28px;
  font-size: 44px;
  font-weight: 900;
  color: var(--brand-orange);
  font-family: "Helvetica Neue", sans-serif;
  line-height: 1;
  opacity: 0.85;
}
.problem-card h3 {
  font-size: 23px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text);
  padding-right: 60px;
}
.problem-card p {
  font-size: 16px;
  color: var(--text);
  line-height: 1.9;
  font-weight: 500;
}

/* ============================================
 * Solution section (blue soft bg)
 * ============================================ */
.solution { background: var(--bg-blue-soft); }
.solution-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
  align-items: stretch;
}
.solution-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 48px 44px;
  text-align: left;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s;
  position: relative;
  min-height: 340px;
  display: flex;
  flex-direction: column;
}
.solution-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.solution-card.highlighted {
  background: linear-gradient(180deg, #f7f3ff 0%, #ffffff 100%);
  border: 1.5px solid var(--brand-secondary);
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.15);
}
.solution-card.highlighted::before {
  content: "他にはない機能";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand-pink);
  color: #fff;
  padding: 5px 18px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(236, 72, 153, 0.3);
}
.solution-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 84px;
  border-radius: var(--radius-lg);
  color: #fff;
  margin-bottom: 26px;
  box-shadow: var(--shadow-md);
  flex-shrink: 0;
}
.solution-icon svg { width: 46px; height: 46px; }
.icon-blue { background: linear-gradient(135deg, #3b82f6, var(--brand-primary)); }
.icon-purple { background: linear-gradient(135deg, #a78bfa, var(--brand-secondary)); }
.icon-green { background: linear-gradient(135deg, #34d399, var(--brand-green)); }
.icon-orange { background: linear-gradient(135deg, #fb923c, var(--brand-orange)); }
.solution-card h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text);
}
.solution-card p {
  font-size: 16px;
  color: var(--text);
  line-height: 1.95;
  font-weight: 500;
}
.solution-card strong { color: var(--brand-secondary); font-weight: 800; }

/* ============================================
 * Features (light purple bg)
 * ============================================ */
.features-section { background: var(--bg-purple-soft); }

.feature-detail-grid {
  display: grid;
  gap: 96px;
  margin-top: 48px;
}
.feature-block {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 72px;
  align-items: stretch;
}
.feature-block.reverse { grid-template-columns: 1fr 1.15fr; }
.feature-block.reverse .feature-block-text { order: 2; }
.feature-block.reverse .feature-block-visual { order: 1; }

.feature-tag {
  display: inline-block;
  background: rgba(139, 92, 246, 0.12);
  color: var(--brand-secondary);
  font-size: 12px;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.feature-block-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.feature-block-text h3 {
  font-size: 34px;
  font-weight: 900;
  margin-bottom: 22px;
  letter-spacing: -0.01em;
  color: var(--text);
  line-height: 1.35;
}
.feature-block-text p {
  font-size: 17px;
  color: var(--text);
  line-height: 1.95;
  margin-bottom: 24px;
  font-weight: 500;
  text-align: left;
}
.feature-points li {
  font-size: 16px;
  padding: 10px 0;
  padding-left: 32px;
  position: relative;
  color: var(--text);
  font-weight: 500;
  line-height: 1.8;
}
.feature-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--brand-green);
  font-weight: 900;
  font-size: 18px;
}
.feature-points strong { color: var(--brand-secondary); }

.feature-block-visual {
  display: flex;
  align-items: stretch;
}
.visual-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow-md);
  color: var(--text);
  width: 100%;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.visual-label {
  font-size: 15px;
  font-weight: 800;
  color: var(--brand-secondary);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 22px;
  text-align: center;
}
.visual-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 22px;
}
.vf-item {
  background: var(--bg-blue-soft);
  padding: 14px 22px;
  border-radius: var(--radius-sm);
  font-family: "SF Mono", Menlo, Consolas, monospace;
  font-weight: 800;
  font-size: 15px;
  border: 1px solid var(--border);
}
.vf-item.vf-success {
  background: #ecfdf5;
  color: var(--brand-green-dark);
  border-color: #a7f3d0;
}
.vf-arrow { font-size: 26px; color: var(--brand-pink); font-weight: 900; }
.visual-note {
  font-size: 12px;
  color: var(--text);
  text-align: center;
  line-height: 1.75;
  font-weight: 500;
}
.site-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.site-chip {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  box-shadow: var(--shadow-xs);
}
/* 等幅リストアイテム (SNS / 出力形式 / 補完情報) — すべて同じサイズで並ぶ */
.sns-list, .format-list, .aug-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
.sns-item, .format-item, .aug-list li {
  width: 100%;
  min-height: 56px;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
.sns-item {
  background: var(--bg-pink-soft);
  border: 1px solid #fbcfe8;
}
.format-item {
  background: var(--bg-blue-soft);
  border: 1px solid #bfdbfe;
}
.aug-list li {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: var(--brand-green-dark);
}
.aug-inner {
  display: inline-block;
  width: 8em;
  text-align: left;
  margin-left: 3em;
}
.dedup-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.dedup-mode {
  background: var(--bg-blue-soft);
  border: 1px solid var(--border);
  padding: 18px;
  border-radius: var(--radius-sm);
  text-align: center;
}
.dedup-mode strong {
  display: block;
  font-size: 16px;
  margin-bottom: 6px;
  color: var(--brand-primary);
  font-weight: 800;
}
.dedup-mode span { font-size: 12px; color: var(--text); font-weight: 600; }
.proxy-fields { display: flex; flex-direction: column; gap: 10px; }
.proxy-field {
  display: flex;
  justify-content: space-between;
  background: #f8fafc;
  border: 1px solid var(--border);
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
}
.proxy-field span:first-child { font-weight: 800; color: var(--text); }
.proxy-val { font-family: "SF Mono", Menlo, Consolas, monospace; color: var(--text); }

/* ============================================
 * Pricing (mint soft bg)
 * ============================================ */
.pricing-section { background: var(--bg-cream); }

/* 無料枠カード */
.free-card {
  max-width: 720px;
  margin: 0 auto 56px;
  background: linear-gradient(135deg, #fff7ed 0%, #ffffff 100%);
  border: 1px solid #fed7aa;
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  box-shadow: var(--shadow-md);
  position: relative;
}
.free-card::before {
  content: "初回限定";
  position: absolute;
  top: -12px;
  left: 32px;
  background: var(--brand-pink);
  color: #fff;
  padding: 6px 18px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(236, 72, 153, 0.3);
}
.free-card h3 {
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 900;
  margin-bottom: 8px;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.free-card-price {
  font-size: 32px;
  font-weight: 900;
  color: var(--brand-orange);
  margin-bottom: 14px;
}
.free-card-price small {
  font-size: 16px;
  color: var(--text);
  font-weight: 700;
  margin-left: 8px;
}
.free-card p {
  font-size: 14px;
  color: var(--text);
  line-height: 1.9;
  font-weight: 500;
}
.free-card .free-notes {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed #fed7aa;
  font-size: 13px;
}
.free-card .free-notes li {
  padding-left: 22px;
  position: relative;
  margin-bottom: 6px;
  font-weight: 600;
}
.free-card .free-notes li::before {
  content: "▶";
  position: absolute;
  left: 0;
  color: var(--brand-orange);
  font-size: 11px;
  top: 2px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
  margin-top: 40px;
  align-items: stretch;
}
.plan-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px 24px 32px;
  text-align: center;
  position: relative;
  transition: all 0.25s;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.plan-card.popular {
  background: linear-gradient(180deg, #f7f3ff 0%, #ffffff 100%);
  border: 1.5px solid var(--brand-secondary);
  transform: scale(1.04);
  box-shadow: 0 12px 32px rgba(139, 92, 246, 0.18);
}
.plan-card.popular:hover { transform: scale(1.04) translateY(-4px); box-shadow: 0 16px 40px rgba(139, 92, 246, 0.25); }
.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand-pink);
  color: #fff;
  padding: 7px 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(236, 72, 153, 0.3);
  white-space: nowrap;
}
.plan-name {
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 16px;
  color: var(--text);
}
.plan-price {
  font-size: 38px;
  font-weight: 900;
  color: var(--brand-primary);
  margin-bottom: 6px;
  line-height: 1.2;
}
.plan-price .yen { font-size: 22px; margin-right: 2px; vertical-align: middle; }
.plan-price .per {
  font-size: 15px;
  color: var(--text);
  font-weight: 700;
  margin-left: 2px;
}
.plan-count {
  font-size: 16px;
  color: var(--text);
  margin-bottom: 8px;
  font-weight: 700;
}
.plan-unit {
  font-size: 13px;
  color: var(--brand-secondary);
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.plan-features {
  text-align: left;
  margin-bottom: 24px;
  flex-grow: 1;
}
.plan-features li {
  font-size: 15px;
  padding: 7px 0;
  color: var(--text);
  font-weight: 600;
  white-space: nowrap;
}
.plan-features li.muted {
  color: var(--text);
  opacity: 0.35;
  text-decoration: line-through;
}

/* SNS パック注記 */
.pricing-disclaimer {
  max-width: 880px;
  margin: 32px auto 0;
  background: #fff;
  border: 1px solid #fed7aa;
  border-left: 4px solid var(--brand-orange);
  border-radius: var(--radius-md);
  padding: 24px 32px;
  box-shadow: var(--shadow-sm);
}
.pricing-disclaimer h4 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--brand-orange);
}
.pricing-disclaimer p {
  font-size: 14px;
  color: var(--text);
  line-height: 1.85;
  font-weight: 500;
  margin-bottom: 8px;
}
.pricing-disclaimer p:last-child { margin-bottom: 0; }

/* SNS パック申込フォーム */
.sns-pack-block {
  margin-top: 80px;
  padding-top: 80px;
  border-top: 1px dashed var(--border);
}
/* SNS パックのカード・料金表・申込ボタンは同じ幅で揃える */
.sns-form,
.sns-pricing {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  box-sizing: border-box;
}
.sns-form {
  margin-top: 40px;
  margin-bottom: 40px;
  background: #fff;
  border: 1px solid var(--border);
  border-top: 4px solid var(--brand-secondary);
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.sns-form-title {
  font-size: 17px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 24px;
  color: var(--text);
}
/* オプション (SNS) カード幅を揃えるため 5 等分グリッド */
.sns-checks {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}
.sns-check {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px 12px;
  background: var(--bg-purple-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  transition: all 0.2s;
  text-align: center;
  min-height: 100px;
  box-sizing: border-box;
}
.sns-check:hover {
  background: #ede9fe;
  border-color: var(--brand-secondary);
}
.sns-check input { width: 20px; height: 20px; cursor: pointer; accent-color: var(--brand-secondary); }
.sns-result {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, #f7f3ff, #fdf2f8);
  border: 1px solid #ede9fe;
  padding: 18px 26px;
  border-radius: var(--radius-sm);
  margin-bottom: 22px;
}
.sns-count-label, .sns-price-label { font-size: 14px; font-weight: 800; color: var(--text); }
.sns-price-label span { font-size: 26px; font-weight: 900; color: var(--brand-secondary); }
.sns-disclaimer {
  font-size: 12px;
  color: var(--text);
  margin-top: 16px;
  text-align: center;
  line-height: 1.75;
  font-weight: 500;
}
.sns-pricing {
  margin-top: 0;
}
.sns-pricing .comparison-table {
  width: 100%;
  box-sizing: border-box;
  table-layout: fixed;
}
/* SNSパック料金表: 列幅を 50/50 で揃え、金額を中央揃えに */
.sns-pricing .comparison-table th,
.sns-pricing .comparison-table td {
  width: 50%;
  text-align: center !important;
  padding: 18px 24px;
}
.sns-pricing .comparison-table td:first-child {
  text-align: center !important;
  font-weight: 700;
  font-size: 16px;
  color: var(--text);
}
.sns-pricing .comparison-table td:last-child {
  text-align: center !important;
  font-weight: 800;
  font-size: 18px;
  color: var(--text);
}

/* 比較表 */
.comparison-block {
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px dashed var(--border);
}
.table-wrap { overflow-x: auto; margin-top: 32px; }
.comparison-table {
  width: 100%;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.comparison-table th,
.comparison-table td {
  padding: 16px 18px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--text);
  font-weight: 600;
}
.comparison-table tr:last-child th,
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table th {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  color: #fff;
  font-weight: 800;
}
.comparison-table tbody tr:nth-child(even) { background: var(--bg-purple-soft); }
.comparison-table td:first-child {
  text-align: left;
  font-weight: 700;
  color: var(--text);
  font-size: 15px;
}
.comparison-table .o {
  color: #16a34a;
  font-weight: 900;
  font-size: 24px;
  line-height: 1;
}
.comparison-table .x {
  color: #dc2626;
  font-weight: 900;
  font-size: 24px;
  line-height: 1;
  opacity: 1;
}
.discount {
  color: var(--brand-pink);
  font-size: 12px;
  font-weight: 800;
  display: inline-block;
  margin-left: 4px;
}

/* ============================================
 * Flow (cream bg)
 * ============================================ */
.flow { background: var(--bg-mint-soft); }
.flow-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 48px;
  align-items: stretch;
}
.flow-list li {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 40px 28px;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.flow-list li:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.flow-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  color: #fff;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 18px;
  box-shadow: var(--shadow-brand);
}
.flow-list h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text);
}
.flow-list p {
  font-size: 13px;
  color: var(--text);
  line-height: 1.85;
  font-weight: 500;
}

/* ============================================
 * FAQ (pink soft bg)
 * ============================================ */
.faq-section { background: var(--bg-pink-soft); }
.faq-list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s;
}
.faq-item:hover { box-shadow: var(--shadow-md); }
.faq-q {
  width: 100%;
  text-align: left;
  padding: 24px 32px;
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-q::after {
  content: "+";
  font-size: 28px;
  color: var(--brand-pink);
  font-weight: 700;
  transition: transform 0.3s;
  margin-left: 16px;
  flex-shrink: 0;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  padding: 0 32px;
  max-height: 0;
  overflow: hidden;
  font-size: 16px;
  color: var(--text);
  line-height: 1.95;
  transition: max-height 0.3s, padding 0.3s;
  font-weight: 500;
}
.faq-item.open .faq-a {
  padding: 0 32px 28px;
  max-height: 800px;
  border-top: 1px dashed var(--border);
  padding-top: 20px;
}
.faq-a a { color: var(--text); text-decoration: none; font-weight: 700; }
.faq-a a:hover { color: var(--text); text-decoration: none; }
.faq-cat-title {
  font-size: 22px;
  font-weight: 800;
  margin: 48px 0 20px;
  padding: 12px 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--brand-pink);
  border-radius: var(--radius-sm);
  display: inline-block;
  color: var(--text);
  box-shadow: var(--shadow-xs);
}
.faq-cat-title:first-of-type { margin-top: 32px; }

/* ============================================
 * Contact (white)
 * ============================================ */
.contact-section { background: var(--bg-white); }
.contact-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 44px;
  box-shadow: var(--shadow-md);
  margin-top: 24px;
}
.form-group { margin-bottom: 26px; }
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--text);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 15px;
  background: #fff;
  color: var(--text);
  transition: all 0.2s;
  font-weight: 500;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.10);
}
.form-group textarea { resize: vertical; min-height: 160px; }
.required {
  display: inline-block;
  background: var(--brand-red);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 4px;
  margin-left: 8px;
  vertical-align: middle;
}
.form-checkbox label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
}
.form-checkbox input { width: 20px; height: 20px; accent-color: var(--brand-primary); }
.form-checkbox a { color: var(--text); text-decoration: none; font-weight: 700; }
.form-checkbox a:hover { color: var(--text); text-decoration: none; }
.contact-info {
  background: var(--bg-purple-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  margin-top: 36px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.contact-info h3 {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--text);
}
.contact-info p { font-size: 14px; color: var(--text); font-weight: 600; }
.contact-info .small { font-size: 12px; color: var(--text); margin-top: 10px; font-weight: 500; }
.contact-result-success {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: var(--brand-green-dark);
  padding: 18px 22px;
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
  font-weight: 700;
}
.contact-result-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: var(--brand-red);
  padding: 18px 22px;
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
  font-weight: 700;
}

/* ============================================
 * CTA section (vivid gradient)
 * ============================================ */
.cta {
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 50%, var(--brand-pink) 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 40%);
}
.cta .container { position: relative; z-index: 1; }
.cta-title {
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 18px;
  color: #fff;
  letter-spacing: -0.01em;
}
.cta-lead {
  font-size: 17px;
  margin-bottom: 36px;
  color: #fff;
  font-weight: 600;
}
.cta .btn-pop {
  background: #fff;
  color: var(--brand-primary);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}
.cta .btn-pop:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

/* ============================================
 * Page hero (legal pages)
 * ============================================ */
.page-hero {
  padding: 80px 0 56px;
  background:
    radial-gradient(ellipse at top, rgba(139, 92, 246, 0.10) 0%, transparent 60%),
    linear-gradient(180deg, #f8faff 0%, #fdfcff 100%);
  text-align: center;
}
.page-title {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--text);
}
.page-lead {
  font-size: 16px;
  color: var(--text);
  line-height: 1.95;
  font-weight: 500;
}

/* ============================================
 * Legal pages
 * ============================================ */
.legal-section { padding: 64px 0 96px; background: #fff; }
.legal-article { margin-bottom: 44px; }
.legal-article h2 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--brand-primary);
  color: var(--text);
}
.legal-article p {
  font-size: 14px;
  color: var(--text);
  line-height: 1.95;
  margin-bottom: 12px;
  font-weight: 500;
}
.legal-article ul { margin: 12px 0 12px 24px; }
.legal-article li {
  list-style: disc;
  font-size: 14px;
  line-height: 1.95;
  margin-bottom: 6px;
  color: var(--text);
  font-weight: 500;
}
.legal-article a { color: var(--text); text-decoration: none; font-weight: 700; }
.legal-article a:hover { color: var(--text); text-decoration: none; }
.legal-date {
  font-size: 13px;
  color: var(--text);
  text-align: right;
  margin-top: 40px;
  font-weight: 600;
}
.sct-table {
  width: 100%;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 24px;
  box-shadow: var(--shadow-sm);
}
.sct-table th,
.sct-table td {
  padding: 18px 24px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  vertical-align: top;
  color: var(--text);
  font-weight: 500;
}
.sct-table th {
  background: var(--bg-purple-soft);
  font-weight: 800;
  width: 28%;
}
.sct-table tr:last-child th,
.sct-table tr:last-child td { border-bottom: 0; }
.sct-table a { color: var(--text); text-decoration: none; font-weight: 700; }
.sct-table a:hover { color: var(--text); text-decoration: none; }

/* ============================================
 * Footer (light bg)
 * ============================================ */
.site-footer {
  background: #f8fafc;
  color: var(--text);
  padding: 72px 0 0;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border);
}
.site-footer .logo-text { color: var(--text); }
.footer-desc {
  font-size: 13px;
  color: var(--text);
  margin-top: 18px;
  line-height: 1.85;
  font-weight: 500;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-col h4 {
  font-size: 14px;
  font-weight: 800;
  color: var(--brand-secondary);
  margin-bottom: 18px;
  letter-spacing: 0.05em;
}
.footer-col li { margin-bottom: 12px; }
.footer-col a {
  font-size: 13px;
  color: var(--text);
  font-weight: 500;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--brand-primary); }
.footer-bottom {
  padding: 24px 0;
  font-size: 12px;
  color: var(--text);
  text-align: center;
  font-weight: 500;
  opacity: 0.7;
}

/* ============================================
 * Lightbox (click-to-zoom for screenshots)
 * ============================================ */
.zoomable {
  cursor: zoom-in;
  transition: opacity 0.2s;
}
.zoomable:hover { opacity: 0.88; }
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  padding: 40px 32px 80px;
  box-sizing: border-box;
}
.lightbox-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.lightbox-wrap {
  max-width: 96vw;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  cursor: zoom-out;
}
.lightbox-img {
  max-width: 96vw;
  max-height: 80vh;
  width: auto;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  background: #fff;
  object-fit: contain;
}
.lightbox-caption {
  color: #f8fafc;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  line-height: 1.7;
  max-width: 960px;
  padding: 0 16px;
}
.lightbox-close {
  position: fixed;
  top: 20px;
  right: 28px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border: none;
  font-size: 32px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.22);
}
@media (max-width: 768px) {
  .lightbox-overlay { padding: 24px 16px 64px; }
  .lightbox-img { max-height: 70vh; }
  .lightbox-close {
    top: 12px;
    right: 16px;
    width: 40px;
    height: 40px;
    font-size: 26px;
  }
}

/* ============================================
 * Screenshot section
 * ============================================ */
.screenshots { background: var(--bg-pink-soft); }
.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 48px;
  align-items: stretch;
}
.screenshot-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s;
  display: flex;
  flex-direction: column;
}
.screenshot-card figcaption { flex-grow: 1; }
.screenshot-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.screenshot-card img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: linear-gradient(135deg, #e0e7ff, #faf5ff);
}
.screenshot-card figcaption {
  padding: 22px 28px;
}
.screenshot-card figcaption h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text);
}
.screenshot-card figcaption p {
  font-size: 15px;
  color: var(--text);
  line-height: 1.8;
  font-weight: 500;
}

/* ============================================
 * Scroll-to-top button
 * ============================================ */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-brand-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all 0.3s ease;
  z-index: 99;
  border: none;
}
.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.35);
}
.scroll-top svg {
  width: 24px;
  height: 24px;
}

/* ============================================
 * Hero text increase
 * ============================================ */
.hero-text .eyebrow { font-size: 13px; }

/* 大きめ本文 */
.free-card h3 { font-size: 30px; }
.free-card-price { font-size: 36px; }
.free-card p { font-size: 16px; }
.free-card .free-notes { font-size: 15px; }

.pricing-disclaimer h4 { font-size: 18px; }
.pricing-disclaimer p { font-size: 16px; }

.sns-form-title { font-size: 19px; }
.sns-count-label, .sns-price-label { font-size: 16px; }
.sns-price-label span { font-size: 30px; }
.sns-disclaimer { font-size: 13px; }

.comparison-table th,
.comparison-table td { font-size: 16px; padding: 18px 20px; }

.flow-list h3 { font-size: 20px; }
.flow-list p { font-size: 15px; }

.faq-cat-title { font-size: 24px; }

.contact-info h3 { font-size: 19px; }
.contact-info p { font-size: 16px; }

.cta-title { font-size: 42px; }
.cta-lead { font-size: 19px; }

.nav-link { font-size: 16px; }
.logo-text { font-size: 24px; }

.footer-desc { font-size: 14px; }
.footer-col h4 { font-size: 15px; }
.footer-col a { font-size: 14px; }

/* ============================================
 * v2.1 追加スタイル
 * ============================================ */

/* --- 公開記念価格バナー --- */
.launch-badge-wrap {
  text-align: center;
  margin: 32px 0 28px;
}
.launch-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary), var(--brand-pink));
  color: #fff;
  padding: 12px 36px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.35);
  animation: pulse-glow 2.5s ease-in-out infinite;
}
.launch-note {
  font-size: 14px;
  color: var(--text-light);
  margin-top: 10px;
  font-weight: 600;
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 4px 20px rgba(139, 92, 246, 0.35); transform: scale(1); }
  50% { box-shadow: 0 6px 30px rgba(139, 92, 246, 0.55); transform: scale(1.02); }
}

/* --- 二重価格表示 --- */
.plan-price-regular {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0;
  line-height: 1.4;
}
.plan-price-regular del {
  text-decoration: line-through;
  text-decoration-color: #ef4444;
  text-decoration-thickness: 2px;
}

/* 050番号モーフ */
.morph-050 { color: #ef4444; font-weight: 700; }
.morph-real { color: var(--brand-primary); font-weight: 700; }
.log-unknown { color: #64748b; font-size: 12px; }

/* --- 機能紹介 訴求コピー --- */
.feature-appeal {
  margin-top: 16px;
  padding: 14px 18px;
  background: var(--bg-purple-soft);
  border-left: 4px solid var(--brand-secondary);
  border-radius: 0 8px 8px 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.7;
}

/* --- カルーセル --- */
.carousel-container {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  gap: 0;
}
.carousel-container::-webkit-scrollbar {
  display: none;
}
.carousel-container > .feature-block {
  scroll-snap-align: start;
  min-width: 100%;
  flex-shrink: 0;
}
.carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}
.carousel-prev,
.carousel-next {
  width: 44px;
  height: 44px;
  border: 2px solid var(--brand-primary);
  border-radius: 50%;
  background: #fff;
  color: var(--brand-primary);
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-prev:hover,
.carousel-next:hover {
  background: var(--brand-primary);
  color: #fff;
}
.carousel-dots {
  display: flex;
  gap: 8px;
}
.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #d1d5db;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  padding: 0;
}
.carousel-dot.active {
  background: var(--brand-primary);
  transform: scale(1.3);
}

/* デスクトップではカルーセルを無効化（全ブロック縦並び） */
@media (min-width: 1025px) {
  .carousel-container {
    display: block;
    overflow-x: visible;
    scroll-snap-type: none;
  }
  .carousel-container > .feature-block {
    min-width: unset;
    flex-shrink: unset;
  }
  .carousel-nav {
    display: none;
  }
}

/* --- v2.1 追加 (品質改善) --- */

/* (removed: old hero-launch-badge — replaced by .hero-campaign banner) */

/* 割引率バッジ */
.discount-badge {
  display: inline-block;
  background: #ef4444;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 6px;
  vertical-align: middle;
  letter-spacing: 0.03em;
}

/* 初期費用不要バッジ */
.no-cost-badges {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.no-cost-badge {
  display: inline-block;
  background: #fff;
  border: 1.5px solid var(--brand-primary);
  color: var(--brand-primary);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 999px;
}

/* リッチビジュアルカード */
.visual-card-rich {
  padding: 28px 24px;
}

/* メリット一覧 */
.visual-benefits {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 18px;
}
.vb-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.vb-icon {
  font-size: 20px;
  flex-shrink: 0;
  width: 28px;
  text-align: center;
}
.vb-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.5;
}

/* 活用シーン */
.visual-usecases {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 14px;
}
.vu-item {
  padding: 10px 14px;
  background: var(--bg-blue-soft);
  border-radius: 8px;
  border-left: 3px solid var(--brand-primary);
}
.vu-item strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--brand-primary);
  margin-bottom: 2px;
}
.vu-item span {
  font-size: 12px;
  color: var(--text-light);
  font-weight: 600;
}

/* サイトグリッド (小) */
.site-grid-sm {
  margin-top: 14px;
}
.site-grid-sm .site-chip {
  font-size: 11px;
  padding: 4px 10px;
}

/* SNS活用 */
.visual-sns-use {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
}
.vsu-item {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.vsu-item strong {
  font-size: 13px;
  font-weight: 700;
  color: var(--brand-secondary);
  min-width: 90px;
  flex-shrink: 0;
}
.vsu-item span {
  font-size: 12px;
  color: var(--text-light);
  font-weight: 600;
}

/* 重複統合デモ */
.visual-dedup-demo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 20px 0;
}
.vdd-before, .vdd-after {
  text-align: center;
}
.vdd-num {
  display: block;
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
}
.vdd-before .vdd-num { color: var(--text-light); }
.vdd-after .vdd-num { color: var(--brand-primary); }
.vdd-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-light);
  margin-top: 4px;
}
.vdd-arrow {
  font-size: 13px;
  font-weight: 700;
  color: var(--brand-secondary);
}
.visual-dedup-note {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light);
  line-height: 1.6;
}

/* ソフトなvisual-note */
.visual-note-soft {
  font-size: 12px;
  color: var(--text-light);
  font-weight: 600;
  margin-top: 14px;
  line-height: 1.5;
}

/* ===========================================================
 * v2.2 追加 — ヒーロー刷新 (100vh + クロスフェード + 大型CTA)
 * =========================================================== */

/* --- ヒーロー スライド共通 --- */
.hero-text .eyebrow {
  display: inline-block;
  padding: 4px 12px;
  background: var(--bg-blue-soft);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: var(--brand-primary);
  margin-bottom: 16px;
}
.hero-title {
  font-size: 56px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.hero-line { display: block; }
.hero-line.accent {
  color: var(--brand-primary);
  -webkit-background-clip: initial;
  -webkit-text-fill-color: initial;
  background-clip: initial;
  background: none;
}
.hero-lead {
  font-size: 17px;
  line-height: 1.85;
  color: var(--text);
  font-weight: 500;
}

/* hero-visual card (stripped of float/glow) */
.hero-card {
  animation: none !important;
  box-shadow: var(--shadow-lg);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  max-width: 620px;
  width: 100%;
  overflow: hidden;
}
.hero-card-header {
  background: #f1f5f9;
  border-bottom: 1px solid var(--border);
}
.hero-card-title { color: #334155; }
.hero-log .log-line {
  font-size: 13px;
  line-height: 1.9;
  color: var(--text);
}
.log-name { font-weight: 600; margin-right: 8px; }

/* Slide 2 — site chips */
.hero-site-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}
.hsg-chip {
  padding: 10px 8px;
  text-align: center;
  background: var(--bg-blue-soft);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}
.hsg-chip.hsg-more {
  background: var(--brand-primary);
  color: #fff;
  border-color: var(--brand-primary);
}
.hero-site-note {
  font-size: 13px;
  color: #64748b;
  font-weight: 600;
  line-height: 1.6;
  text-align: center;
}

/* Slide 3 — SNS list */
.hero-sns-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hsn-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: #f8fafc;
  border-radius: 8px;
  border: 1px solid var(--border);
}
.hsn-name { font-size: 13px; font-weight: 700; color: var(--text); }
.hsn-badges { display: flex; gap: 4px; flex-wrap: wrap; justify-content: flex-end; }
.hsn-tag {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
  color: #fff;
}
.hsn-ig   {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #ffffff;
}
.hsn-x    { background: #111827; }
.hsn-fb   { background: #1877f2; }
.hsn-tt   { background: #000000; }
.hsn-line { background: #06c755; }

/* --- ヒーロー オーバーレイ (キャンペーン + CTA + dots) --- */
.hero-overlay {
  flex-shrink: 0;
  padding: 4px 0 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, #ffffff 40%);
  position: relative;
  z-index: 3;
}
.hero-overlay-inner { display: flex; flex-direction: column; gap: 16px; }

.hero-campaign {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  align-items: center;
  padding: 18px 28px;
  background: #fff7ed;
  border: 2px solid #fdba74;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 28px rgba(249, 115, 22, 0.14);
}
.hc-label {
  display: inline-block;
  background: #f97316;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 5px 14px;
  border-radius: 4px;
  margin-bottom: 12px;
}
.hc-title {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.5;
  color: #7c2d12;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.hc-title strong {
  color: #c2410c;
  font-size: 30px;
  font-weight: 900;
}
.hc-sub {
  font-size: 15px;
  font-weight: 600;
  color: #9a3412;
  line-height: 1.6;
  margin: 0;
}
.hc-right {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
}
.hc-right .btn { width: 100%; justify-content: center; }
.hc-note {
  margin: 4px 0 0;
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
  text-align: center;
}

/* --- ドット --- */
.hero-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 5;
}
.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #cbd5e1;
  padding: 0;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
}
.hero-dot.is-active {
  background: var(--brand-primary);
  transform: scale(1.3);
}

/* --- スライダー prev/next ボタン --- */
.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.85);
  color: #1f2937;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: background 0.2s, transform 0.2s;
  user-select: none;
}
.hero-nav:hover {
  background: rgba(255, 255, 255, 1);
  transform: translateY(-50%) scale(1.08);
}
.hero-prev {
  left: 20px;
}
.hero-next {
  right: 20px;
}
@media (max-width: 640px) {
  .hero-nav {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  .hero-prev { left: 8px; }
  .hero-next { right: 8px; }
}

/* --- ghost btn for hero --- */
.btn-ghost {
  background: transparent;
  border: 1.5px solid #cbd5e1;
  color: var(--text);
}
.btn-ghost:hover { background: #f1f5f9; border-color: #94a3b8; }

/* ===========================================================
 * 画像カルーセル (スクリーンショット)
 * =========================================================== */
.img-carousel-section {
  padding: 80px 0 60px;
  background: var(--bg-blue-soft);
}
.img-carousel {
  position: relative;
  max-width: 1100px;
  margin: 40px auto 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-lg);
}
.ic-track {
  display: flex;
  /* transition is applied dynamically by carousel.js for seamless looping */
}
.ic-slide {
  flex: 0 0 100%;
  width: 100%;
  padding: 32px 32px 24px;
  text-align: center;
  box-sizing: border-box;
}
.ic-slide img {
  max-width: 100%;
  height: auto;
  max-height: 540px;
  border-radius: 8px;
  border: 1px solid var(--border);
  display: inline-block;
}
.ic-cap {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.ic-prev, .ic-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-md);
  color: var(--brand-primary);
  font-size: 28px;
  font-weight: 700;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.ic-prev { left: 14px; }
.ic-next { right: 14px; }
.ic-prev:hover, .ic-next:hover { background: var(--brand-primary); color: #fff; }

.ic-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}
.ic-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: #cbd5e1;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.ic-dot.is-active {
  background: var(--brand-primary);
  transform: scale(1.3);
}

/* ===========================================================
 * 中間CTA
 * =========================================================== */
.mid-cta { padding: 56px 0; }
.mid-cta-split {
  background: linear-gradient(135deg, #eff6ff 0%, #f5f3ff 100%);
}
.mid-cta-split .mid-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 28px 32px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.mid-cta-split .mc-text h3 {
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 6px;
  color: var(--text);
}
.mid-cta-split .mc-text p {
  font-size: 14px;
  color: #64748b;
  font-weight: 600;
  margin: 0;
}

.mid-cta-band {
  background: var(--brand-primary);
  color: #fff;
  text-align: center;
  padding: 44px 0;
}
.mid-cta-band .mcb-headline {
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 16px;
  color: #fff;
}
.mid-cta-band .btn {
  background: #fff;
  color: var(--brand-primary);
  border-color: #fff;
}
.mid-cta-band .btn:hover { background: #f1f5f9; color: var(--brand-primary); }

.mid-cta-card { background: #f8fafc; }
.mcc-card {
  padding: 40px 36px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.mcc-card h3 {
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 8px;
}
.mcc-card p {
  font-size: 14px;
  color: #64748b;
  font-weight: 600;
  margin: 0 0 20px;
  line-height: 1.7;
}
.mcc-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===========================================================
 * レスポンシブ (ヒーロー)
 * =========================================================== */
@media (max-width: 1024px) {
  .hero-title { font-size: 42px; }
  .hero-campaign { grid-template-columns: 1fr; gap: 22px; padding: 26px 26px; }
  .hc-title { font-size: 22px; }
  .hc-title strong { font-size: 25px; }
  .hero-slide { padding: 60px 0 30px; }
  .hc-right { flex-direction: row; flex-wrap: wrap; }
  .hc-right .btn { flex: 1 1 160px; }
}
@media (max-width: 768px) {
  .hero { min-height: auto; }
  .hero-slides { min-height: 540px; }
  .hero-inner { grid-template-columns: 1fr; gap: 28px; }
  .hero-visual { display: none; } /* モバイルではビジュアル非表示 (高さ抑制) */
  .hero-title { font-size: 32px; }
  .hero-lead { font-size: 15px; }
  .hero-slide { padding: 40px 0 20px; }
  .hero-campaign { padding: 20px; }
  .hc-title { font-size: 19px; line-height: 1.45; }
  .hc-title strong { font-size: 21px; }
  .hc-sub { font-size: 13px; }
  .hc-label { font-size: 11px; padding: 4px 10px; }
  .mid-cta-split .mid-cta-inner { grid-template-columns: 1fr; text-align: center; padding: 24px; }
  .mid-cta-split .btn { width: 100%; }
  .ic-slide { padding: 20px 16px 32px; }
  .ic-slide img { max-height: 360px; }
  .ic-prev, .ic-next { width: 36px; height: 36px; font-size: 22px; }
}


/* ===========================================================
 * v4.0 — 統合版 (修正L): 優先度競合を解消するためv2.6〜v3.2を全削除し単一ブロックに統合
 *  スコープ: Features / 比較表 / Pricing / Footer / Hero補助文字 / 全体フォント拡大
 *  参考: urizo.jp, c2list.com のメリハリ・コントラスト・スタイリッシュさ
 *  コントラスト原則: 同系色の背景×文字の組み合わせ禁止。必ず白背景×濃文字 or 濃背景×白文字。
 * =========================================================== */

/* -----------------------------------------------------------
 * 0) グローバル ベースフォント拡大 (全ページ共通)
 * ----------------------------------------------------------- */
body { font-size: 18px; }

/* -----------------------------------------------------------
 * 1) Hero 補助文字のサイズ拡大
 * ----------------------------------------------------------- */
.hero-site-note {
  font-size: 15px;
  color: #374151;
  font-weight: 600;
  line-height: 1.75;
}
.hc-note {
  font-size: 15px;
  color: #374151;
  font-weight: 600;
}

/* -----------------------------------------------------------
 * 2) Features セクション全体
 * ----------------------------------------------------------- */
.features-section {
  background: #f8fafc;
  padding: 96px 0;
}
.features-section .section-title { color: #111827; text-align: center; }
.features-section .section-lead  { color: #374151; text-align: center; max-width: 920px; margin: 0 auto 64px; font-size: 18px; line-height: 1.9; }

/* section-lead を全セクションで中央揃え (base rule の text-align:left を上書き) */
.section-lead { text-align: center; }

/* ブロック間マージン (carousel-container が desktop で display:block になる対策) */
.feature-detail-grid { margin-top: 64px; }
@media (min-width: 1025px) {
  .feature-detail-grid > .feature-block { margin-bottom: 120px; }
  .feature-detail-grid > .feature-block:last-child { margin-bottom: 0; }
}
@media (max-width: 1024px) {
  .feature-detail-grid > .feature-block { margin-bottom: 96px; }
  .feature-detail-grid > .feature-block:last-child { margin-bottom: 0; }
}

/* feature-block 2カラムレイアウト */
.feature-block,
.feature-block.reverse {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: stretch;
  margin-bottom: 0;
}

/* テキスト列: 高さ揃え + 縦中央 + 左揃え */
.feature-block-text {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
}
.feature-block-text h2 {
  font-size: 30px;
  font-weight: 800;
  color: #111827;
  line-height: 1.45;
  margin-bottom: 18px;
}
.feature-block-text > p {
  font-size: 18px;
  color: #111827;
  line-height: 1.9;
  margin-bottom: 18px;
}

/* リスト項目 */
.feature-points {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
}
.feature-points li {
  font-size: 16px;
  color: #111827;
  line-height: 1.9;
  padding: 6px 0 6px 22px;
  position: relative;
}
.feature-points li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 16px;
  width: 8px;
  height: 8px;
  background: #3b82f6;
  border-radius: 2px;
}
.feature-points strong { color: #111827; font-weight: 800; }

.feature-appeal {
  font-size: 16px;
  color: #111827;
  background: #eff6ff;
  border-left: 3px solid #3b82f6;
  padding: 16px 18px;
  border-radius: 0 6px 6px 0;
  line-height: 1.9;
  margin-top: 4px;
}

/* ビジュアル列: 白カード、枠線、四方均等シャドウ、高さ揃え、縦中央、左揃え */
.feature-block-visual {
  display: flex;
  align-items: stretch;
}
.visual-card,
.visual-card-rich {
  background: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.08),
              0 1px 3px rgba(15, 23, 42, 0.06);
  padding: 40px 36px;
  min-height: 520px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  text-align: left;
  box-sizing: border-box;
}
.visual-card > *,
.visual-card-rich > * {
  text-align: left;
}
.visual-label {
  font-size: 15px;
  font-weight: 700;
  color: #374151;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

/* Feature タグ: 標準はインライン幅のアウトライン青バッジ。青の濃淡はブロック毎にローテ */
.feature-tag {
  display: inline-block;
  width: auto;
  max-width: max-content;
  align-self: flex-start;
  background: #eff6ff;
  color: #1d4ed8;
  border: 1.5px solid #93c5fd;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 7px 16px;
  border-radius: 4px;
  margin-bottom: 24px;
  line-height: 1.4;
}
/* 青の濃淡を3段階ローテでメリハリ */
.features-section .feature-detail-grid > .feature-block:nth-child(3n+1) .feature-tag {
  background: #eff6ff; border-color: #93c5fd; color: #1d4ed8;
}
.features-section .feature-detail-grid > .feature-block:nth-child(3n+2) .feature-tag {
  background: #f0f9ff; border-color: #7dd3fc; color: #0369a1;
}
.features-section .feature-detail-grid > .feature-block:nth-child(3n+3) .feature-tag {
  background: #eef2ff; border-color: #a5b4fc; color: #3730a3;
}

/* 「他にはない機能」タグ (phase5p: 視認性強化) */
.feature-tag.feature-tag-accent,
.features-section .feature-detail-grid > .feature-block .feature-tag.feature-tag-accent {
  background: #f97316;
  background-image: none;
  color: #ffffff;
  border: 2px solid #ea580c;
  font-size: 17px;
  font-weight: 900;
  padding: 11px 24px;
  letter-spacing: 0.08em;
  box-shadow: 0 6px 18px rgba(249, 115, 22, 0.45);
  margin-bottom: 22px;
  border-radius: 8px;
}
.feature-tag.feature-tag-accent::before {
  content: "▶ ";
  color: #ffffff;
  font-weight: 900;
  margin-right: 4px;
}

/* solution-card.highlighted の pseudo バッジもオレンジで統一 */
.solution-card.highlighted {
  border: 1.5px solid #fed7aa;
  background: linear-gradient(180deg, #fff7ed 0%, #ffffff 60%);
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.12);
}
.solution-card.highlighted::before {
  content: "他にはない機能";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #f97316;
  color: #ffffff;
  padding: 6px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.35);
}

/* visual-flow (050変換デモ) */
.visual-flow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.vf-item {
  background: #ffffff;
  color: #111827;
  border: 1.5px solid #cbd5e1;
  padding: 12px 18px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
}
.vf-item.vf-success {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  color: #1d4ed8;
  border-color: #3b82f6;
}
.vf-arrow {
  font-size: 22px;
  color: #3b82f6;
  font-weight: 800;
}

/* benefits (vb-item) */
.visual-benefits {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 8px;
}
.vb-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.vb-icon {
  font-size: 20px;
  flex: 0 0 28px;
  line-height: 1.4;
}
.vb-text {
  font-size: 16px;
  color: #111827;
  line-height: 1.8;
}
.vb-text strong { color: #111827; font-weight: 800; }

/* use case (vu-item) - 左ボーダー色をブロック毎に変える */
.visual-usecases {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.vu-item {
  background: #ffffff;
  border: 1px solid #d1d5db;
  border-left: 4px solid #3b82f6;
  padding: 14px 18px;
  border-radius: 6px;
}
.vu-item strong {
  display: block;
  color: #111827;
  font-size: 15.5px;
  font-weight: 800;
  margin-bottom: 4px;
}
.vu-item span {
  color: #374151;
  font-size: 13.5px;
  line-height: 1.7;
  word-break: auto-phrase;
  overflow-wrap: break-word;
}
.features-section .feature-detail-grid > .feature-block:nth-child(3n+1) .vu-item { border-left-color: #3b82f6; }
.features-section .feature-detail-grid > .feature-block:nth-child(3n+2) .vu-item { border-left-color: #0ea5e9; }
.features-section .feature-detail-grid > .feature-block:nth-child(3n+3) .vu-item { border-left-color: #6366f1; }
.features-section .feature-detail-grid > .feature-block:nth-child(3n+1) .feature-appeal { border-left-color: #3b82f6; background: #eff6ff; }
.features-section .feature-detail-grid > .feature-block:nth-child(3n+2) .feature-appeal { border-left-color: #0ea5e9; background: #f0f9ff; }
.features-section .feature-detail-grid > .feature-block:nth-child(3n+3) .feature-appeal { border-left-color: #6366f1; background: #eef2ff; }

/* dedup 統合デモ */
.visual-dedup-demo {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 16px;
  margin: 16px 0 20px;
  flex-wrap: wrap;
  background: #ffffff;
  padding: 18px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}
.vdd-before, .vdd-after {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.vdd-num {
  font-size: 44px;
  font-weight: 800;
  line-height: 1;
}
.vdd-before .vdd-num { color: #6b7280; }
.vdd-after  .vdd-num { color: #2563eb; }
.vdd-label {
  font-size: 15px;
  color: #374151;
  font-weight: 700;
}
.vdd-arrow {
  font-size: 14.5px;
  color: #374151;
  font-weight: 700;
  text-align: center;
}
.visual-dedup-note,
.visual-note-soft {
  font-size: 15.5px;
  color: #374151;
  line-height: 1.85;
  margin: 8px 0 0;
}

/* 出力形式カード: 左揃え + シンプルな白背景カード */
.features-section .format-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}
.features-section .format-item {
  background: #ffffff;
  border: 1.5px solid #d1d5db;
  color: #111827;
  font-size: 16px;
  font-weight: 600;
  padding: 16px 20px;
  border-radius: 6px;
  text-align: left;
  justify-content: flex-start;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 56px;
  box-sizing: border-box;
}

/* SNSブランドリスト (唯一の多色アクセント: 公式カラー) */
.sns-brand-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.sb-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
}
.sb-logo {
  flex: 0 0 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #ffffff;
}
.sb-logo svg { width: 20px; height: 20px; }
.sb-body { flex: 1 1 auto; display: flex; flex-direction: column; }
.sb-body strong { font-size: 16px; font-weight: 800; color: #111827; }
.sb-body span   { font-size: 14.5px; color: #374151; font-weight: 500; }
.sb-ig .sb-logo { background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.sb-x  .sb-logo { background: #000000; }
.sb-fb .sb-logo { background: #1877f2; }
.sb-tt .sb-logo { background: #000000; }
.sb-line .sb-logo { background: #06c755; }

/* Features レスポンシブ */
@media (max-width: 1024px) {
  .features-section { padding: 80px 0; }
  .feature-block, .feature-block.reverse { gap: 56px; }
  .feature-block-text h2 { font-size: 26px; }
}
@media (max-width: 768px) {
  .feature-block, .feature-block.reverse {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .feature-block.reverse .feature-block-visual { order: 2; }
  .feature-block.reverse .feature-block-text   { order: 1; }
  .feature-block-text,
  .visual-card, .visual-card-rich {
    min-height: auto;
    padding: 32px 24px;
  }
  .feature-block-text h2 { font-size: 25px; }
  .feature-block-text > p { font-size: 16px; }
}

/* -----------------------------------------------------------
 * 3) 機能比較表
 *   - ヘッダ: 濃紺背景 + 白文字 (高コントラスト)
 *   - ○ は濃い青、× は赤 (元の配色に復元)
 * ----------------------------------------------------------- */
.comparison-table {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}
.comparison-table thead th {
  background: #1e3a8a;
  color: #ffffff;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  padding: 18px 16px;
  border-bottom: none;
}
.comparison-table thead th:first-child {
  background: #0f172a;
  color: #ffffff;
  text-align: left;
  padding-left: 24px;
}
.comparison-table tbody td {
  padding: 18px 16px;
  border-bottom: 1px solid #eef2f7;
  font-size: 16px;
  color: #111827;
  font-weight: 500;
  text-align: center;
}
.comparison-table tbody tr:nth-child(even) {
  background: #fafbfd;
}
.comparison-table tbody tr:hover {
  background: #f1f5f9;
}
.comparison-table tbody td:first-child {
  text-align: left;
  padding-left: 24px;
  font-weight: 700;
  color: #0f172a;
  background: transparent;
  font-size: 16px;
}
.comparison-table tbody tr:last-child td {
  background: #eff6ff;
  border-top: 1px solid #bfdbfe;
  font-weight: 700;
  color: #1e3a8a;
}
.comparison-table tbody tr:last-child td:first-child {
  background: #dbeafe;
  color: #1e3a8a;
}
.comparison-table .o {
  color: #1d4ed8;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
}
.comparison-table .x {
  color: #ef4444;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  opacity: 1;
}
@media (max-width: 768px) {
  .comparison-table thead th,
  .comparison-table tbody td {
    padding: 12px 10px;
    font-size: 14px;
  }
  .comparison-table tbody td:first-child,
  .comparison-table thead th:first-child {
    padding-left: 14px;
  }
}

/* -----------------------------------------------------------
 * 4) Pricing セクション スタイリッシュ化
 *   参考: urizo.jp / c2list.com の洗練された料金表
 *   - 各カードに上部カラーバー
 *   - popular カードはオレンジアクセントで目立たせる
 *   - (税込) を金額下に表示
 * ----------------------------------------------------------- */
.pricing-section { background: #f8fafc; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 40px;
  align-items: stretch;
}
.plan-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 44px 22px 28px;
  text-align: center;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06),
              0 2px 10px rgba(15, 23, 42, 0.04);
  display: flex;
  flex-direction: column;
  /* overflow: hidden は popular-badge / plan-chip が -14px で上にはみ出す為禁止 */
}
/* カード上部のカラーバー。border-radius 追従で四角が飛び出さないよう上部を丸める */
.plan-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: #93c5fd;
  border-radius: 14px 14px 0 0;
}
/* カード順: ライト / スタンダード / プロ / エキスパート / マスター */
.pricing-grid .plan-card:nth-child(1)::before { background: #22c55e; }  /* ライト    : グリーン */
.pricing-grid .plan-card:nth-child(2)::before { background: #3b82f6; }  /* スタンダード: ブルー */
.pricing-grid .plan-card:nth-child(3)::before { background: #f97316; }  /* プロ      : オレンジ (おすすめ) */
.pricing-grid .plan-card:nth-child(4)::before { background: #6366f1; }  /* エキスパート: インディゴ */
.pricing-grid .plan-card:nth-child(5)::before { background: #1e3a8a; }  /* マスター  : ダークネイビー */

/* 上部チップ (小さなラベル) — 各カードの色とマッチ。popular-badge と同系の浮遊スタイル */
.plan-chip {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: 0 3px 10px rgba(15, 23, 42, 0.18);
  white-space: nowrap;
  z-index: 2;
}
.plan-chip-light    { background: #22c55e; box-shadow: 0 3px 10px rgba(34, 197, 94, 0.35); }
.plan-chip-standard { background: #3b82f6; box-shadow: 0 3px 10px rgba(59, 130, 246, 0.35); }
.plan-chip-expert   { background: #6366f1; box-shadow: 0 3px 10px rgba(99, 102, 241, 0.35); }
.plan-chip-master   { background: #1e3a8a; box-shadow: 0 3px 10px rgba(30, 58, 138, 0.45); }
.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
}

.plan-card.popular {
  background: #ffffff;
  border: 2px solid #f97316;
  transform: scale(1.04);
  box-shadow: 0 12px 32px rgba(249, 115, 22, 0.18);
  padding-top: 52px;
}
.plan-card.popular:hover {
  transform: scale(1.04) translateY(-4px);
  box-shadow: 0 16px 40px rgba(249, 115, 22, 0.25);
}
.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #f97316;
  color: #ffffff;
  padding: 8px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.35);
  white-space: nowrap;
  z-index: 2;
}

.plan-name {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 14px;
  color: #111827;
  letter-spacing: -0.01em;
}
.discount-badge {
  display: inline-block;
  background: #f97316;
  color: #ffffff;
  font-size: 11.5px;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 4px;
  margin-left: 4px;
  vertical-align: middle;
  letter-spacing: 0.02em;
}
.plan-price-regular {
  font-size: 14px;
  color: #94a3b8;
  margin-bottom: 4px;
  font-weight: 600;
}
.plan-price-regular del {
  text-decoration: line-through;
  color: #94a3b8;
}
.plan-price {
  font-size: 40px;
  font-weight: 900;
  color: #111827;
  margin-bottom: 2px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.plan-price .yen {
  font-size: 22px;
  margin-right: 2px;
  vertical-align: middle;
  font-weight: 800;
}
.plan-price .per {
  font-size: 15px;
  color: #374151;
  font-weight: 700;
  margin-left: 3px;
}
.plan-price-tax {
  font-size: 13px;
  color: #6b7280;
  font-weight: 600;
  margin: 0 0 14px;
  letter-spacing: 0.04em;
}
.plan-count {
  font-size: 17px;
  color: #111827;
  margin-bottom: 6px;
  font-weight: 800;
}
.plan-unit {
  font-size: 14px;
  color: #1d4ed8;
  font-weight: 700;
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid #e2e8f0;
}
.plan-features {
  text-align: left;
  margin-bottom: 26px;
  flex-grow: 1;
  list-style: none;
  padding: 0;
}
.plan-features li {
  font-size: 15px;
  padding: 7px 0;
  color: #111827;
  font-weight: 600;
  white-space: nowrap;
}
.plan-features li.muted {
  color: #111827;
  opacity: 0.35;
  text-decoration: line-through;
}

@media (max-width: 1200px) {
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
  .plan-card.popular { transform: none; }
  .plan-card.popular:hover { transform: translateY(-4px); }
}
@media (max-width: 768px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .plan-card { padding: 44px 22px 28px; }
  .plan-card.popular { transform: none; padding-top: 52px; }
}

/* 比較表ブロック枠 */
.comparison-block {
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px solid #e2e8f0;
}
.table-wrap {
  margin-top: 28px;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}
.comparison-block .table-wrap .comparison-table {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}

/* -----------------------------------------------------------
 * 5) 画像カルーセル内の認証画面中央配置
 * ----------------------------------------------------------- */
.ic-slide {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 560px;
}
.ic-slide img {
  max-height: 460px;
  object-fit: contain;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .ic-slide { min-height: 420px; }
  .ic-slide img { max-height: 340px; }
}
@media (max-width: 480px) {
  .ic-slide { min-height: 340px; }
  .ic-slide img { max-height: 260px; }
}

/* -----------------------------------------------------------
 * 6) フッター / サポート時間 フォント拡大
 * ----------------------------------------------------------- */
.contact-info h3     { font-size: 24px; font-weight: 800; color: #111827; }
.contact-info p      { font-size: 18px; color: #111827; line-height: 1.8; font-weight: 600; }
.contact-info .small { font-size: 15px; color: #374151; line-height: 1.8; font-weight: 500; }

.footer-desc   { font-size: 16px; color: #374151; line-height: 1.85; }
.footer-col h4 { font-size: 16px; }
.footer-col a  { font-size: 15.5px; color: #111827; }
.footer-bottom { font-size: 14.5px; color: #374151; opacity: 1; }

/* -----------------------------------------------------------
 * 7) その他テキスト要素のグローバル底上げ (全ページ共通)
 * ----------------------------------------------------------- */
main p        { font-size: 18px; line-height: 1.85; }
main li       { font-size: 16px; line-height: 1.85; }
main .small,
main small    { font-size: 15px; }

/* -----------------------------------------------------------
 * 8) 無料枠 登録フォーム (LP修正O - DL導線Phase1)
 * ----------------------------------------------------------- */
.free-register-form {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid #e2e8f0;
}
.free-register-label {
  display: block;
  font-size: 14.5px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.free-register-inputs {
  display: flex;
  gap: 12px;
  align-items: stretch;
  flex-wrap: wrap;
}
.free-register-inputs input[type="email"] {
  flex: 1 1 280px;
  min-width: 0;
  padding: 14px 16px;
  border: 1.5px solid #cbd5e1;
  border-radius: 8px;
  font-size: 16px;
  color: #111827;
  background: #ffffff;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.free-register-inputs input[type="email"]:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}
.free-register-inputs button {
  flex: 0 0 auto;
  white-space: nowrap;
  padding: 14px 28px;
}
.free-register-inputs button:disabled {
  background: #cbd5e1 !important;
  color: #ffffff !important;
  cursor: not-allowed;
  box-shadow: none !important;
  opacity: 1;
}
.free-register-note {
  margin-top: 10px;
  font-size: 14px;
  color: #475569;
  line-height: 1.7;
}
.free-register-result {
  margin-top: 12px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.7;
  min-height: 0;
}
.free-register-result.is-success {
  color: #15803d;
  background: #f0fdf4;
  border-left: 3px solid #16a34a;
  padding: 10px 14px;
  border-radius: 4px;
}
.free-register-result.is-error {
  color: #b91c1c;
  background: #fef2f2;
  border-left: 3px solid #dc2626;
  padding: 10px 14px;
  border-radius: 4px;
}
@media (max-width: 560px) {
  .free-register-inputs { flex-direction: column; }
  .free-register-inputs button { width: 100%; }
}

/* ============================================================
 * v2.17 phase5o — 意匠抜本強化 (PC + mobile)
 * 範囲: 見栄え・構成・タイポ・余白・装飾のみ
 * 触らない: テキスト・リンク先・スライド遷移ロジックの根幹・
 *           既存機能・課金経路・CSP・SDK
 * ============================================================ */

/* ---------- グローバル ---------- */
html { scroll-behavior: smooth; }
::selection { background: rgba(37, 99, 235, 0.18); color: #1e3a8a; }

/* ---------- HERO 装飾 (PC+mobile 共通) ---------- */
.hero {
  background:
    radial-gradient(ellipse 1100px 600px at 88% -10%, rgba(99, 102, 241, 0.18) 0%, rgba(99, 102, 241, 0) 60%),
    radial-gradient(ellipse 900px 500px at -10% 110%, rgba(37, 99, 235, 0.16) 0%, rgba(37, 99, 235, 0) 60%),
    linear-gradient(180deg, #fbfcff 0%, #ffffff 70%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: 12%;
  right: -120px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.14) 0%, rgba(236, 72, 153, 0) 70%);
  pointer-events: none;
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -100px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.10) 0%, rgba(34, 197, 94, 0) 70%);
  pointer-events: none;
  z-index: 0;
}
.hero > * { position: relative; z-index: 1; }

/* ---------- セクション eyebrow ピル強化 ---------- */
.eyebrow {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(37, 99, 235, 0.10);
  color: #2563eb;
  border: 1px solid rgba(37, 99, 235, 0.22);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ---------- セクションタイトル accent (phase5p: 単色 brand-blue) ---------- */
.section-title .accent,
.cta-title .accent,
.page-title .accent,
.hero-line.accent {
  background: none !important;
  -webkit-background-clip: initial !important;
  -webkit-text-fill-color: currentColor !important;
  background-clip: initial !important;
  color: #2563eb !important;
  font-weight: 900;
}

/* ---------- ボタン グラデ + glow ---------- */
.btn-primary {
  background: linear-gradient(135deg, #2563eb 0%, #6366f1 100%);
  border: none;
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.28);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(99, 102, 241, 0.42);
  filter: brightness(1.05);
}
.btn-pop {
  background: linear-gradient(135deg, #f97316 0%, #ec4899 100%);
  border: none;
  box-shadow: 0 6px 18px rgba(236, 72, 153, 0.32);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}
.btn-pop:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(236, 72, 153, 0.45);
  filter: brightness(1.05);
}
.btn-outline {
  border: 1.8px solid #2563eb;
  background: transparent;
  color: #2563eb;
  font-weight: 800;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}
.btn-outline:hover {
  background: #eff6ff;
  color: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.18);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.72);
  border: 1.5px solid #cbd5e1;
  color: #1e293b;
  backdrop-filter: blur(4px);
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}
.btn-ghost:hover {
  background: #fff;
  border-color: #94a3b8;
  transform: translateY(-2px);
}

/* ---------- カード上端 グラデ ストライプ ---------- */
.problem-card,
.solution-card,
.screenshot-card,
.faq-item {
  position: relative;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.problem-card::after,
.solution-card::after,
.screenshot-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #2563eb 0%, #6366f1 50%, #ec4899 100%);
  opacity: 0;
  transition: opacity 0.22s ease;
}
.problem-card:hover::after,
.solution-card:hover::after,
.screenshot-card:hover::after { opacity: 1; }
.problem-card:hover,
.solution-card:hover,
.screenshot-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 38px rgba(37, 99, 235, 0.14);
}

/* ---------- Pricing — phase5p: popular ring 撤廃。orange 2px solid に戻す ---------- */
.plan-card {
  position: relative;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(37, 99, 235, 0.14);
}
.plan-card.popular::after { content: none !important; }

/* ---------- 比較表 (phase5p: phase5o 改変を全廃 / 元の table スタイルへ) ---------- */
/* phase5o の 円形 chip / thead gradient / row hover は撤去。
   phase5o 前と同じく ○/× は inline 文字、thead は元のデフォルト背景色のまま。 */

/* ---------- FAQ アコーディオン強化 ---------- */
.faq-item {
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}
.faq-item.open {
  border-color: rgba(37, 99, 235, 0.32);
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  box-shadow: 0 6px 22px rgba(37, 99, 235, 0.10);
}
.faq-q {
  font-weight: 800;
  color: #0f172a;
  letter-spacing: 0.005em;
}
.faq-q::after {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.10);
  color: #2563eb;
  font-weight: 700;
  transition: transform 0.22s ease, background 0.22s ease;
}
.faq-item.open .faq-q::after {
  background: #2563eb;
  color: #ffffff;
}

/* ---------- mid-cta-band 強化 (gradient bar) ---------- */
.mid-cta-band {
  background: linear-gradient(135deg, #2563eb 0%, #6366f1 60%, #ec4899 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}
.mid-cta-band::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0) 65%);
  pointer-events: none;
}
.mid-cta-band .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  z-index: 1;
}
.mid-cta-band .mcb-headline {
  color: #ffffff;
  font-weight: 900;
  font-size: 24px;
  letter-spacing: 0.005em;
  margin: 0;
  flex: 1 1 auto;
}
.mid-cta-band .btn {
  background: #ffffff;
  color: #2563eb;
  border: none;
  font-weight: 800;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.22);
}
.mid-cta-band .btn:hover {
  background: #f1f5f9;
  color: #1d4ed8;
  transform: translateY(-2px);
}

/* ---------- 最終 CTA 強化 ---------- */
.cta {
  background:
    radial-gradient(ellipse 900px 500px at 110% 0%, rgba(236, 72, 153, 0.18) 0%, rgba(236, 72, 153, 0) 60%),
    radial-gradient(ellipse 900px 500px at -10% 100%, rgba(99, 102, 241, 0.18) 0%, rgba(99, 102, 241, 0) 60%),
    linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}
.cta .cta-title { color: #ffffff; }
.cta .cta-lead  { color: rgba(255, 255, 255, 0.84); }

/* ---------- フッター 強化 ---------- */
.site-footer {
  background: linear-gradient(180deg, #0f172a 0%, #020617 100%);
  color: #cbd5e1;
  position: relative;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #2563eb 0%, #6366f1 50%, #ec4899 100%);
}
.site-footer .logo-text { color: #ffffff; }
.site-footer .footer-desc { color: #94a3b8; }
.site-footer .footer-col h4 {
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 12px;
  position: relative;
  padding-bottom: 8px;
  margin-bottom: 14px;
}
.site-footer .footer-col h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, #2563eb, #6366f1);
}
.site-footer .footer-col a {
  color: #cbd5e1;
  transition: color 0.18s ease, padding-left 0.18s ease;
}
.site-footer .footer-col a:hover {
  color: #ffffff;
  padding-left: 4px;
}
.site-footer .footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(2, 6, 23, 0.5);
  color: #94a3b8;
}
.site-footer .footer-bottom p { color: #94a3b8; }

/* ---------- スクロールキュー (hero 下部 / モバイルでは非表示) ---------- */
.hero-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: #64748b;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  pointer-events: none;
  z-index: 4;
  opacity: 0.85;
}
.hero-scroll-cue .cue-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #2563eb;
  animation: cueBounce 1.6s ease-in-out infinite;
}
@keyframes cueBounce {
  0%, 100% { transform: translateY(0); opacity: 0.4; }
  50%      { transform: translateY(8px); opacity: 1; }
}
@media (max-width: 768px) {
  .hero-scroll-cue { display: none; }
}

/* ---------- スクロールイン アニメ ---------- */
.fx-fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.fx-fade-in-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .fx-fade-in-up { opacity: 1; transform: none; transition: none; }
}

/* ---------- スクリーンショット カードの hover 強化 ---------- */
.screenshot-card {
  border-radius: 14px;
  border: 1px solid #e2e8f0;
}
.screenshot-card img {
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.screenshot-card:hover img {
  transform: scale(1.04);
}

/* ---------- launch-badge 強化 ---------- */
.launch-badge {
  background: linear-gradient(135deg, #f97316 0%, #ef4444 100%);
  color: #ffffff;
  font-weight: 900;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 22px rgba(249, 115, 22, 0.32);
}

/* ---------- セクション間 divider (PC のみ装飾) ---------- */
@media (min-width: 769px) {
  .problem + .solution::before,
  .solution + .features-section::before,
  .features-section + .pricing::before,
  .pricing + .faq-section::before {
    content: "";
    display: block;
    width: 64px;
    height: 2px;
    margin: 0 auto;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.5), transparent);
    transform: translateY(-32px);
  }
}

/* ---------- mobile-side: 強化要素のモバイル調整 ---------- */
@media (max-width: 768px) {
  .mid-cta-band .container {
    flex-direction: column !important;
    text-align: center;
  }
  .mid-cta-band .mcb-headline { font-size: clamp(15px, 4vw, 18px); }
  .mid-cta-band::before { width: 240px; height: 240px; top: -30%; right: -20%; }
  .hero::before { width: 200px; height: 200px; top: 6%; right: -80px; }
  .hero::after { width: 240px; height: 240px; bottom: -60px; left: -80px; }
  .site-footer .footer-col h4::after { width: 20px; }
  .comparison-table .o,
  .comparison-table .x { width: 22px; height: 22px; font-size: 12px; }
}

/* ============================================================
 * v2.17 phase5p PC hotfix (2026-05-06) — R さん PC 実機指摘 4 点
 * 範囲: PC 側 (≥769px) のみ。モバイル CSS には一切干渉しない。
 *  1. ▶ マーカーを CSS 三角で描画 (Unicode U+25B6 の OS 依存描画回避)
 *  2. 「おすすめ」プランの上線二重を解消 (border 1px gray + ::before 5px orange に統一)
 *  3. .pricing-note を比較表幅に合わせて max-width: 1080px + 折り返し対応
 *  4. 横流れ多色グラデの撤去漏れを全廃 (mid-cta-band / btn / launch-badge / card hover stripe / footer accent)
 * ============================================================ */
@media (min-width: 769px) {

  /* 1. ▶ マーカーを CSS 三角に置換 (色は既存指定を継承) */
  .pricing-disclaimer p::before,
  .pricing-note p::before,
  .feature-points li::before,
  .feature-tag.feature-tag-accent::before,
  .free-card .free-notes li::before {
    content: "" !important;
    display: block !important;
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 0 5px 8px;
    background: transparent !important;
    font-size: 0 !important;
  }
  .pricing-disclaimer p,
  .pricing-note p {
    padding-left: 1.5em;
  }
  .pricing-disclaimer p::before,
  .pricing-note p::before {
    border-color: transparent transparent transparent #f97316;
    left: 2px;
    top: 0.55em;
  }
  .feature-points li {
    padding-left: 1.5em;
  }
  .feature-points li::before {
    border-color: transparent transparent transparent #2563eb;
    left: 2px;
    top: 0.6em;
  }
  .free-card .free-notes li {
    padding-left: 1.5em;
  }
  .free-card .free-notes li::before {
    border-color: transparent transparent transparent #f97316;
    left: 2px;
    top: 0.55em;
  }
  /* feature-tag-accent の ▶ は バッジ内左寄せのアイコンなので display: inline-block + 上下中央 */
  .feature-tag.feature-tag-accent {
    position: relative;
    padding-left: 36px !important;
  }
  .feature-tag.feature-tag-accent::before {
    border-width: 6px 0 6px 9px;
    border-color: transparent transparent transparent #ffffff;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
  }

  /* 2. 「おすすめ」プランの上線を「人気No.1」と同じ単線パターンに統一
        ::before 5px orange バー 1 本のみ (orange border 撤去) */
  .plan-card.popular {
    border: 1px solid #e2e8f0 !important;
    padding-top: 36px !important;
  }
  .plan-card.popular:hover {
    border-color: #fdba74 !important;
  }

  /* 3. pricing-note を比較表幅に合わせる + 長文折り返し */
  .pricing-note {
    max-width: 1080px !important;
    margin: 32px auto 0 !important;
    padding: 0 24px;
    box-sizing: border-box;
    word-break: break-word;
    overflow-wrap: anywhere;
  }
  .pricing-note p {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* 4. 横流れ多色グラデーション 全廃 (PC) */
  .mid-cta-band {
    background: #2563eb !important;
  }
  .btn-primary {
    background: #2563eb !important;
  }
  .btn-primary:hover {
    background: #1d4ed8 !important;
    filter: none !important;
  }
  .btn-pop {
    background: #f97316 !important;
  }
  .btn-pop:hover {
    background: #ea580c !important;
    filter: none !important;
  }
  .launch-badge {
    background: #f97316 !important;
  }
  /* カード hover の上端ストライプは色 1 つのブランドブルー線に */
  .problem-card::after,
  .solution-card::after,
  .screenshot-card::after {
    background: #2563eb !important;
  }
  /* フッター上端の accent 線 */
  .site-footer::before {
    background: #2563eb !important;
  }
  /* フッター コラム見出しのアンダーライン */
  .site-footer .footer-col h4::after {
    background: #2563eb !important;
  }
}

/* ============================================================
 * v2.17 phase5p PC hotfix-2 (2026-05-06) — R さん指摘 3 系統
 * 範囲: PC 側 (≥769px) のみ。モバイル CSS には一切干渉しない。
 *  A. mid-cta-band 白ボタン埋没解消
 *     (phase5p hotfix の .btn-primary !important が
 *      .mid-cta-band .btn の白指定を上書きしてしまった逆転を是正)
 *  B. 「他にはない機能」バッジとカード本体の余白確保
 *  C. 対応 SNS カード一覧の余白確保 (.sns-brand-list / .sb-item)
 * ============================================================ */
@media (min-width: 769px) {
  /* A. mid-cta-band 「無料で試してみる」白ボタン視認性 */
  .mid-cta-band .btn-primary {
    background: #ffffff !important;
    color: #2563eb !important;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.45) !important;
    border: 2px solid rgba(15, 23, 42, 0.06) !important;
    font-weight: 900 !important;
  }
  .mid-cta-band .btn-primary:hover {
    background: #f1f5f9 !important;
    color: #1d4ed8 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.55) !important;
  }

  /* B. 「他にはない機能」バッジとカード本体の余白
     features セクション 1 番目ブロックの h3 との間 + solution highlighted card 内 icon との間 */
  .feature-tag.feature-tag-accent,
  .features-section .feature-detail-grid > .feature-block .feature-tag.feature-tag-accent {
    margin-bottom: 32px !important;
  }
  .solution-card.highlighted {
    padding-top: 64px !important;
  }

  /* C. 対応 SNS カード一覧の余白 (.sns-brand-list 配下のみ・他無干渉) */
  .sns-brand-list {
    gap: 14px !important;
  }
  .sb-item {
    padding: 16px 20px !important;
  }

  /* D. 最終 CTA (dark navy) ボタンも同じ根本原因で .btn-pop !important が
        .cta .btn-pop { background: #fff } を上書きし、orange BG に blue text
        の壊れた組合せになっていたので phase5o 設計どおり white-on-navy に修復 */
  .cta .btn-pop {
    background: #ffffff !important;
    color: #2563eb !important;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28) !important;
  }
  .cta .btn-pop:hover {
    background: #f1f5f9 !important;
    color: #1d4ed8 !important;
  }
}

/* ============================================================
 * v2.17 phase5p PC hotfix-3 (2026-05-07) — R さん指摘 4 系統
 * 範囲: PC 側 (≥769px / HERO 系のみ ≥1025px) のみ。モバイル CSS には一切干渉しない。
 *  1. HERO カルーセル底端と LAUNCH CAMPAIGN バナー上端の接近・重なり解消
 *     (.hero-overlay padding-top 4px → 36px / +32px / @media min-width:1025px)
 *  2. SOLUTION 「他にはない機能」バッジ 半分カット解消
 *     (.solution-card.highlighted のみ overflow: visible でクリップ解除
 *      hover stripe ::after は card 内に閉じているので影響なし)
 *  3. ▶マーカー (CSS 三角) のずれ是正
 *     (4 セレクタ一括: left 2px → 6px で本文との空白詰め
 *      top 固定値 → 50% + translateY(-50%) で行中央揃え
 *      三角サイズ 5px 0 5px 8px と色は不変)
 *  4. 対応 SNS Instagram カラー方向反転
 *     (.sb-ig .sb-logo 角度のみ 135deg → 45deg / 5色 stops 維持
 *      .hsn-ig (HERO) と方向統一・spec 準拠)
 * ============================================================ */
@media (min-width: 1025px) {
  /* 1. HERO 底端と CAMPAIGN 上端の呼吸確保 */
  .hero-overlay {
    padding-top: 36px !important;
  }
}

@media (min-width: 769px) {
  /* 2. SOLUTION ハイライトカードのみ overflow 解除 */
  .solution-card.highlighted {
    overflow: visible !important;
  }

  /* 3. ▶マーカー (CSS 三角) 位置是正 — 横は本文に寄せ、縦は行中央 */
  .pricing-disclaimer p::before,
  .pricing-note p::before,
  .feature-points li::before,
  .free-card .free-notes li::before {
    left: 6px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
  }

  /* 4. 対応 SNS Instagram の gradient 方向を 45deg に反転 (spec 準拠) */
  .sb-ig .sb-logo {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
  }
}

/* ============================================================
 * v2.17 phase5p PC hotfix-4 (2026-05-07) — R さん指摘 2 系統 (hotfix-3 微調整)
 * 範囲: PC 側 (≥769px / HERO 系のみ ≥1025px) のみ。モバイル CSS には一切干渉しない。
 *  1. HERO カルーセル底端と LAUNCH CAMPAIGN バナー上端の分離をさらに拡大
 *     (.hero-overlay padding-top 36px → 80px / +44px / @media min-width:1025px)
 *     phase5p の上空き圧縮意図より CAMPAIGN バナーとの明確な分離を優先。
 *     新しい間隔: SNS ウィンドウ底端 → CAMPAIGN 上端 = 16 + 80 = 96px
 *                ドット底端 → CAMPAIGN 上端 = 18 + 80 = 98px
 *  2. ▶マーカー (CSS 三角) の縦位置を「1行目の文字行」に固定
 *     hotfix-3 の top:50% + translateY(-50%) は複数行リストでテキスト全体の
 *     上下中央に来てしまうため解除し、各文脈の font-size / line-height に
 *     合わせて 1 行目グリフ中央に top を em 単位で固定。
 *     横位置 (left: 6px) は hotfix-3 のまま維持。
 *
 *     文脈別 1 行目グリフ中央 → triangle (border 5px+5px=10px tall) 中央配置:
 *       .pricing-disclaimer p (font 14px / line-height 1.85)  → top 0.55em
 *       .pricing-note p       (font 18px global / lh 1.85)    → top 0.65em
 *       .feature-points li    (font 16px / lh 1.9 / pad-top 6) → top 1em
 *       .free-card .free-notes li (font 13px / lh 1.85)       → top 0.55em
 * ============================================================ */
@media (min-width: 1025px) {
  /* 1. HERO 底端と CAMPAIGN 上端を明確に分離 (hotfix-3 の 36px から拡大) */
  .hero-overlay {
    padding-top: 80px !important;
  }
}

@media (min-width: 769px) {
  /* 2. ▶マーカー縦位置: hotfix-3 の中央揃えを解除し各文脈の 1 行目グリフ中央に固定 */
  .pricing-disclaimer p::before,
  .pricing-note p::before,
  .feature-points li::before,
  .free-card .free-notes li::before {
    top: auto !important;
    transform: none !important;
  }
  .pricing-disclaimer p::before {
    top: 0.55em !important;
  }
  .pricing-note p::before {
    top: 0.65em !important;
  }
  .feature-points li::before {
    top: 1em !important;
  }
  .free-card .free-notes li::before {
    top: 0.55em !important;
  }
}

/* ============================================================
 * v2.17 phase5p PC hotfix-5 (2026-05-07) — hotfix-3/4 不発の根本原因 2 つ解消
 * 範囲: PC 側 (≥769px / HERO 系のみ ≥1025px) のみ。モバイル CSS には一切干渉しない。
 *
 * 不発原因:
 *   A. HERO: responsive.css L536 で `.hero-overlay { padding: 4px 0 18px !important }`
 *      (shorthand, @media min-width:1025px) が同 specificity で読込順後勝ち。
 *      style.css の `.hero-overlay { padding-top: ... !important }` は読込順で負けていた。
 *      → specificity を 1 段上げる: `.hero .hero-overlay` (0,2,0) で確実に勝つ。
 *
 *   B. ▶マーカー: 系統3 の CSS 三角化で `font-size: 0 !important` を ::before に
 *      指定済 (style.css L3857) のため、em 単位の top 指定 (1em / 0.55em / 0.65em) は
 *      すべて 0px に解決されてしまう。実機の computed top はすべて 0px だった。
 *      → em ではなく px 直値で指定。実測値ベースで 1 行目グリフ中央揃え:
 *        .pricing-disclaimer p (16px / lh 29.6 / pad-top 0)  → top 10px
 *        .pricing-note p       (18px / lh 33.3 / pad-top 0)  → top 12px
 *        .feature-points li    (16px / lh 30.4 / pad-top 6)  → top 16px
 *        .free-card .free-notes li (16px / lh 29.6 / pad-top 0) → top 10px
 *      横位置 (left: 6px) と translateY 解除は hotfix-3/4 のまま維持。
 * ============================================================ */
@media (min-width: 1025px) {
  /* A. HERO 底端と CAMPAIGN 上端を明確に分離 (specificity 増強で responsive.css に勝つ) */
  .hero .hero-overlay {
    padding-top: 80px !important;
  }
}

@media (min-width: 769px) {
  /* B. ▶マーカー縦位置: em (0px に解決される) を px 直値に置換 */
  .pricing-disclaimer p::before {
    top: 10px !important;
  }
  .pricing-note p::before {
    top: 12px !important;
  }
  .feature-points li::before {
    top: 16px !important;
  }
  .free-card .free-notes li::before {
    top: 10px !important;
  }
}

/* ============================================================
 * v2.17 phase5p PC hotfix-6 (2026-05-07) — R さん指摘 3 系統
 * 範囲: PC 側 (≥769px / HERO 系のみ ≥1025px) のみ。モバイル CSS には一切干渉しない。
 *
 *  1. ドット位置 + スライド画像高さ統一 (R さん「コンテナで固定サイズ」案採用)
 *     現状 .hero-slides は 360px 高 (responsive.css L539 PC override)、
 *     しかし各スライドの hero-card 実測:
 *        Slide 0 (050本番号変換) : 432px
 *        Slide 1 (39サイト一括収集): 596px (最大・問題児)
 *        Slide 2 (SNS自動抽出)    : 401px
 *     Slide 1 の visual が slides container を上下に overflow し、
 *     上は hero { overflow: hidden } でヘッダーに被って clip、
 *     下は overlay の CAMPAIGN にかぶる。
 *     dots は .hero-slides { bottom: 18px } 配置だが visual がその下まで
 *     伸びるため相対的にカルーセル中央に見える。
 *
 *     修正: .hero .hero-slides の min-height/max-height を 660px に固定
 *           (specificity 0,2,0 で responsive.css の 0,1,0 に勝つ)。
 *           Slide 1 の 596px が centered で収まり (上下 32px の余白)、
 *           全 3 スライドが同 container サイズで揃う。dots は slides 底端
 *           18px 上 = 全 visual 底端より下に配置され「下部に表示」が成立。
 *
 *  2. CAMPAIGN との分離をさらに拡大 (hotfix-5 80px → 100px)
 *     新間隔: visual 底端 (最大の Slide 1 で y=805) → CAMPAIGN 上端 (y=937)
 *             = 132px (hotfix-5 比 +52px)。デフォルト 4px から実質 +96px の分離。
 *
 *  3. SNS アイコン色を公式ブランドガイド準拠に統一 (PC + tablet, .hsn-* / .sb-*)
 *     ・Instagram (.hsn-ig / .sb-ig .sb-logo): 公式の bottom-left 起点
 *       radial-gradient で再現 (linear-gradient(45deg) は近似だが公式ガイドの
 *       gradient origin と方向に合致しない)
 *       radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%,
 *                       #fd5949 45%, #d6249f 60%, #285AEB 90%)
 *     ・X (.hsn-x): #111827 (slate-900) → 公式 #000000 (純黒)
 *     ・Facebook (.hsn-fb / .sb-fb .sb-logo): 公式 #1877F2 (Meta Brand Blue)
 *     ・TikTok (.hsn-tt / .sb-tt .sb-logo): 公式 #000000
 *     ・LINE (.hsn-line / .sb-line .sb-logo): 公式 #06C755 (LINE Brand Green)
 *     ・X (.sb-x .sb-logo): 公式 #000000
 *     全件 !important で base CSS を上書き、PC + tablet スコープ。
 * ============================================================ */
@media (min-width: 1025px) {
  /* 1. スライド container を最大 visual に合わせて固定 (660px) */
  .hero .hero-slides {
    min-height: 660px !important;
    max-height: 660px !important;
  }
  /* 2. HERO 底端と CAMPAIGN 上端をさらに分離 (hotfix-5 の 80px から拡大) */
  .hero .hero-overlay {
    padding-top: 100px !important;
  }
}

@media (min-width: 769px) {
  /* 3. SNS アイコン色 公式ブランドガイド準拠 */
  .hsn-ig,
  .sb-ig .sb-logo {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%) !important;
  }
  .hsn-x {
    background: #000000 !important;
  }
  .hsn-fb,
  .sb-fb .sb-logo {
    background: #1877F2 !important;
  }
  .hsn-tt,
  .sb-tt .sb-logo {
    background: #000000 !important;
  }
  .hsn-line,
  .sb-line .sb-logo {
    background: #06C755 !important;
  }
  .sb-x .sb-logo {
    background: #000000 !important;
  }
}
