/* ===== サービスカード ===== */
.service-card {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}
.service-card:hover {
  transform: translateY(-5px);
}

/* ===== 料金表 ===== */
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}
.price-table th,
.price-table td {
  border: 1px solid #ddd;
  padding: 12px;
  text-align: center;
}
.price-table th {
  background: #2bb2ff;
  color: #fff;
}

/* ===== CTAボタン ===== */
.cta-button {
  display: inline-block;
  background: #2bb2ff;
  color: #fff;
  font-size: 18px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}
.cta-button:hover {
  background: #1a91d6;
}
/* 固定お問い合わせバー */
.fixed-contact {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  z-index: 9999;
}
.contact-btn {
  flex: 1;
  text-align: center;
  padding: 14px 0;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
}
.contact-btn.tel { background: #28a745; }   /* 緑＝電話 */
.contact-btn.line { background: #06c755; } /* LINEカラー */
.contact-btn.form { background: #007bff; } /* 青＝フォーム */
