:root {
    --color-main: #3ac9a7;
    --color-main-dark: #2c9b80;
    --color-bg: #f5fbf9;
    --color-text: #222222;
    --color-muted: #6b7280;
  }
  
  /* ========= Base ========= */
  
  * {
    box-sizing: border-box;
  }
  
  body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
      "Noto Sans JP", sans-serif;
    color: var(--color-text);
    background: #ffffff;
    line-height: 1.6;
  }
  
  h1,
  h2,
  h3,
  p {
    margin: 0;
  }
  
  a {
    color: inherit;
    text-decoration: none;
  }

/* スクロールをスムーズに */
html {
  scroll-behavior: smooth;
}

/* =========================
   HEADER
   ========================= */
   .site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
  }
  
  /* ← 上下の余白をなくして高さ固定気味にする */
  .header-inner {
    max-width: 1120px;
    margin: 0 auto;
  padding: 0 16px 0 10px;
  height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }
  
  /* ← ロゴを大きめに */
  .header-logo img {
  height: 60px;
    width: auto;
    display: block;
  }
  
  
/* PCナビ */
.header-nav--desktop {
    display: flex;
    align-items: center;
  gap: 20px;
    font-size: 13px;
  }
  
/* 通常リンクの色を少し濃いめに（★ CTA を除外する） */
.header-nav a:not(.header-nav-cta) {
    text-decoration: none;
    color: #4b5563;
    padding: 6px 0;
    transition: color 0.15s ease;
  }
  
  .header-nav a:not(.header-nav-cta):hover {
    color: var(--color-main-dark);
  }
  
  
/* ヘッダ右側のボタン共通（ヒーローの.btn系とトーン合わせ） */
.header-nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;          /* ヒーローより少しだけ小さく */
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid transparent;
    transition:
      background-color 0.15s ease,
      color 0.15s ease,
      border-color 0.15s ease,
      box-shadow 0.15s ease,
      transform 0.05s ease;
    white-space: nowrap;
  }
  
  /* 資料DL（ヒーローの .btn-primary に寄せる） */
  .header-nav-cta--primary {
    background: var(--color-main);
    color: #ffffff;
    border-color: var(--color-main);
  box-shadow: 0 6px 14px rgba(58, 201, 167, 0.28);
  }
  
  .header-nav-cta--primary:hover {
    background: var(--color-main-dark);
    border-color: var(--color-main-dark);
    box-shadow: 0 8px 18px rgba(46, 155, 128, 0.32);
    transform: translateY(-1px);
  }
  
  /* 相談（ヒーローの .btn-ghost に寄せる） */
  .header-nav-cta--secondary {
    background: #ffffff;
    color: var(--color-main-dark);
  border-color: #d1d5db;
  }
  
  .header-nav-cta--secondary:hover {
    background: #f3f4f6;
    border-color: #cbd5e1;
    transform: translateY(-1px);
  }
  
  /* ハンバーガーボタン */
  .header-menu-btn {
    display: none; /* PCでは非表示 */
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
  }
  
  .header-menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: #4b5563;
    margin: 4px auto;
    transition: transform 0.15s ease, opacity 0.15s ease;
  }
  
  /* 開いたときのアニメ */
  .header-menu-btn.is-open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .header-menu-btn.is-open span:nth-child(2) {
    opacity: 0;
  }
  .header-menu-btn.is-open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  
  /* スマホメニュー */
  .header-nav--mobile {
    display: none;
    flex-direction: column;
    padding: 8px 24px 12px;
    border-top: 1px solid #e5e7eb;
    background: #ffffff;
    font-size: 14px;
  }
  
  .header-nav--mobile a {
    padding: 8px 0;
  }
  
  /* 開いた状態 */
  .header-nav--mobile.is-open {
    display: flex;
  }
  
  /* =========================
     HERO
     ========================= */
  .hero {
    background: var(--color-bg);
    padding: 56px 16px 72px;
  }
  
  .hero-inner {
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
  }
  
  .hero-copy {
    flex: 1 1 320px;
    min-width: 280px;
  }
  
  .hero-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-main-dark);
    background: #e0f5ef;
    padding: 4px 10px;
    border-radius: 999px;
    margin: 0 0 12px;
  }
  
  .hero-title {
    font-size: clamp(26px, 3vw, 32px);
    line-height: 1.4;
    font-weight: 700;
    margin: 0 0 12px;
  }
  
  .hero-sub {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-muted);
    margin: 0 0 24px;
  }
  
  .hero-note {
    font-size: 12px;
    color: var(--color-muted);
    margin-bottom: 4px;
    text-align: center;
  }
  
  .hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 10px;
  }
  
  /* ボタンを横並び時に均等幅にする */
  .hero-ctas .btn {
    flex: 1;
  }
  
  .hero-visual {
    flex: 1 1 320px;
    min-width: 280px;
    display: flex;
    justify-content: center;
  }
  
  .hero-visual img {
    max-width: 360px;
    width: 100%;
    height: auto;
    display: block;
  }
  
  /* =========================
     BUTTONS
     ========================= */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid transparent;
    transition:
      background-color 0.15s ease,
      color 0.15s ease,
      transform 0.05s ease,
      box-shadow 0.15s ease;
    white-space: nowrap;
  }
  
  .btn-primary {
    background: var(--color-main);
    color: #ffffff;
    border-color: var(--color-main);
    box-shadow: 0 8px 18px rgba(58, 201, 167, 0.35);
  }
  
  .btn-primary:hover {
    background: var(--color-main-dark);
    border-color: var(--color-main-dark);
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(46, 155, 128, 0.4);
  }
  
  .btn-ghost {
    background: #ffffff;
    color: var(--color-main-dark);
    border-color: #d1d5db;
  }
  
  .btn-ghost:hover {
    background: #f3f4f6;
    border-color: #cbd5e1;
    transform: translateY(-1px);
  }
  
  .btn-full {
    width: 100%;
    text-align: center;
  }

