/* CTA全体の中央寄せ・余白 */
.page-cta .front-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
  padding: 60px 0; /* フッターとの余白 */
}

/* 各カード */
.page-cta .front-cta__col {
  flex: 1 1 30%;
  background-color: #001c48;
  color: #ffffff;
  border-radius: 12px;
  padding: 40px 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid #33425b;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 420px;
}

/* タイトル */
.page-cta .front-cta__header-title {
  font-size: 17px;
  font-weight: bold;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
}

/* 各アイコン色 */
.page-cta .front-cta__header-title i.fa-phone {
  color: #00bcd4;
}
.page-cta .front-cta__header-title i.fa-line {
  color: #00c300;
}
.page-cta .front-cta__header-title i.fa-envelope {
  color: #ffc107;
}

/* 説明文 */
.page-cta .front-cta__description {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 16px;
}

/* 電話番号 */
.page-cta .front-cta__tell a {
  font-size: 22px;
  font-weight: bold;
  color: #ffffff;
  text-decoration: none;
}

/* 補足テキスト */
.page-cta .front-cta__business-hours,
.page-cta .front-cta__mail-btn-microcopy {
  font-size: 13px;
  color: #cccccc;
  margin-top: 8px;
}

/* ボタン */
.page-cta .btn.front-cta__mail-btn {
  background-color: #a48e6b;
  color: #ffffff !important;
  padding: 12px 28px;
  display: inline-block;
  border-radius: 999px;
  text-align: center;
  transition: all 0.3s ease;
  font-size: 15px;
  line-height: 1.6;
  margin-top: 24px;
  margin-bottom: 0;
  text-decoration: none !important;
}

/* QRコード */
.page-cta .front-cta__qr {
  margin-top: 16px;
  text-align: center;
}
.page-cta .front-cta__qr img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

/* レスポンシブ */
@media (max-width: 768px) {
  .page-cta .front-cta {
    flex-direction: column;
  }

  .page-cta .front-cta__col {
    flex: 1 1 100%;
    min-height: auto;
  }

  .page-cta .btn.front-cta__mail-btn {
    width: 100%;
  }

  .page-cta .front-cta__qr img {
    width: 80px;
    height: 80px;
  }
}
/* アニメーション初期状態 */
.page-cta .front-cta__col {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

/* スクロールで表示されたときに適用されるクラス */
.page-cta .front-cta__col.is-visible {
  opacity: 1;
  transform: translateY(0);
}