/*----------------------------------------------------
    CTAブロック共通css（PC・スマホ両方に適用されるベースデザイン）
----------------------------------------------------*/
.cta-block {
  margin-bottom: 4rem;
}

.cta-lead {
  text-align: center;
  font-weight: bold;
  margin-bottom: 2.5rem;
  font-size: 2.4rem;
  color: #333;
}

.cta-flex {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-item {
  flex: 1;
  min-width: 300px;
  max-width: 450px;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.cta-target {
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: #333;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.cta-item.child .btn-web a {
  color: #000;
  background: #97c032 url(img/arrow-01-green-right.svg) no-repeat center right var(--s2) / 3rem auto;
}
.box-sponsored:after,
.box-sponsored__title:after,
.box-summary--second .box-summary__title:before,
.box-summary__logo,
.box-comment:before {
    background-image: url(https://www.kaigo-kizuki.com/wp/wp-content/uploads/f6713b27363358d480f45b0f05e7b985.jpg);
}

/* =========================================================
   20260225 CTA直前のリード文
========================================================= */
.cta-push {
  margin: 0 auto 30px;
  padding: 25px 20px;
  background-color: #fff9e6;
  border: 2px solid #f3c200;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  max-width: 1000px;
  box-sizing: border-box;
}

.cta-push__title {
  font-size: clamp(1.1em, 3vw, 1.3em);
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.5;
}

.cta-push__tag {
  color: #e60012;
  font-size: 0.85em;
  display: inline-block;
  margin-bottom: 5px;
}

.cta-push__cols {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.cta-push__col {
  flex: 1 1 300px;
  background: #fff;
  padding: 15px;
  border-radius: 5px;
  box-sizing: border-box;
}

.cta-push__col-title {
  font-weight: bold;
  color: #b38808;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  font-size: 1.05em;
}

.cta-push__badge {
  background: #b38808;
  color: #fff;
  padding: 2px 8px;
  border-radius: 3px;
  font-size: 0.8em;
  margin-right: 8px;
  white-space: nowrap;
}

.cta-push__text {
  font-size: 0.95em;
  line-height: 1.6;
  margin: 0;
}
/*----------------------------------------------------
    PCサイトcss
----------------------------------------------------*/

@media screen and (min-width: 768px) {
  /*/////////////PC用のCSSをここに作成してください。/////////////*/
  /*============= PCでは電話ボタンを非表示にする =============*/
  .cta-btn-tel {
    display: none;
  }
}


/*----------------------------------------------------
    SPサイトcss
----------------------------------------------------*/

@media screen and (max-width: 767px) {
  /*/////////////SP用のCSSをここに作成してください。/////////////*/
  /*============= スマホでは電話ボタンを表示する =============*/
  .cta-btn-tel {
    display: block;
    margin-top: 1rem;
  }
}