/* 中間CTA */
  .section-mid-cta {
    padding: 48px 16px;
    text-align: center;
  }
  
  .mid-cta-text {
    font-size: 14px;
    color: var(--color-muted);
    margin-bottom: 12px;
  }
  
  .btn-mid {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
  }
  
  /* =========================
     COMMON SECTIONS
     ========================= */
  .section {
    padding: 80px 24px;
  }
  
  .section-inner {
    max-width: 960px;
    margin: 0 auto;
  }
  
  .section h2 {
    font-size: 24px;
    margin-bottom: 24px;
  }
  
  .section p {
    font-size: 15px;
    color: var(--color-muted);
  }
  
  /* =========================
     PROBLEMS SECTION
     ========================= */
  .section-problems {
    background: #ffffff;
  }
  
  .section-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 28px;
    text-align: center;
  }
  
  .section-lead {
    font-size: 14px;
    color: var(--color-muted);
    text-align: center;
    margin-bottom: 26px;
  }
  
  /* カード一覧（PCはグリッド） */
  .problems-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 24px;
  }
  
/* 各課題カード */
  .problem-item {
    background: #f9fafb;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    padding: 18px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
  }
  
  .problem-icon {
    font-size: 32px;
    color: var(--color-main-dark);
    flex-shrink: 0;
  }
  
  .problem-text p {
    font-size: 14px;
    color: #374151;
    line-height: 1.6;
  }
  
  /* フッターメッセージ */
  .section-foot {
    margin-top: 8px;
    font-size: 14px;
    text-align: center;
    color: var(--color-text);
  }
  
  .accent {
    color: var(--color-main-dark);
    font-weight: 700;
  }

  /* =========================
   STRENGTHS SECTION（3つの強み）
   ========================= */
.section-strengths {
    background: #f5fbf9;
    padding: 80px 24px;
  }
  
  .strengths-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 32px;
  }
  
  .strength-card {
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    padding: 20px 22px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  
  .strength-icon {
    font-size: 42px;
    color: var(--color-main-dark);
  }
  
  .strength-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #222;
    margin: 0;
  }
  
  .strength-card p {
    font-size: 14px;
    color: var(--color-muted);
    margin: 0;
    line-height: 1.7;
  }
  
  /* =========================
   FLOW SECTION（導入の流れ）
   ========================= */
