/* document.css: 記事詳細専用スタイルを記述 */
/*--------------------------------------
  資料請求セクション
--------------------------------------*/
.call-to-action {
  background-color: #0693e3;
  text-align: center;
  padding: 60px 16px;
  margin: 0;
}
.call-to-action .section-title {
  color: #111;
  font-size: 1.5rem;
  margin-bottom: 24px;
  position: relative;
}
.call-to-action .section-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 4px;
  background: #111;
  margin: 8px auto 0;
}
.call-to-action .btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background-color: #111;
  color: #fff !important;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
  transition: opacity .2s ease;
}
.call-to-action .btn-primary:hover {
  opacity: .8;
}

