/*
 * 移植時に追加した独自スタイル（元LP由来ではない）。
 * 1) CONTACTセクションのCTAボタン（旧: 本文中のテキストリンクのみで導線が弱かった）
 *    配色は既存のヘッダー「資料請求はこちら」ボタン・circle-buttonの赤 (#B2281E) を踏襲。
 */
.kinnotane-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.kinnotane-cta a {
  display: block;
  width: min(400px, 100%);
  padding: 20px 0;
  border-radius: 40px;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  transition: opacity 0.3s;
  box-sizing: border-box;
}
.kinnotane-cta a:hover {
  opacity: 0.8;
}
.kinnotane-cta__primary {
  background: #b2281e;
  color: #fff;
  border: 2px solid #b2281e;
}
.kinnotane-cta__secondary {
  background: #fff;
  color: #b2281e;
  border: 2px solid #b2281e;
}
@media (max-width: 768px) {
  .kinnotane-cta {
    flex-direction: column;
    gap: 14px;
    margin-top: 28px;
  }
  .kinnotane-cta a {
    font-size: 17px;
    padding: 16px 0;
  }
}
