/* ================================================
   相談CTAパネル（見出し＋本文＋ボタン）
   見た目は施工実績シングル下部CTA（.works-single-cta）と共通
   ================================================ */
.mgsblk-cta-panel {
  margin: 0 auto 40px;
  box-sizing: border-box;
}
.mgsblk-cta-panel__inner {
  background: #f5f5f5;
  border-radius: 12px;
  padding: 50px 40px;
  text-align: center;
}
.mgsblk-cta-panel__heading {
  font-size: 24px;
  font-weight: 700;
  font-family: "OptimaLTProRoman", "YuMincho", "Yu Mincho", serif;
  color: #333;
  line-height: 1.6;
  margin: 0 0 16px;
}
.mgsblk-cta-panel__text {
  /* フォントはエディタ側に css/common.css が読まれないため、本文・ボタンだけ明示指定して
     フロントとプレビューの見た目を揃える（common.css の body と同じゴシックスタック） */
  font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro', 'YuGothic', 'Yu Gothic', '游ゴシック', 'Meiryo', 'メイリオ', Helvetica, sans-serif;
  font-size: 14px;
  color: #555;
  line-height: 1.8;
  margin: 0 0 28px;
}
.mgsblk-cta-panel__buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.mgsblk-cta-panel__btn {
  display: inline-block;
  font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro', 'YuGothic', 'Yu Gothic', '游ゴシック', 'Meiryo', 'メイリオ', Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 6px;
  text-decoration: none;
  transition: opacity 0.2s;
  min-width: 220px;
  text-align: center;
  box-sizing: border-box;
}
.mgsblk-cta-panel__btn--primary {
  background: var(--main-color);
  color: #fff;
}
.mgsblk-cta-panel__btn--secondary {
  background: #fff;
  color: var(--main-color);
  border: 1px solid var(--main-color);
}
.mgsblk-cta-panel__btn:hover {
  opacity: 0.8;
}

@media only screen and (max-width: 739px) {
  .mgsblk-cta-panel__inner {
    padding: 36px 20px;
  }
  .mgsblk-cta-panel__heading {
    font-size: 20px;
  }
  .mgsblk-cta-panel__buttons {
    flex-direction: column;
    gap: 12px;
  }
  .mgsblk-cta-panel__btn {
    min-width: 0;
    width: 100%;
  }
}

/* 管理画面のみ：ブロック範囲がわかるよう破線枠 */
.editor-styles-wrapper .mgsblk-cta-panel {
  border: 1px dashed #ccc;
  min-height: 60px;
}

/* 管理画面のみ：エディタ既定のリンク装飾（下線・リンク色）を打ち消してフロントと揃える。
   エディタ側の `.editor-styles-wrapper a` に負けないよう同じ強さのセレクタで指定する */
.editor-styles-wrapper .mgsblk-cta-panel__btn,
.editor-styles-wrapper .mgsblk-cta-panel__btn:hover,
.editor-styles-wrapper .mgsblk-cta-panel__btn:focus {
  text-decoration: none;
  box-shadow: none;
}
.editor-styles-wrapper .mgsblk-cta-panel__btn--primary {
  color: #fff;
}
.editor-styles-wrapper .mgsblk-cta-panel__btn--secondary {
  color: var(--main-color);
}