.section-flow {
    background: #f5fbf9;
  }
  
  .section-flow .section-lead {
    font-size: 14px;
    color: var(--color-muted);
    text-align: center;
    margin-bottom: 32px;
  }
  
  .flow-timeline {
    margin-top: 12px;
  }
  
  /* 各ステップ行 */
  .flow-step {
    display: flex;
    gap: 16px;
    padding: 16px 0;
  }
  
  /* 左側の番号バッジ＋縦ライン */
  .flow-step-icon {
    position: relative;
    width: 32px;
    display: flex;
    justify-content: center;
  }
  
  /* 番号の丸 */
  .flow-step-number {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: var(--color-main);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(58, 201, 167, 0.35);
  }
  
  /* 縦ライン（最後のステップでは消す） */
  .flow-step-icon::after {
    content: "";
    position: absolute;
    top: 28px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: calc(100% - 28px);
    background: #e5e7eb;
  }
  
  .flow-step:last-child .flow-step-icon::after {
    display: none;
  }
  
  /* 右側本文 */
  .flow-step-body {
    flex: 1;
  }
  
  .flow-step-body h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #111827;
  }
  
  .flow-step-body p {
    font-size: 14px;
    color: var(--color-muted);
    line-height: 1.7;
  }

  /* =========================
   PRICING SECTION
   ========================= */
.section-pricing {
    background: #ffffff;
  }
  
  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 32px;
  }
  
  .pricing-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    padding: 24px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
  }
  
  /* おすすめプランだけ少し目立たせる */
  .pricing-card--recommended {
    border-color: var(--color-main);
    box-shadow: 0 10px 30px rgba(58, 201, 167, 0.18);
  }
  
  .pricing-badge {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 11px;
    font-weight: 700;
    color: #065f46;
    background: #d1fae5;
    padding: 2px 10px;
    border-radius: 999px;
  }
  
  .pricing-header {
    text-align: left;
  }
  
  .pricing-plan-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-muted);
    margin-bottom: 4px;
  }
  
  .pricing-price-main {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-text);
  }
  
  .pricing-price-sub {
    font-size: 13px;
    color: var(--color-muted);
    margin-left: 4px;
  }
  
  .pricing-tagline {
    font-size: 13px;
    color: var(--color-muted);
    margin-top: 4px;
  }
  
  .pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 13px;
    color: var(--color-muted);
  }
  
  .pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 6px;
  }
  
  .pricing-features .dot {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--color-main);
    margin-top: 7px;
    flex-shrink: 0;
  }
  
  .pricing-features strong {
    color: var(--color-text);
  }
  
  .pricing-cta {
    margin-top: 8px;
  }
  
  /* 初期費用・オプションの注意書き */
  .pricing-hints {
    margin-top: 5px;
    padding: 12px 14px;
    border-radius: 8px;
  font-size: 12px;
    color: var(--color-muted);
    line-height: 1.5;
  }
  
  .pricing-hints p {
    margin: 4px 0;
    font-size: 12px; 
  }
  
/* 初期費用・オプションのボックス */
.pricing-note {
    margin-top: 28px;
    padding: 16px 18px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    background: #fafafa;
    font-size: 13px;
    color: var(--color-muted);
  }
  
  /* 「初期セットアップ（必須）」ラベル */
  .pricing-note-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-main-dark);
    margin-bottom: 16px;
    border-left: 4px solid var(--color-main);
    padding-left: 8px;
  }
  
  /* メイン行（価格入り） */
  .pricing-note-main {
    margin: 0 0 6px;
  }
  
  .pricing-note-price {
    font-weight: 700;
    color: var(--color-text);
  }
  
  /* 小見出し（運用オプション） */
  .pricing-note-subtitle {
    margin: 12px 0 4px;
    font-size: 12px;
    font-weight: 600;
    color: #4b5563;
  }
  
  /* 箇条書き */
  .pricing-note-list {
    margin: 0;
    padding-left: 1.2em;
    list-style: disc;
  }
  
  .pricing-note-list li {
    margin: 2px 0;
    line-height: 1.6;
  }
  
 /* =========================
   FAQ SECTION（強みセクションと同じ背景）
   ========================= */
