/* ===== fanfare: call notice module ===== */
.ff-call-notice {
  --ff-accent: #D37070;   /* ← アクセントカラーを赤系に変更 */
  --ff-bg: #f7faf9;
  --ff-text: #333;
  --ff-muted: #6b7280;
  --ff-border: #e5e7eb;
  --ff-radius: 14px;
  --ff-shadow: 0 6px 20px rgba(0,0,0,.06);

  color: var(--ff-text);
  line-height: 1.9;
  font-size: 21px;   /* 16px × 1.3 = 約21px に拡大 */
  background: #fff;
}

.ff-call-title {
  font-size: clamp(26px, 3.4vw, 36px); /* 元より1.3倍に拡大 */
  font-weight: 700;
  margin: 0 0 16px;
}

.ff-call-lead {
  background: #fff;   /* 白背景 */
  color: #000;        /* 黒文字 */
  border: none;       /* 枠線を消す */
  border-radius: 0;   /* 角丸も消す */
  padding: 0;         /* 内側余白リセット */
  margin: 0 0 24px;   /* 下にだけ余白 */
  font-size: 21px;    /* ページ基準と揃える */
  line-height: 1.9;
}


.ff-call-card {
  border: 1px solid var(--ff-border);
  border-radius: var(--ff-radius);
  padding: 20px;
  margin: 20px 0;
  box-shadow: var(--ff-shadow);
  background: #fff;
  font-size: 21px;
}

.ff-call-h2 {
  font-size: clamp(23px, 2.8vw, 28px);
  margin: 0 0 14px;
  padding-left: 12px;
  border-left: 5px solid var(--ff-accent);
  font-weight: 700;
}

.ff-call-list {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
}

.ff-call-list li {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px dashed var(--ff-border);
  font-size: 21px;
}
.ff-call-list li:last-child { border-bottom: none; }

.ff-call-label {
  font-weight: 600;
  color: var(--ff-muted);
  min-width: 7em;
}

.ff-tel {
  font-size: 26px; /* 電話番号はより強調 */
  letter-spacing: .03em;
}

.ff-call-note {
  font-size: 18px;
  color: var(--ff-muted);
  margin-top: 8px;
}

.ff-call-support {
  background: linear-gradient(0deg, #fff, #fff) padding-box,
              linear-gradient(45deg, var(--ff-accent), #f2a2a2) border-box;
  border: 2px solid transparent;
}

.ff-call-link {
  color: var(--ff-accent);
  text-decoration: underline;
  font-weight: 600;
}

.ff-btn {
  display: inline-block;
  margin-top: 12px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--ff-accent);
  color: #fff !important;
  text-decoration: none;
  font-weight: 700;
  transition: transform .06s ease, box-shadow .2s ease;
  box-shadow: 0 6px 14px rgba(0,0,0,.12);
  font-size: 21px;
}
.ff-btn:hover { transform: translateY(-1px); }
.ff-btn:active { transform: translateY(0); }

.ff-call-faq {
  margin: 20px 0;
  border: 1px solid var(--ff-border);
  border-radius: var(--ff-radius);
  padding: 14px 16px;
  background: #fff;
  font-size: 21px;
}
.ff-call-faq summary {
  cursor: pointer;
  font-weight: 700;
}
.ff-faq-items h3 {
  margin: 18px 0 8px;
  font-size: 21px;
}
.ff-call-small { color: var(--ff-muted); font-size: 17px; }

.ff-call-updated {
  margin-top: 14px;
  font-size: 17px;
  color: var(--ff-muted);
}


@media (max-width: 480px) {
  .ff-call-notice {
    font-size: 16px; /* ページ全体の基準を縮小（21px → 16px） */
    line-height: 1.7;
  }

  .ff-call-title {
    font-size: clamp(18px, 5vw, 22px); /* タイトルも縮小 */
  }

  .ff-call-lead {
    font-size: 16px;
    margin-bottom: 16px;
  }

  .ff-call-card {
    padding: 14px;
    margin: 14px 0;
    font-size: 16px;
  }

  .ff-call-h2 {
    font-size: 18px;
    padding-left: 8px;
    border-left-width: 3px;
    margin-bottom: 10px;
  }

  .ff-call-list li {
    font-size: 16px;
    padding: 8px 0;
    gap: 8px;
    flex-direction: column; /* 横幅が狭いときは縦並びに */
  }

  .ff-tel {
    font-size: 18px; /* 電話番号はやや大きめに残す */
  }

  .ff-call-note {
    font-size: 14px;
  }

  .ff-call-link {
    font-size: 16px;
  }

  .ff-btn {
    font-size: 16px;
    padding: 10px 14px;
  }

  .ff-call-faq {
    font-size: 16px;
    padding: 12px;
  }

  .ff-faq-items h3 {
    font-size: 16px;
  }

  .ff-call-small,
  .ff-call-updated {
    font-size: 13px;
  }
}
