  
  .layout_text {
  margin-bottom: 0px;
  }

  .cta_buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  }
  .cta_buttons a {
  display: block;
  padding: 14px;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }
  .btn_cta_quote { background: #ff6b00; color: #fff; }
  .btn_cta_mail { background: #1e88e5; color: #fff; }
  .btn_cta_tel { background: #fff; color: #333; border: 2px solid #333; }
  .btn_main { display: block; font-size: 18px; font-weight: bold; }
  .btn_sub { display: block; font-size: 12px; margin-top: 4px; opacity: 0.9; }
  @media (min-width: 768px) {
  .cta_buttons { flex-direction: row; }
  .cta_buttons a { flex: 1; }
  }

  body { padding-bottom: 65px; }
  
/* ▼ タブ削除後：価格カード＋縦並びレイアウト */
.price_section {
  margin: 0 auto 30px;
  padding: 12px;
  border: 2px solid #1e88e5;
  border-radius: 10px;
  background: #fff;
}

  @media screen and (min-width: 768px) {
  .price_section img {
    width: 100%;
    height: auto;
  }
}

.price_card_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 18px auto 24px;
}

.price_card {
  display: block;
  padding: 14px 10px;
  text-align: center;
  text-decoration: none;
  color: #14345f;
  background: #f4fbff;
  border: 2px solid #8fd3ff;
  border-radius: 10px;
}

.price_card strong {
  display: block;
  margin: 6px 0;
  font-size: 22px;
  color: #e6005c;
}

.price_card span {
  display: block;
  font-size: 13px;
  line-height: 1.7;
  /* line-height: 1.5; */
}

.price_card .price_label {
  font-weight: bold;
  color: #333;
}

.price_card.recommend {
  background: #fff0f6;
  border-color: #e6005c;
}

.price_card.recommend::before {
  content: "おすすめ";
  display: inline-block;
  margin-bottom: 6px;
  padding: 3px 8px;
  background: #e6005c;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  border-radius: 999px;
}

.price_note {
  width: 95%;
  margin: 0 auto 22px;
  padding: 12px;
  background: #fff7e8;
  border-left: 5px solid #ff9f1c;
  line-height: 1.7;
  font-weight: bold;
}

.price_case {
  margin: 0 auto 28px;
  padding: 14px 0 24px;
  border: 2px dotted blue;
  /* border-bottom: 2px dotted #ccc; */
}

/* .price_case:last-of-type {
  border-bottom: none;
} */

.fv_cta_section {
  margin: 20px auto 25px;
  padding: 18px;
  background: #fff7e8;
  border: 2px solid #ff9f1c;
  border-radius: 12px;
}

.cta_lead {
  margin-bottom: 12px;
  text-align: center;
  font-weight: bold;
  color: #14345f;
  font-size: 18px;
}

.cta_buttons {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}

.cta_buttons a {
  display: block;
  padding: 14px 10px;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  line-height: 1.5;
}

.btn_main {
  display: block;
  font-size: 16px;
}

.btn_sub {
  display: block;
  font-size: 12px;
  font-weight: normal;
}

.btn_cta_mail {
  background: #ff6b00;
  color: #fff;
  box-shadow: 0 4px 0 #c24f00;
}

.btn_cta_quote {
  background: #14345f;
  color: #fff;
  box-shadow: 0 4px 0 #0b1f39;
}

.btn_cta_tel {
  background: #fff;
  color: #14345f;
  border: 2px solid #14345f;
}

@media screen and (max-width: 768px) {
  .price_card_grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .price_card {
    padding: 12px 6px;
  }

  .price_card strong {
    font-size: 20px;
  }

  .price_card span {
    font-size: 12px;
  }

  .cta_buttons {
    grid-template-columns: 1fr;
  }

  .cta_buttons a {
    margin-bottom: 8px;
  }
}

@media screen and (max-width: 480px) {
  .price_card_grid {
    grid-template-columns: 1fr;
  }
}
/* ▲ タブ削除後：価格カード＋縦並びレイアウト */