.section-faq {
  background: #f5fbf9;
    padding: 80px 24px;
  }
  
  .faq-list {
    max-width: 800px;
    margin: 32px auto 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  
  /* FAQカード（強みカード寄せのデザイン） */
  .faq-item {
    border-radius: 14px;
    border: 1px solid #e5e7eb;
  background: #ffffff;
    padding: 16px 18px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  }
  
  /* summary デフォルト矢印削除 */
  .faq-item summary {
    list-style: none;
  }
  
  .faq-item summary::-webkit-details-marker {
    display: none;
  }
  
  /* 質問（強みカードの見出しと同じトーン） */
  .faq-question {
    font-size: 15px;
    font-weight: 700;
    color: #222;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
  }
  
  /* プラス/マイナスアイコン（強み色） */
  .faq-question::after {
    content: "＋";
    font-size: 18px;
    font-weight: 700;
    color: var(--color-main-dark);
    margin-left: 12px;
  }
  
  .faq-item[open] .faq-question::after {
    content: "－";
  }
  
  /* 回答（強みのテキスト色に寄せる） */
  .faq-answer {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dashed #e5e7eb;
  }
  
  .faq-answer p {
    font-size: 14px;
    color: var(--color-muted);
    line-height: 1.7;
    margin: 0;
  }

  /* =========================
   FINAL CTA SECTION
   ========================= */
.section-final-cta {
    background: linear-gradient(135deg, var(--color-main), var(--color-main-dark));
    padding: 72px 16px 80px;
  }
  
  .final-cta-inner {
    max-width: 960px;
    margin: 0 auto;
  }
  
  .final-cta-box {
    background: #ffffff;
    border-radius: 16px;
    padding: 28px 24px 26px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  
  /* ラベル・見出し・リード */
  .final-cta-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-main-dark);
    background: #e0f5ef;
    display: inline-block;
    padding: 3px 10px;
    border-radius: 999px;
    margin-bottom: 10px;
  }
  
  .final-cta-title {
    font-size: 22px;
    margin: 0 0 10px;
  }
  
  .final-cta-lead {
    font-size: 14px;
    color: var(--color-muted);
    margin: 0 0 12px;
  }
  
  /* 箇条書き */
  .final-cta-points {
    list-style: none;
    padding: 0;
    margin: 0 0 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 13px;
    color: var(--color-muted);
  }
  
  .final-cta-points li::before {
    content: "・";
    margin-right: 4px;
    color: var(--color-main-dark);
  }
  
  /* ボタン行 */
  .final-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 6px;
  }
  
  .final-cta-buttons .btn {
    min-width: 180px;
  }
  
  /* 注意書き */
  .final-cta-note {
    font-size: 11px;
    color: var(--color-muted);
    line-height: 1.6;
  }
  
  /* PCレイアウト：テキスト幅を締める */
  @media (min-width: 769px) {
    .final-cta-box {
      padding: 32px 40px 30px;
    }
  
    .final-cta-text {
      max-width: 640px;
    }
  
    .final-cta-title {
      font-size: 24px;
    }
  
    .final-cta-buttons {
      gap: 12px;
    }
  }
  
  /* スマホ調整 */
  @media (max-width: 768px) {
    .section-final-cta {
      padding: 56px 16px 64px;
    }
  
    .final-cta-box {
      padding: 22px 18px 20px;
    }
  
    .final-cta-title {
      font-size: 20px;
    }
  
    .final-cta-buttons {
      flex-direction: column;
    }
  
    .final-cta-buttons .btn {
      width: 100%;
      justify-content: center;
    }
  }

  /* =========================
   FOOTER
========================= */
.site-footer {
    background: #f8faf9;
    border-top: 1px solid #e5e7eb;
    padding: 40px 16px 32px;
    margin-top: 40px;
  }
  
  .footer-inner {
    max-width: 1120px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  /* ブランドロゴとタグライン */
  .footer-brand img {
    height: 50px;
    width: auto;
    margin-bottom: 6px;
  }
  
  .footer-tagline {
    font-size: 13px;
    color: var(--color-muted);
    margin: 0;
  }
  
  /* リンク集 */
  .footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 24px;
  }
  
  .footer-links a {
    font-size: 13px;
    color: #4b5563;
    transition: color 0.15s ease;
  }
  
  .footer-links a:hover {
    color: var(--color-main-dark);
  }
  
  /* コピーライト */
  .footer-copy {
    font-size: 12px;
    color: #9ca3af;
    margin-top: 6px;
  }
  
  /* スマホ調整 */
  @media (max-width: 768px) {
    .footer-links {
      gap: 10px 16px;
    }
  
    .footer-brand img {
      height: 42px;
    }
  }
  

/* =========================
   セクションタイトル用マーカー
   ========================= */
.section-title-marker {
  display: inline;
  background: linear-gradient(
    to bottom,
    transparent 55%,
    rgba(58, 201, 167, 0.3) 55%
  );
  padding: 0 4px;
}
  
  /* =========================
     RESPONSIVE
     ========================= */
  
  /* タブレット以下 */
  @media (max-width: 768px) {
    .hero {
      padding: 32px 16px 48px;
    }
  
    .hero-inner {
      flex-direction: column-reverse;
      gap: 24px;
    }
  
    .hero-copy {
      text-align: left;
    }
  
    .hero-ctas {
      justify-content: flex-start;
    }
  
    .section {
      padding: 56px 16px;
    }
  
    /* 課題カード：スマホではアイコン左・テキスト右 */
    .problems-list {
      grid-template-columns: 1fr;
      gap: 14px;
    }
  
    .problem-item {
      flex-direction: row;
      align-items: center;
      text-align: left;
    gap: 10px;
    padding: 5px 12px;
    min-height: auto;
    }
  
    .problem-icon {
      width: 40px;
      height: 40px;
      font-size: 28px;
      margin-top: 2px;
    display: flex;
      align-items: center;
      justify-content: center;
    }

    .problem-text {
        display: flex;
        flex-direction: column;
        justify-content: center;  /* ← テキスト上下中央揃え */
      }
  
    .problem-text p {
      font-size: 13px;
      line-height: 1.4;
    }

    .strengths-grid {
        grid-template-columns: 1fr;
        gap: 20px;   /* ちょっとだけ狭めてもOK */
      }

      .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

  .header-nav--desktop {
    display: none;
  }

  .header-menu-btn {
    display: block;
  }

  .header-nav--mobile .header-nav-cta {
    margin-left: 0;
    margin-top: 8px;
    width: 100%;
    justify-content: center;
  }

  .header-nav--mobile .header-nav-cta--primary,
  .header-nav--mobile .header-nav-cta--secondary {
    padding: 10px 18px;
    font-size: 14px;
  }

  .faq-item {
    padding: 12px 14px;
  }

  .faq-question {
    font-size: 14px;
  }

  .faq-answer p {
    font-size: 13px;
  }
  }
  
  /* スマホ極小幅対応 */
  @media (max-width: 480px) {
    .hero-ctas {
      justify-content: center;
    }
  
    .hero-ctas .btn {
      flex: 1 1 100%;
    }
  }
  
  /* 中くらいの幅（2列表示） */
  @media (max-width: 900px) and (min-width: 769px) {
    .problems-list {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }
  
/* PC専用調整 */
@media (min-width: 769px) {
  .flow-timeline {
    padding-left: 100px;
  }
  
  .pricing-hints {
    padding-left: 100px;
  }
  
  .header-nav--mobile {
    display: none !important;
  }
}
  



/* =========================
   Privacy Policy Page
   ========================= */

/* ページ全体の余白・幅 */
.privacy-container {
    max-width: 820px;
    margin: 120px auto 80px;
    padding: 0 20px;
}

/* h1 */
.privacy-container h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.3;
    text-align: left;
}

/* h2 */
.privacy-container h2 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 48px;
    margin-bottom: 16px;
    border-left: 4px solid var(--color-main);
    padding-left: 12px;
}

/* 段落 */
.privacy-container p {
    line-height: 1.8;
    margin-bottom: 16px;
    color: #333;
}

/* 箇条書き */
.privacy-container ul {
    margin: 0 0 20px 20px;
    padding: 0;
}

.privacy-container li {
    line-height: 1.8;
    margin-bottom: 6px;
}

/* 日付・注記 */
.privacy-note {
    font-size: 14px;
    color: #666;
    margin-top: 32px;
}

/* スマホ対応 */
@media (max-width: 640px) {
    .privacy-container {
        margin: 100px auto 60px;
    }

    .privacy-container h1 {
        font-size: 26px;
    }

    .privacy-container h2 {
        font-size: 20px;
    }
}


/* =========================
   Download / Contact 共通：フォームページ
========================= */
.download-hero {
  padding: 56px 16px 64px;
  background: var(--color-bg);
  text-align: center;
}

.download-title {
  font-size: clamp(24px, 2.6vw, 28px);
  font-weight: 700;
  margin-bottom: 12px;
}

.download-sub {
  font-size: 15px;
  color: #555;
}

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

/* レイアウト（PC：2カラム） */
.download-content {
  display: flex;
  gap: 40px;
  flex-wrap: nowrap;
  align-items: flex-start;
}

/* 左：プレビュー */
.download-preview {
  flex: 0 0 340px;
}

.download-preview img {
  width: 100%;
  max-width: 340px;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  display: block;
}

.download-points {
  margin-top: 16px;
  padding-left: 20px;
  color: #444;
  font-size: 14px;
  line-height: 1.6;
}

/* 右：フォームカード */
.download-form {
  flex: 1 1 auto;
  min-width: 0;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  padding: 28px 26px 24px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
}

/* 見出し */
.download-form h2 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 20px;
  color: #111827;
}

/* =========================
   Form Fields
========================= */

.form-block {
  margin: 0;
}

/* 1項目のブロック */
.form-field {
  display: block;
  margin-bottom: 18px;
}

/* ラベル行：項目名＋バッジ（横並び） */
.form-label {
  display: inline-flex;
  align-items: center;
  gap: 6px; /* 項目名とバッジの間 */
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 6px;
}

/* バッジ共通 */
.badge {
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 4px;
  white-space: nowrap;
  line-height: 1;
}

/* 必須ラベル */
.badge-required {
  color: #b91c1c;
  background: #fee2e2;
}

/* 任意ラベル */
.badge-optional {
  color: #6b7280;
  background: #f3f4f6;
}

/* 入力欄共通（input / select / textarea） */
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease,
    background-color 0.15s ease;
  background: #ffffff;
  display: block;
  margin-top: 6px;
}

/* セレクトボックス：ネイティブUI優先（矢印カスタムやめる） */
.form-field select {
  /* ここでは appearance はいじらない */
  padding-right: 12px; /* 入力欄と同じでOK */
  background-color: #ffffff;
  cursor: pointer;
}

/* フォーカス時 */
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--color-main);
  box-shadow: 0 0 0 1px rgba(58, 201, 167, 0.25);
  background-color: #f9fffd;
}

/* textarea */
.form-field textarea {
  resize: vertical;
  min-height: 80px;
}

/* 送信ボタン */
.btn-large {
  width: 100%;
  padding: 14px;
  font-size: 15px;
  margin-top: 10px;
}

/* 注意書き */
.download-note {
  font-size: 12px;
  color: #6b7280;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid #e5e7eb;
}

/* タブレット以下：縦並び */
@media (max-width: 1024px) {
  .download-content {
    flex-direction: column;
    gap: 24px;
  }

  .download-preview {
    flex: none;
    max-width: 360px;
    margin: 0 auto;
    text-align: left;
  }

  .download-form {
    padding: 22px 20px 20px;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
  }

  .download-form h2 {
    font-size: 18px;
    margin-bottom: 14px;
  }
}

/* スマホでカードを全幅化 */
@media (max-width: 768px) {
  .download-content {
    padding: 0 !important;
  }

  .download-form {
    width: 100% !important;
    max-width: none !important;
    margin: 0 auto !important;
    border-radius: 0;
    box-shadow: none;
  }
}
